Copy file from one server to another
I have two intranet sites on two different servers. There is an image on the site1 which I would like to copy to site2. How do I do that ?
Here is my code.
<cfset image1Ext = Right(firstStoryImg, 3)>
where firstStoryImg evaluates to http://mycompany.com/site1/images/firstImage.gif
The following code is throwing "The cause of this exception was: java.io.FileNotFoundException:" error.
<cffile action="copy" source="#firstStoryImg#" destination="/folder/Images/image1.#image1Ext#" nameconflict="overwrite">
