Trouble sending large files via XML-RPC
-
Pretty much a copy/paste of this question over stackoverflow.
—I have a script that sends rather large MP3 files to an another server WordPress’s install via XML-RPC (usinghttps://scripts.incutio.com/xmlrpc/) from php-cli. I rapidly hit the “allowed memory size” error PHP side, which is unfortunate.
At this point, here is what I know I could do:
– Set memory limit to a higher number via init_set() : problem is, I can’t really know for sure the maximum size of the MP3 files that are being recorded and sent to WP;
– Set memory limit to -1 so it’s unlimited: I read pretty much everywhere over stackoverflow that I’d make a George Oscar Bluth Jr of myself, so I guess I’ll leave that option out;
So I’m left with that I see as my last resort:
It seems it’s possible to read a file line by line (honestly don’t know much about that) so it helps memory wise. How could I acheive this? Would it be compatible with IXR_Base64 to send via XML-RPC? If not, is there any other solution I could turn myself to?
- The topic ‘Trouble sending large files via XML-RPC’ is closed to new replies.