I need to do some image processing (using GD) on a server which doesn't support the functions I need. However, I have access to another server which does. I'll call the server with the GD functions the 'powerful' server and the server without the 'weak' one.
My idea is to send new images from the weak server to the powerful one, process them on the powerful, send a msg back to the weak saying the revised images are ready and then grabbing the revised images with the weak server and saving them. The problem is the weak server also does not support any ftp functions so all this needs to be done via http.
It should all be pretty easy, except getting the original image from the weak server to the powerful. What I'm hoping some folks can help me with is a function to send a multi-part form request from the weak server. There is a similar function available at http://zend.net/codex.php?id=77&single=1 , but it is not for multi-part data ... I'm sure I can adapt that, but if anybody has already wrestled with this, I'd appreciate your input.
Thanks, sorry for the long message.
This is the same situation as one posted to the old message board, but I didn't see any resolution come up there. That thread is at http://www.phpbuilder.com/mail/php-general/2002071/2797.php (I'm referencing it in case I didn't explain myself well here.)