Code: Select all
# The full path to the file which the bot will use to generate
# an HTML info page. The account the bot runs on must have read
# & write access to this file. If the file does not exist, it will
# be created when needed.
set tghtmlfile
"/home/some-user/eggdrop/scripts/trivia_html/index.htm"
But the web in which I want that output to appear is not within the same server as my IRCd. The irc server is different from the web server.
My question is: what should I do in order to generate de index.html file and place it inside the folder that I have previously prepared for it ..which is on my web server
Code: Select all
"www.mysite.com/trivia"
Should I use something like this?:
Code: Select all
"scp://user:pass@ftp.mysite.com/trivia/index.html"
For example:
Code: Select all
set tghtmlfile
"scp://user:pass@ftp.mysite.com/trivia/index.html"
Code: Select all
set tghtmlfile
"ftp://user:pass@ftp.mysite.com/trivia/index.html"
The same happens with the pisg.
Code: Select all
OutputFile="/home/some-user/pisg/html/index.html"
Thanks you guys. Your answers will be helpful for many others.