LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Apache stoped working after installing PHP (https://www.linuxquestions.org/questions/linux-newbie-8/apache-stoped-working-after-installing-php-4175434537/)

skinney 10-28-2012 06:28 PM

Apache stoped working after installing PHP
 
i installed apache2 "sudo apt-get install apache2"
I saw the "it works" page after i changed the ports.conf listen to 127.0.0.1:80
then
I installed php per this page...
except for the "sudo apt-get install apache2" cuz apache is already installed
http://www.howtogeek.com/howto/ubunt...che-on-ubuntu/
now i can't see the "it works" page

i uninstalled everything i saw when running "dpkg --list|grep -e httpd -e apache -e mysql -e php" i removed them using "apt-get autoremove"

i installed LAMP from the tasksel menu but it still doesn't work
i did notice that my ports.conf file is the same cuz it still has the change i made to "listen"

bobcowher 10-28-2012 09:16 PM

Package List
 
Skinney,

Could you please post the results of the dpkg --get-selections command? This should give us a list of packages installed on the server and will allow us to better answer your question.

Sincerely,

Bob

skinney 10-28-2012 09:28 PM

like this?
ii apache2 2.2.22-1ubuntu1 Apache HTTP Server metapackage
ii apache2-mpm-prefork 2.2.22-1ubuntu1 Apache HTTP Server - traditional non-threaded model
ii apache2-utils 2.2.22-1ubuntu1 utility programs for webservers
ii apache2.2-bin 2.2.22-1ubuntu1 Apache HTTP Server common binary files
ii apache2.2-common 2.2.22-1ubuntu1 Apache HTTP Server common files
ii libapache2-mod-php5 5.3.10-1ubuntu3.4 server-side, HTML-embedded scripting language (Apache 2 module)
ii libdbd-mysql-perl 4.020-1build2 Perl5 database interface to the MySQL database
ii libmysqlclient18 5.5.24-0ubuntu0.12.04.1 MySQL database client library
ii mysql-client-5.5 5.5.24-0ubuntu0.12.04.1 MySQL database client binaries
ii mysql-client-core-5.5 5.5.24-0ubuntu0.12.04.1 MySQL database core client binaries
ii mysql-common 5.5.24-0ubuntu0.12.04.1 MySQL database common files, e.g. /etc/mysql/my.cnf
ii mysql-server 5.5.24-0ubuntu0.12.04.1 MySQL database server (metapackage depending on the latest version)
ii mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 MySQL database server binaries and system database setup
ii mysql-server-core-5.5 5.5.24-0ubuntu0.12.04.1 MySQL database server binaries
ii php5-cli 5.3.10-1ubuntu3.4 command-line interpreter for the php5 scripting language
ii php5-common 5.3.10-1ubuntu3.4 Common files for packages built from the php5 source
ii php5-mysql 5.3.10-1ubuntu3.4 MySQL module for php5

jsaravana87 10-29-2012 12:02 AM

Quote:

i uninstalled everything i saw when running "dpkg --list|grep -e httpd -e apache -e mysql -e php" i removed them using "apt-get autoremove"
If you had uninstalled all apache2 and php5 package.Try these command to enable Php5 in Apache2


#sudo apt-get install apache2

#sudo apt-get install php5


#sudo apt-get install libapache2-mod-php5

To Use mysql with php5

#sudo apt-get install php5-mysql


#sudo /etc/init.d/apache2 restart

To enable php5 module with apache2

#sudo a2enmod php5


check whether apache2 syntax ok message

#apache2ctl -t

Check whether php5 module get included in apache2

#sudo apache2ctl -M

Check apache2 configuration setting

#sudo apache2ctl -S

skinney 10-29-2012 10:40 AM

Quote:

Originally Posted by arun5002 (Post 4817170)
If you had uninstalled all apache2 and php5 package.Try these command to enable Php5 in Apache2

But i reinstalled them via the LAMP installation in tasksel
should i remove them and reinstall per these instructions?
for now i'll skip to the restart apache step and move forward
thx arun!

skinney 10-29-2012 10:47 AM

#sudo /etc/init.d/apache2 restart - restarted

To enable php5 module with apache2

#sudo a2enmod php5 - already enabled


check whether apache2 syntax ok message

#apache2ctl -t "/usr/sbin/apache2ctl: 87: ulimit: error setting limit (Operation not permitted)
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
Syntax OK"


Check whether php5 module get included in apache2

#sudo apache2ctl -M " php5_module (shared)" "Syntax OK"


Check apache2 configuration setting

#sudo apache2ctl -S[/QUOTE] - "apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80 is a NameVirtualHost
default server 127.0.1.1 (/etc/apache2/sites-enabled/000-default:1)
port 80 namevhost 127.0.1.1 (/etc/apache2/sites-enabled/000-default:1)
Syntax OK
"

jsaravana87 10-29-2012 11:28 PM

Quote:

Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName


To fix Apache – "Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName" Error on Ubuntu

sudo gedit /etc/apache2/httpd.conf
By default httpd.conf file will be blank. Now, simply add the following line to the file.
ServerName localhost

sudo service apache2 restart

skinney 10-30-2012 10:15 PM

that got rid of that error
but i still cant load a webpage
maybe it's something in php config maybe
it stoped working when i installed php and msql

jsaravana87 10-30-2012 10:48 PM

Look after your Apache log for analysing the error.whether apache2 throws you any error while startup.Check whether you had installed following package.

Here are some libraries you need to install to make Apache2 available to PHP:

sudo apt-get install libapache2-mod-php5

These libraries you need to install to make php5 available to mysql

sudo apt-get install php5-mysql

To enable php5 with apache2

#sudo a2enmod php5

#apache2ctl -M check whether you had enabled php5 module to apache2

skinney 10-30-2012 11:33 PM

yep, all this is in and enabled
i'm at a loss (but that's not saying much lol)

