--- Wade Smart <[EMAIL PROTECTED]> wrote: > Im having some trouble with one of my php scripts so Im looking > in my logs and I would like to know how to really read what this > means: > > [Mon Feb 13 18:08:27 2006] > [error] > [client 127.0.0.1] File does not exist: /var/www/var, referer: > http://localhost/KT/Admin.php > > [Mon Feb 13 18:08:27 2006] > [error] > [client 127.0.0.1] File does not exist: /var/www/KT/0, referer: > http://localhost/KT/Admin.php > > OK. On the first one, File does not exist: .. I dont know what > www/var is but there is nothing like that in my scripts, > relating to /var. And on the second entry, what does the /0 > mean? > > Wade
A default location for Apache to store web pages on a Unix-type machine is /var/www/html. It is likely that someone is trying to access files either within a PHP script or externally. The reference to localhost (127.0.0.1) suggests that it is occurring locally. The access_log might give more information on these requests. James _____ James D. Keeline http://www.Keeline.com http://www.Keeline.com/articles http://Stratemeyer.org http://www.Keeline.com/TSCollection http://www.ITeachPHP.com -- Free Computer Classes: Linux, PHP, etc. Fall Semester Begins Sep 7 -- New Classes Start Every Few Weeks. Spring Semester Begins in late January. Two new class topics. Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
