Recent content by kazriko

  1. kazriko

    Misc Linux QCMA connection stopped working.

    Yeah, if you put it in verbose debug mode, and try to transfer files you might see some information that could help troubleshoot it. I actually ran into some similar issues later on, but just went around it a different way, so I haven't been back to troubleshoot further. (Downloading from qcma...
  2. kazriko

    Misc Linux QCMA connection stopped working.

    Nope, that's a different, though known issue.
  3. kazriko

    Misc Linux QCMA connection stopped working.

    Yeah, if you turn on the verbose debugging, you actually see the file being transferred from the Vita before being parsed. There's two of them that are retrieved, and both of them exhibit the same error. That's why you have to turn on error tolerance on two calls of the xml parser. It was also...
  4. kazriko

    Misc Linux QCMA connection stopped working.

    I have it working quite well in Artix here. At some point I'll fork the project and apply my fixes to it, once I've confirmed exactly why it's actually failing instead of bandaiding around it. What I suspect happened is that there's a null value at the end of the string, and they must have...
  5. kazriko

    Misc Linux QCMA connection stopped working.

    I ran into this error, and managed to at least bypass it by making mods to libvitamtp, in the datautils.c file, there's two lines that do "xmlReadMemory", the last parameter to these is a 0. I changed this to a 1 to make it continue after encountering an error, and this allowed me to connect...