jsaravana87 10-31-2012 12:16 AM

Did you check your apache error log ? what it says you ? If not post your error log here to find out root cause

skinney 10-31-2012 10:17 AM

I did. Nothing stood out but i don't know what i'm looking at.

error_log
Sat Oct 27 16:10:24 2012] [notice] Apache/2.2.22 (Ubuntu) configured -- resuming normal operations
[Sat Oct 27 17:17:15 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:17:35 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:20:41 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:20:44 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:23:36 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:28:44 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:40:42 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 17:42:47 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sat Oct 27 19:59:23 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:29:15 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:32:46 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:32:52 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:34:58 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:35:08 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:35:18 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:35:55 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:36:00 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:36:33 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:36:43 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:57:39 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 08:57:46 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:09:36 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:10:37 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:11:27 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:13:48 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:14:14 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:14:44 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:15:37 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 09:18:14 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:19:13 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:29:54 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:29:56 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:30:27 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:30:45 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:50:00 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:50:59 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:51:16 2012] [error] [client 192.168.1.67] File does not exist: /var/www/favicon.ico
[Sun Oct 28 10:54:08 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 10:54:13 2012] [notice] Apache/2.2.22 (Ubuntu) configured -- resuming normal operations
[Sun Oct 28 10:54:18 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 10:54:19 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 10:55:27 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 10:55:28 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 11:07:13 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 11:07:14 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 11:20:18 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 11:20:19 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 11:26:44 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 11:26:45 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 15:05:07 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 15:14:32 2012] [notice] Apache/2.2.22 (Ubuntu) configured -- resuming normal operations
[Sun Oct 28 15:14:33 2012] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Sun Oct 28 15:14:33 2012] [notice] Apache/2.2.22 (Ubuntu) configured -- resuming normal operations
[Sun Oct 28 17:50:53 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 17:50:54 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 17:58:13 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 17:58:14 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Sun Oct 28 18:07:20 2012] [notice] caught SIGTERM, shutting down
[Sun Oct 28 18:07:21 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Mon Oct 29 08:41:43 2012] [notice] caught SIGTERM, shutting down
[Mon Oct 29 08:41:44 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 00:16:39 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 00:16:40 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 00:34:43 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 00:34:44 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 00:46:12 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 00:46:13 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 00:50:23 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 00:50:24 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 01:06:43 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 01:06:44 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 01:07:15 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 01:07:16 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 20:27:38 2012] [notice] Graceful restart requested, doing restart
[Tue Oct 30 20:27:38 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 20:27:56 2012] [notice] Graceful restart requested, doing restart
[Tue Oct 30 20:27:56 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 20:28:05 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 20:28:06 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations
[Tue Oct 30 21:38:11 2012] [notice] caught SIGTERM, shutting down
[Tue Oct 30 21:38:12 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.4 with Suhosin-Patch configured -- resuming normal operations

skinney 10-31-2012 10:18 AM

access_log
192.168.1.112 - - [27/Oct/2012:16:28:18 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:28:57 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:29:51 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:30:24 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:30:56 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:31:28 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:32:01 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:32:34 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:33:05 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:33:36 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:34:07 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:34:40 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:35:13 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:35:42 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:36:16 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:36:45 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:37:20 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:37:54 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:38:29 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:39:01 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.112 - - [27/Oct/2012:16:39:33 -0700] "GET / HTTP/1.0" 200 453 "-" "-"
192.168.1.67 - - [27/Oct/2012:17:17:15 -0700] "GET /index.html HTTP/1.1" 200 483 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:17:15 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:17:35 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:20:41 -0700] "GET /index.html HTTP/1.1" 304 209 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:20:41 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:20:44 -0700] "GET /index.html HTTP/1.1" 304 208 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:20:44 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:23:36 -0700] "GET /index.html HTTP/1.1" 200 490 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:23:36 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:28:44 -0700] "GET /index.html HTTP/1.1" 304 209 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:28:44 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:40:42 -0700] "GET /index.html HTTP/1.1" 200 1042 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:40:42 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:42:47 -0700] "GET /index.html HTTP/1.1" 200 958 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:17:42:47 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:19:59:23 -0700] "GET /index.html HTTP/1.1" 304 210 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [27/Oct/2012:19:59:23 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:29:15 -0700] "GET /index.html HTTP/1.1" 200 945 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:29:15 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:32:46 -0700] "GET /index.html HTTP/1.1" 200 528 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:32:46 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:32:52 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:34:58 -0700] "GET /index.html HTTP/1.1" 200 556 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:34:58 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:35:08 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:35:18 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:35:55 -0700] "GET /index.html HTTP/1.1" 200 547 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:35:55 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:36:00 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:36:33 -0700] "GET /index.html HTTP/1.1" 200 554 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:36:33 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:36:43 -0700] "GET /index.html HTTP/1.1" 304 210 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:36:43 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:57:39 -0700] "GET /index.html HTTP/1.1" 200 534 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:57:39 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:08:57:46 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:09:36 -0700] "GET /index.html HTTP/1.1" 200 538 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:09:36 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:10:37 -0700] "GET /index.html HTTP/1.1" 200 535 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:10:37 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:11:27 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:13:48 -0700] "GET /index.html HTTP/1.1" 200 564 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:13:48 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:14:14 -0700] "GET /index.html HTTP/1.1" 200 572 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:14:14 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:14:44 -0700] "GET /index.html HTTP/1.1" 200 569 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:14:44 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:15:37 -0700] "GET /index.html HTTP/1.1" 200 572 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:15:37 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:18:14 -0700] "GET /index.html HTTP/1.1" 200 597 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:09:18:14 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:15:47 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:16:26 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:17:21 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:17:51 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:18:22 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:18:51 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:19:13 -0700] "GET /index.html HTTP/1.1" 304 210 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:19:13 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:19:28 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:20:02 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:20:30 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:21:05 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:21:33 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:22:04 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:22:38 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:23:09 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:23:40 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:24:11 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:24:41 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:25:12 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:25:43 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:26:15 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:26:45 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:27:18 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:27:51 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:28:25 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:28:55 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:29:30 -0700] "GET / HTTP/1.0" 200 781 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:29:54 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:29:56 -0700] "GET /index.html HTTP/1.1" 200 651 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:29:56 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:30:01 -0700] "GET / HTTP/1.0" 200 922 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:30:27 -0700] "GET /favicon.ico HTTP/1.1" 404 497 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:30:31 -0700] "GET / HTTP/1.0" 200 922 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:30:44 -0700] "GET /index.html HTTP/1.1" 200 661 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:30:45 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:31:06 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:31:37 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:32:10 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:32:42 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:33:14 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:33:44 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:34:13 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:34:46 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:35:18 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:35:47 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:36:20 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:36:52 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:37:24 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:37:54 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:38:25 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:38:59 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:39:31 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:40:06 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:40:36 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:41:08 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:41:41 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:42:12 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:42:42 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:43:17 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:43:48 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:44:19 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:44:50 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:45:23 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:45:54 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:46:27 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:47:00 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:47:30 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:48:02 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:48:34 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:49:05 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:49:36 -0700] "GET / HTTP/1.0" 200 937 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:50:00 -0700] "GET /index.html HTTP/1.1" 200 692 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:50:00 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:50:11 -0700] "GET / HTTP/1.0" 200 989 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:50:42 -0700] "GET / HTTP/1.0" 200 989 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:50:59 -0700] "GET /index.html HTTP/1.1" 200 713 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:50:59 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:51:13 -0700] "GET / HTTP/1.0" 200 1027 "-" "-"
192.168.1.67 - - [28/Oct/2012:10:51:16 -0700] "GET /index.html HTTP/1.1" 200 710 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.67 - - [28/Oct/2012:10:51:16 -0700] "GET /favicon.ico HTTP/1.1" 404 496 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
192.168.1.112 - - [28/Oct/2012:10:51:45 -0700] "GET / HTTP/1.0" 200 1019 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:52:15 -0700] "GET / HTTP/1.0" 200 1019 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:52:49 -0700] "GET / HTTP/1.0" 200 1019 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:53:18 -0700] "GET / HTTP/1.0" 200 1019 "-" "-"
192.168.1.112 - - [28/Oct/2012:10:53:50 -0700] "GET / HTTP/1.0" 200 1019 "-" "-"
127.0.0.1 - - [28/Oct/2012:15:14:33 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [28/Oct/2012:15:14:33 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [28/Oct/2012:15:14:33 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [28/Oct/2012:15:14:33 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [28/Oct/2012:15:14:33 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:38 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:38 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:38 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:38 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:38 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"
127.0.0.1 - - [30/Oct/2012:20:27:56 -0700] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.2.22 (Ubuntu) (internal dummy connection)"

skinney 11-01-2012 11:13 AM

I'm going to try removing or purging the programs and mods and reinstal
i'll look up how to completely remove programs
i guess "remove" doesn't get everythign

jsaravana87 11-01-2012 11:28 AM

I guess apache does not find phpmyadmin directory .So just reinstall phpmyadmin & reinstall the phpmyadmin

sudo apt-get purge phpmyadmin
sudo apt-get install phpmyadmin


All times are GMT -5. The time now is 12:16 AM.