At 11:28 AM 1/18/2008, Paul Dewey InterlockInfo wrote:
I have tried several different ways to "Show Progress" but leave it locked in the "Hide Log" mode. Another words I want the window to show that something is happening but I also do not want to give away the information that displays (Hide Log). I tried PLUGIN RFTPClient76.rbl 'vR711|SHOW PROGRESS' PLUGIN RFTPClient76.rbl 'vR712|HIDE LOG' PLUGIN RFTPClient76.rbl etc............... Or just using: PLUGIN RFTPClient76.rbl 'vR711|SHOW LOG' PLUGIN RFTPClient76.rbl etc............... Also is there any size of file restriction? I zip a file to a size of 45,485,424 and I always get "Cannot upload file 001676D0AZZ_181107.Zip to FTP server".
Hello Paul, I didn't see any reply to your question, so here you go ... First, what is the build of your R:FTPClient 7.6 Plugin? Technically, adding the "HIDE LOG" option should hide the entire log information while processing the request. Using the latest version of R:FTPClient 7.6 (Build 7.6.3.30214), try the following example and see what you get. Example 01: -- Start here CLS CLEAR ALL VAR PLUGIN RFTPClient76.rbl 'v1|SHOW PROGRESS' PLUGIN RFTPClient76.rbl 'v1|HIDE LOG' PLUGIN RFTPClient76.rbl 'v1|FTP_USERNAME yourusername' PLUGIN RFTPClient76.rbl 'v1|FTP_PASSWORD yourpassword' PLUGIN RFTPClient76.rbl 'v1|FTP_HOST ftp.yourftpserver.com' PLUGIN RFTPClient76.rbl 'v1|FTP_PORT 21' PLUGIN RFTPClient76.rbl 'v1|FTP_CONNECT' PLUGIN RFTPClient76.rbl 'v1|WAIT 1000' PLUGIN RFTPClient76.rbl 'v1|FTP_CHDIR yourspecificfolder' PLUGIN RFTPClient76.rbl 'v1|WAIT 1000' PLUGIN RFTPClient76.rbl 'v1|FTP_UPLOAD filename.ext' PLUGIN RFTPClient76.rbl 'v1|WAIT 1000' PLUGIN RFTPClient76.rbl 'v1|FTP_DISCONNECT' PLUGIN RFTPClient76.rbl 'v1|HIDE PROGRESS' RETURN -- End here In reference to the size of any upload file, you need to check the restriction(s) on your FTP Server settings. R:FTPClient has no restrictions on the file size for transfers. Hope that helps! Very Best R:egards, Razzak.

