| View previous topic :: View next topic |
| Author |
Message |
digeratiw Voice
Joined: 17 May 2006 Posts: 2
|
Posted: Wed May 17, 2006 8:30 am Post subject: regarding IRCstats1.0.tcl -need help |
|
|
Here is my stats page.
http://deathfield.com/~zchaos/stats/html/index.html
I dont know how to make the script pull from allllll my logs.
My logs are doing this in logs/
logs/bodybuilding.log
logs/bodybuilding.log.yesterday |
|
| Back to top |
|
 |
Alchera Revered One

Joined: 11 Aug 2003 Posts: 3344 Location: Ballarat Victoria, Australia
|
Posted: Wed May 17, 2006 9:01 am Post subject: |
|
|
Read carefully the script author's instructions (usually in the header). You probably need to set the public text flag for your logging.
| Quote: | # This creates a logfile named lamest.log containing joins, parts,
# netsplits, kicks, bans, mode changes, and public chat on the
# channel #lamest.
logfile jpk #lamest "logs/lamest.log" |
You may also need to keep your logs. _________________ Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM |
|
| Back to top |
|
 |
digeratiw Voice
Joined: 17 May 2006 Posts: 2
|
Posted: Wed May 17, 2006 9:14 am Post subject: |
|
|
set timezone "CST"
set offset "-5"
set max-logs 10
set max-logsize 0
set quick-logs 0
logfile mco * "logs/deadlifts.log"
logfile jpk #bodybuilding "logs/bodybuilding.log"
set log-time 1
set keep-all-logs 0
set logfile-suffix ".%d%b%Y"
set switch-logfiles-at 300
set quiet-save 0
Thats my settings? |
|
| Back to top |
|
 |
Alchera Revered One

Joined: 11 Aug 2003 Posts: 3344 Location: Ballarat Victoria, Australia
|
Posted: Wed May 17, 2006 5:50 pm Post subject: |
|
|
I did say to read the instructions that the script author has included.
| Quote: | ##### LOG FILES #####
set max-logs 365
set max-logsize 0
set quick-logs 0
set raw-log 0
logfile mco * "logs/bot.log"
logfile jpk #Ballarat "stats/lamest.log"
# Use this feature to timestamp entries in the log file.
set log-time 1
# If you want to keep your logfiles forever, turn this setting on. All
set keep-all-logs 1
set logfile-suffix ".%d%b%Y"
# You can specify when Eggdrop should switch logfiles and start fresh. You
# must use military time for this setting. 300 is the default, and describes
# 03:00 (AM).
set switch-logfiles-at 300
# "Writing user file..." and "Writing channel file..." messages won't be
# logged anymore if this option is enabled.
set quiet-save 1 |
The above are settings I use for another stats generator but they could also apply to the one you're using. Notice the seperate log folders I use. _________________ Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM |
|
| Back to top |
|
 |
|