On 8 Feb 2006, at 04:38, Sivakatirswami wrote:

This FTP script below frequently fails

I get three files on the server with the correct name, but no data is written to them....


Typically, that's a symptom of a problem with the data source part of the "put".


 repeat for each item x in tImages
   put url (tLocalLocation & x) into url (tRemoteLocation & x)
 end repeat
end uploadImages

You should check the "url (tLocalLocation & x)" part is valid before trying to upload the data.

  Ex,

  put url (tLocalLocation & x) into tUploadData
  if the result is not empty then
  ##  do error stuff here
  else
   put tUploadData into url (tRemoteLocation & x)
   -- check the result here
  end if

Cheers
Dave
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to