log file???
Moderator: General Moderators
-
amira_fcis
- Forum Newbie
- Posts: 16
- Joined: Sun Aug 16, 2009 7:59 am
log file???
does simpletest framework has something like log files which record every little thing happend on it...?
- JAB Creations
- DevNet Resident
- Posts: 2341
- Joined: Thu Jan 13, 2005 6:44 pm
- Location: Sarasota Florida
- Contact:
Re: log file???
Apache generates a server access log that shows you literally every single file transferred via HTTP from your site.
Keep in mind many hosts have gimped the feature to generating one log per day instead of per month thus making it very difficult to work with.
Locally (on WAMP) my log is located...
apache/logs/access.log
While access logs won't tell you everything if you know how to read them they can still become an invaluable part of how you operate a website.
Keep in mind many hosts have gimped the feature to generating one log per day instead of per month thus making it very difficult to work with.
Locally (on WAMP) my log is located...
apache/logs/access.log
While access logs won't tell you everything if you know how to read them they can still become an invaluable part of how you operate a website.
-
amira_fcis
- Forum Newbie
- Posts: 16
- Joined: Sun Aug 16, 2009 7:59 am
Re: log file???
Thanks JAB for helping 