Re: CakePHP Image Upload and Remote Delete

2012-06-28 Thread Miles J
So the images on B are on its own local file system? The only real solution is to make some kind of API call from A using curl that posts to B telling it to delete a certain file. Or I would suggest moving everything to Amazon S3. On Monday, June 25, 2012 7:39:16 AM UTC-7, GerarD wrote: Hi

Re: CakePHP Image Upload and Remote Delete

2012-06-26 Thread Dr. Tarique Sani
Create an authenticated API on B which you can call from A HTH Tarique On Mon, Jun 25, 2012 at 8:09 PM, GerarD gerard.lea...@gmail.com wrote: Hi there... Right now, I have two system using CakePHP on two different servers. System A, is on a local server, while System B is hosted remotly. I

CakePHP Image Upload and Remote Delete

2012-06-25 Thread GerarD
Hi there... Right now, I have two system using CakePHP on two different servers. System A, is on a local server, while System B is hosted remotly. I need to upload an image in System B and be able to see it on System A. I managed to do this using http://milesj.me/code/cakephp/uploader uploader