Svenska Not logged in: Log in | Register

2012-10-31:

Note: Text covers an earlier version.

Live Results on the Internet

Updated: 2012-10-31

The service that exports lists in html format can run a custom script after each export. This can be use to publish live results on the Internet. Here is an example of how this can be accomplished using FTP:

send.bat
REM Send files to FTP server

date /T >> log.txt
time /T >> log.txt
ftp.exe -v -i -s:command.txt >> log.txt

command.txt
open ftp.myserver.net
myusername
mypassword
LITERAL PASV
cd upload/results
mput c:\temp\meosexport\*.htm*
close
bye

Hint
  • Remember to link to the uploaded files from your website in advance.
  • If you intend to export server files, it is enough to start the script from one of the services, provided all services write their files to the same folder.
  • You can of course publish the start list live as well, if there are many late changes...

To post a comment, you need to log in.