Re: on-rev writing to

2011-05-02 Thread Sarah Reichelt
Write the irev file first with placeholder variables instead of data that would be sent. e.g. ?irev put tom into tFolderName put prefs.txt into tFileName put someSetting=true into tData -- now create the folder if required -- save the data to the appropriate file put OK--

Re: on-rev writing to

2011-05-01 Thread Sarah Reichelt
Tom, you cannot write directly to a server. You can upload a file using your FTP login details. But the best solution for your case is to have an irev file on the server that you can call using http:// And send some data to via POST or GET. Then have the irev file do the actual writing. Not

Re: on-rev writing to

2011-05-01 Thread Thomas McGrath III
Thanks, Sarah, To complicate this I will be writing these files from within an LC app from different clients computers so that each clients app will create (if not present) a folder for them and then write a prefs text file, a text file and some images. I guess I can look into an iRev file. I