Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
3013 connectés 

  FORUM HardWare.fr
  Linux et OS Alternatifs
  Installation

  Problème de configuration d'apache sous linux....

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

Problème de configuration d'apache sous linux....

n°505225
Davjack
Asta la vista miam miam !!!
Posté le 16-06-2004 à 21:15:07  profilanswer
 

Bonjour  
 
J'ai un problème de config avec apache.  
J'aimerai pouvoir donner la possibilité à l'utilisateur davjack de faire du développement web.  
Pour se faire, j'ai essayer d'éditer le fichier httpd2.conf et d'y ajouter VirtualHost
 

Code :
  1. <VirtualHost 127.0.0.1>
  2. ServerAdmin webmaster@davjack.com
  3. DocumentRoot /home/davjack/www
  4. ServerName developpement
  5. </Virtualhost>


 
Seulement voilà.... quand je vais à l'adresse http://localhost, la page d'accueil que j'ai mis dans /var/www/html ne s'affiche pas et j'ai le message d'erreur :  
 

Citation :

Forbidden  
 
You don't have permission to access / on this server.  
Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 Server at developpement Port 80


 
Que ce passe-t'il et que puis-je faire ?


---------------
Asta la vista miam miam !!!
mood
Publicité
Posté le 16-06-2004 à 21:15:07  profilanswer
 

n°505233
la viper
Posté le 16-06-2004 à 21:34:13  profilanswer
 

l'ideal
 
<VirtualHost *>
ServerName davjack.monsite.com
DocumentRoot /home/davjack/www
</VirtualHost>
 
le hic cé qu'il faut rendre /home/davjack/www doit etre lisible par le compte utilisateur qui lance apache ... logique ...

n°505308
Davjack
Asta la vista miam miam !!!
Posté le 16-06-2004 à 22:37:23  profilanswer
 

la viper a écrit :

l'ideal
 
<VirtualHost *>
ServerName davjack.monsite.com
DocumentRoot /home/davjack/www
</VirtualHost>
 
le hic cé qu'il faut rendre /home/davjack/www doit etre lisible par le compte utilisateur qui lance apache ... logique ...

Il faut pas que j'installe un serveur dns là ?


---------------
Asta la vista miam miam !!!
n°505458
la viper
Posté le 17-06-2004 à 09:54:09  profilanswer
 

non ce n'est pas necessaire.
 
je ne sais pas exactement ce que tu souhaites faire avec ton serveur apache .. mais tu n'es pas obligé de passer obligatoirement par un virtualhost .. là dans ton exemple c'etait le cas, mais c'est vraiment optionnel!
 
pour info tu peux ne pas te prendre la tete si c'est un serveur de test ..
tu crées un utilisateur apache sur /home/www/
 
le DocumentRoot sera /home/www/
 
et dans le compte de davjack
/home/davjack/
tu ajoutes un lien symbolique vers /home/www (en ayant au prealable fait un chmod 777 /home/www -R)
 
ca c'est un methode brute mais efficace .
 
le site sera dispo apres en faisant
 
http://[ip]/[répertoire ou davjack a copié son site web]

n°505718
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 15:28:48  profilanswer
 

En fait, j'aimerai surtout que me fichiers Web soient sur /home/davjack/www
Si je met dans DocumentRoot /var/www/html mais si je met /home/davjack/www, ça ne marche pas (la page affiche Forbidden 403).... J'ai essayer de me connecter au localhost en root et en davjack mais le résultat est pareil ?
J'ai pensé que, pour remédier au problème, je devais créer un VirtualHost pour que je puisse écrire mes fichiers dans /home/davjack/www et que ça fonctionne (un peu comme c'est possible de mettre des répertoires virtuel en Asp).
En gros, c'est pas trop la bonne solution.
 
Comment faire pour que je puisse rediriger sur /home/davjack/www sans avoir d'erreur ?


---------------
Asta la vista miam miam !!!
n°505737
la viper
Posté le 17-06-2004 à 16:03:21  profilanswer
 

normal ton apache n'a pas le droit de lire les fichiers se trouvant dans /home/davjack/www il faut lui donner le droit via un beau chmod 777 ... mais je te deconseille cette methode. les données web sont sensibles cas dispo par des personnes sans authentification. Du coup si tu configures mal ton apache tu vas te retrouver surment avbec des gens qui vont pouvoir naviguer dans le compte de davjack!!
 
pour ton cas ce n'est pas tres difficile (meme si c'est un peu crados à mon gout)
essaye de faire un chmod 777 /home/davjack/www -R
puis d'enlever ton VirtualHost qui ne sert à rien dans httpd.conf et de mettre DocumentRoot "/home/davjack/www"
 
ca devrait etre bon. :)

n°505738
la viper
Posté le 17-06-2004 à 16:04:31  profilanswer
 

maintenant si tu souhaites faire cette manip pour plusieurs 'utilisateur' et les chrooter .. la tu vas avoir besoin d'un VirtualHost.

n°505752
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 16:20:10  profilanswer
 

la viper a écrit :

maintenant si tu souhaites faire cette manip pour plusieurs 'utilisateur' et les chrooter .. la tu vas avoir besoin d'un VirtualHost.

Merci, je compte le faire pour un seul utilisateur.
Mais par curiosité, si je voudrais le faire pour plusieurs utilisateur, je devrais installer un serveurs dns ?

n°505759
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 16:32:36  profilanswer
 

J'ai mis DocumentRoot "/home/davjack/www" et j'ai fait le chmod mais ça ne marche toujours pas....
J'ai toujours la même erreur 403

n°505763
ragnatul
Posté le 17-06-2004 à 16:39:19  profilanswer
 

Ba essai maintenant que tu as fait le chmod de voir les propriété de ton repertoire www, tu doit pouvoir modifier 'root' par 'davjack'.

mood
Publicité
Posté le 17-06-2004 à 16:39:19  profilanswer
 

n°505767
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 16:43:01  profilanswer
 

C'est déjà 'davjack'....

n°505774
la viper
Posté le 17-06-2004 à 16:54:00  profilanswer
 

le truc .. as tu mis un fichier index.html dans /home/davjack/www :D
parce que suivant la config de ton apache ... c'est 'normal'

n°505776
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 16:55:38  profilanswer
 

J'ai mis un fichier index.php

n°505784
la viper
Posté le 17-06-2004 à 17:02:46  profilanswer
 

oui mais ca se trouve ton apache s'est pas 'encore' lire les .php ....
 
tu le sors d'où ton apache?

n°505788
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 17:10:41  profilanswer
 

Mon apache sais lire les php, MySql fonctionne aussi, php et MySql arrivent à communiquer. Tout cela fonctionne mais seulement sur /var/www/html, par sur /home/davjack/www ou rien ne fonctionne.... snif

n°505801
la viper
Posté le 17-06-2004 à 17:25:02  profilanswer
 

hihi .. tu veux pas tester ca ?
 
tu laisses tes sources dans /var/www/html
 
sauf que tu fais un lien symbolique de /home/davjack/www vers /var/www/html
 
ln -s /va/www/html /home/davjack/www
 
ou sinon dit nous ce que renvoie ca  
 
ls -lrt /var/www
ls -lrt /var/www/html
et
ls -lrt /home/
ls -lrt /home/davjack

n°505810
Davjack
Asta la vista miam miam !!!
Posté le 17-06-2004 à 17:31:09  profilanswer
 

Pour ls -lrt /var/www

Citation :

total 20
drwxr-xr-x  3 root root 4096 jun 16 13:36 error/
drwxr-xr-x  2 root root 4096 jun 16 13:36 perl/
drwxr-xr-x  3 root root 4096 jun 16 13:36 icons/
drwxr-xr-x  2 root root 4096 jun 16 13:36 cgi-bin/
drwxr-xr-x  4 root root 4096 jun 17 15:06 html/


 
Pour ls -lrt /var/www/html

Citation :

total 524
-rw-r--r--  1 root root    906 mar 16  2003 dossier.gif
-rw-r--r--  1 root root 483775 mai 24 21:26 oniris.sql
-rw-r--r--  1 root root   1529 mai 25 12:46 davjack_news_et_membres.sql
-rw-r--r--  1 root root  10579 jun  4 11:53 demarrage.png
-rw-r--r--  1 root root   3152 jun  4 12:00 google.png
-rw-r--r--  1 root root   6755 jun  6 01:14 index.php
-rw-r--r--  1 root root   2408 jun  6 19:45 oniris_membres.sql
drwxr-xr-x  2 root root   4096 jun 16 14:42 addon-modules/
drwxr-xr-x  7 root root   4096 jun 16 14:59 phpMyAdmin/


 
Pour ls -lrt /home/

Citation :

total 4
drwxr-xr-x  29 davjack davjack 4096 jun 17 17:23 davjack/


 
Pour ls -lrt /home/davjack

Citation :

total 20
drwx------   3 davjack davjack 4096 jun 16 00:29 Desktop/
drwxrwxrwx   4 davjack davjack 4096 jun 16 14:26 www/
drwxrwxr-x  12 davjack davjack 4096 jun 16 14:26 sauvegardes/
drwx------   3 davjack davjack 4096 jun 17 16:29 tmp/
drwxr-xr-x   4 davjack davjack 4096 jun 17 17:30 Documents/


---------------
Asta la vista miam miam !!!
n°505820
la viper
Posté le 17-06-2004 à 17:39:38  profilanswer
 

ils te disent quoi tes fichiers access_log et error_log ??

n°505831
la viper
Posté le 17-06-2004 à 17:46:26  profilanswer
 

je seche un peu tout de mm :-/

n°506257
Davjack
Asta la vista miam miam !!!
Posté le 18-06-2004 à 11:24:23  profilanswer
 

la viper a écrit :

ils te disent quoi tes fichiers access_log et error_log ??

Ou je les trouve ? :??:


---------------
Asta la vista miam miam !!!
n°506274
la viper
Posté le 18-06-2004 à 11:50:50  profilanswer
 

alors 'logiquement' .. dans /var/log/httpd .. regarde par là :)

n°506332
Davjack
Asta la vista miam miam !!!
Posté le 18-06-2004 à 13:12:30  profilanswer
 

Pour access_log

Citation :

127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /favicon.ico HTTP/1.1" 200 1406 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/advx.png HTTP/1.1" 200 3505 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/mandrake.png HTTP/1.1" 200 5244 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/logo.gif HTTP/1.1" 200 9198 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/php.png HTTP/1.1" 200 2986 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/mysql.png HTTP/1.1" 200 3112 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/postgresql.png HTTP/1.1" 200 4618 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/mod_ssl.png HTTP/1.1" 200 1912 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/stamp.gif HTTP/1.1" 200 7603 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET / HTTP/1.1" 200 7040 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:11:23:08 +0200] "GET /icons/apache.png HTTP/1.1" 200 1748 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:15:06 +0200] "GET / HTTP/1.1" 200 6965 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:45:12 +0200] "GET /test HTTP/1.1" 301 343 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:45:12 +0200] "GET /test/ HTTP/1.1" 200 65 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:45:20 +0200] "GET /test HTTP/1.1" 301 343 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:45:20 +0200] "GET /test/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:45:32 +0200] "GET /test/index.php HTTP/1.1" 200 65 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:47:00 +0200] "GET / HTTP/1.1" 200 6965 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:47:08 +0200] "GET /test HTTP/1.1" 301 343 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:12:47:08 +0200] "GET /test/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET / HTTP/1.1" 200 6981 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/advx.png HTTP/1.1" 200 3505 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /favicon.ico HTTP/1.1" 200 1406 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/mandrake.png HTTP/1.1" 200 5244 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/logo.gif HTTP/1.1" 200 9198 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/apache.png HTTP/1.1" 200 1748 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/php.png HTTP/1.1" 200 2986 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/mysql.png HTTP/1.1" 200 3112 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/postgresql.png HTTP/1.1" 200 4618 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/stamp.gif HTTP/1.1" 200 7603 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:05 +0200] "GET /icons/mod_ssl.png HTTP/1.1" 200 1912 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:08 +0200] "GET /web HTTP/1.1" 301 358 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:08 +0200] "GET /web/ HTTP/1.1" 200 34842 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:08 +0200] "GET /web/index.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2962 "http://127.0.0.1/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:13:54:08 +0200] "GET /web/index.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 4440 "http://127.0.0.1/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:39 +0200] "GET /web HTTP/1.1" 301 358 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:39 +0200] "GET /web/ HTTP/1.1" 200 34842 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:39 +0200] "GET /web/index.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2962 "http://127.0.0.1/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:39 +0200] "GET /web/index.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 4440 "http://127.0.0.1/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET / HTTP/1.1" 200 6981 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /favicon.ico HTTP/1.1" 200 1406 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/advx.png HTTP/1.1" 200 3505 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/mandrake.png HTTP/1.1" 200 5244 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/apache.png HTTP/1.1" 200 1748 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/logo.gif HTTP/1.1" 200 9198 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/php.png HTTP/1.1" 200 2986 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/mysql.png HTTP/1.1" 200 3112 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/postgresql.png HTTP/1.1" 200 4618 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/stamp.gif HTTP/1.1" 200 7603 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:13:43 +0200] "GET /icons/mod_ssl.png HTTP/1.1" 200 1912 "http://127.0.0.1/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:14:04 +0200] "GET /phpMyAdmin HTTP/1.1" 301 365 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:14:04 +0200] "GET /phpMyAdmin/ HTTP/1.1" 403 342 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:14:59 +0200] "GET /web HTTP/1.1" 301 358 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:14:59 +0200] "GET /web/ HTTP/1.1" 200 34842 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:15:05 +0200] "GET /phpMyAdmin HTTP/1.1" 301 365 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:15:05 +0200] "GET /phpMyAdmin/ HTTP/1.1" 403 342 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:16:09 +0200] "GET /phpmyadmin/ HTTP/1.1" 403 342 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:16:18 +0200] "GET /phpMyAdmin/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:16:55 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:27:15 +0200] "GET / HTTP/1.1" 200 6981 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:27:32 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:27:38 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:30:50 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:30:55 +0200] "GET /web HTTP/1.1" 403 334 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:49:56 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:54:01 +0200] "GET / HTTP/1.1" 200 7533 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:54:24 +0200] "GET / HTTP/1.1" 200 7533 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:54:45 +0200] "GET /google.png HTTP/1.1" 200 3152 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:54:45 +0200] "GET /dossier.gif HTTP/1.1" 200 906 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:54:45 +0200] "GET /demarrage.png HTTP/1.1" 200 10579 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:09 +0200] "GET /phpMyAdmin HTTP/1.1" 301 365 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:09 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:09 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:09 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390509 HTTP/1.1" 200 922 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:09 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390509 HTTP/1.1" 200 987 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390509" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/images/vertical_line.png HTTP/1.1" 200 83 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/images/item_ltr.png HTTP/1.1" 200 136 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390509" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:14:55:10 +0200] "GET /phpMyAdmin/images/pma_logo.png HTTP/1.1" 200 1527 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390509" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390806 HTTP/1.1" 200 987 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390806 HTTP/1.1" 200 922 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390806" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087390806" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:00:06 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin HTTP/1.1" 301 365 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391101 HTTP/1.1" 200 921 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391101 HTTP/1.1" 200 985 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391101" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391101" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:02 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:05:01 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:11:56 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 3016 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391560 HTTP/1.1" 200 922 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391560 HTTP/1.1" 200 986 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391560" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:12:40 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391560" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:14 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:14 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:14 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=d4cfc091e83b9c4dabe8c2a9ca3c48bc1087391594 HTTP/1.1" 200 916 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:14 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=d4cfc091e83b9c4dabe8c2a9ca3c48bc1087391594 HTTP/1.1" 200 980 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:14 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3042 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:27 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:27 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:27 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=31493de02e34eb4a3a87c085d8d1f4421087391607 HTTP/1.1" 200 918 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:27 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=31493de02e34eb4a3a87c085d8d1f4421087391607 HTTP/1.1" 200 981 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:27 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3043 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391628 HTTP/1.1" 200 986 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391628 HTTP/1.1" 200 922 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391628" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:48 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:49 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:13:49 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391628" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:24 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:24 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:24 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=642bd5bb36b4a3e1b729ad476fcafff11087391664 HTTP/1.1" 200 918 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:24 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3043 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:24 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=642bd5bb36b4a3e1b729ad476fcafff11087391664 HTTP/1.1" 200 981 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:44 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:44 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:44 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=b663f9f95e5e8329d42bf2f3dc1054e71087391684 HTTP/1.1" 200 920 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:44 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=b663f9f95e5e8329d42bf2f3dc1054e71087391684 HTTP/1.1" 200 983 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:44 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3046 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:55 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:55 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:55 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391695 HTTP/1.1" 200 986 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:56 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391695 HTTP/1.1" 200 922 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:56 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391695" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:56 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3109 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:56 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=a623de43e43e0436ecfa2b40430093261087391695" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:14:56 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:15:45 +0200] "GET /path_to_your_phpMyAdmin_directory HTTP/1.1" 404 360 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812 HTTP/1.1" 200 923 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812 HTTP/1.1" 200 988 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/images/pma_logo.png HTTP/1.1" 200 1527 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/images/vertical_line.png HTTP/1.1" 200 83 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/images/item_ltr.png HTTP/1.1" 200 136 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:16:52 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3044 "http://127.0.0.1/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:43 +0200] "GET /phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 2788 "http://127.0.0.1/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:43 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:43 +0200] "GET /phpMyAdmin/libraries/server_privileges.js HTTP/1.1" 200 2641 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:43 +0200] "GET /phpMyAdmin/images/arrow_ltr.gif HTTP/1.1" 200 88 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:52 +0200] "GET /phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1&username=root&hostname=localhost HTTP/1.1" 200 4709 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:21:52 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1&username=root&hostname=localhost" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:22:04 +0200] "POST /phpMyAdmin/server_privileges.php HTTP/1.1" 200 4963 "http://localhost/phpMyAdmin/server_privileges.php?lang=fr-iso-8859-1&server=1&username=root&hostname=localhost" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:22:04 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/server_privileges.php" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:22:08 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 3012 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:22:18 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 2886 "http://127.0.0.1/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087391812" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:22:18 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:39:54 +0200] "GET / HTTP/1.1" 200 7533 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393233 HTTP/1.1" 200 922 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 2886 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://localhost/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393233" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://localhost/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393233" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:33 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393233 HTTP/1.1" 200 989 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:38 +0200] "GET /web/index.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2962 "http://localhost/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:38 +0200] "GET /web/index.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 4440 "http://localhost/web/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:38 +0200] "GET /web/ HTTP/1.1" 200 36927 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:42 +0200] "GET /icons/blank.png HTTP/1.1" 200 153 "http://localhost/addon-modules/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:42 +0200] "GET /addon-modules/ HTTP/1.1" 200 1040 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:42 +0200] "GET /icons/text.png HTTP/1.1" 200 231 "http://localhost/addon-modules/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:42 +0200] "GET /icons/back.png HTTP/1.1" 200 243 "http://localhost/addon-modules/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:42 +0200] "GET /icons/folder.png HTTP/1.1" 200 230 "http://localhost/addon-modules/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/ HTTP/1.1" 200 2453 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393256 HTTP/1.1" 200 922 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393256 HTTP/1.1" 200 988 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://localhost/phpMyAdmin/queryframe.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393256" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:57 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?js_frame=left&num_dbs=0 HTTP/1.1" 200 944 "http://localhost/phpMyAdmin/left.php?lang=fr-iso-8859-1&server=1&hash=c4503693025e429f6a3772da83ddfea81087393256" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:56 +0200] "GET /phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1 HTTP/1.1" 200 2886 "http://localhost/phpMyAdmin/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:40:57 +0200] "GET /phpMyAdmin/css/phpmyadmin.css.php?lang=fr-iso-8859-1&js_frame=right HTTP/1.1" 200 6490 "http://localhost/phpMyAdmin/main.php?lang=fr-iso-8859-1&server=1" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:54:04 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:54:09 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:54:53 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:54:58 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:55:08 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:15:55:19 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:16:01:03 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [16/Jun/2004:16:09:01 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:11:23:46 +0200] "GET / HTTP/1.1" 403 335 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:00:16 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:04:13 +0200] "GET / HTTP/1.1" 200 7533 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:08:11 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:12:03 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:12:04 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:12:05 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:13:20 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:13:22 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:13:24 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:14:17 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:14:19 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:22:54 +0200] "GET / HTTP/1.1" 200 7344 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:31:25 +0200] "GET / HTTP/1.1" 200 7344 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:31:26 +0200] "GET /dossier.gif HTTP/1.1" 200 906 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:31:26 +0200] "GET /google.png HTTP/1.1" 200 3152 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:15:31:26 +0200] "GET /demarrage.png HTTP/1.1" 200 10579 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:27:31 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:27:33 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:27:33 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:28:28 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:28:29 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:28:45 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:28:46 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:29:35 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:29:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:16:37:10 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:18:57:43 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:18:57:51 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:03:51 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:39:45 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:33 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:35 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:35 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:36 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:37 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:37 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:37 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:37 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:57 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [17/Jun/2004:19:48:58 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:25:19 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:25:21 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:25:22 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:27:24 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:27:25 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:34:56 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:34:57 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"
127.0.0.1 - - [18/Jun/2004:12:34:58 +0200] "GET / HTTP/1.1" 403 331 "-" "Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.6) Gecko/20040115"


Message édité par Davjack le 18-06-2004 à 13:14:33

---------------
Asta la vista miam miam !!!
n°506334
Davjack
Asta la vista miam miam !!!
Posté le 18-06-2004 à 13:15:10  profilanswer
 

pour error_log

Citation :

[Tue Jun 15 16:54:51 2004] [error] (120022)APR does not understand this error code: Cannot create SSLSessionCache DBM file `/var/cache/httpd/mod_ssl/ssl_scache'
[Tue Jun 15 16:54:51 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 16:54:52 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 16:54:52 2004] [notice] Digest: done
[Tue Jun 15 16:54:54 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:38:59 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:39:01 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:01 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:01 2004] [notice] Digest: done
[Tue Jun 15 17:39:02 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:02 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:02 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:02 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:39:02 2004] [alert] Child 4509 returned a Fatal error...
Apache is exiting!
[Tue Jun 15 17:39:02 2004] [emerg] (22)Invalid argument: couldn't grab the accept mutex
[Tue Jun 15 17:39:02 2004] [emerg] (22)Invalid argument: couldn't grab the accept mutex
[Tue Jun 15 17:39:05 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:05 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:05 2004] [notice] Digest: done
[Tue Jun 15 17:39:05 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:05 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:05 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:05 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:05 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:39:05 2004] [alert] Child 4698 returned a Fatal error...
Apache is exiting!
[Tue Jun 15 17:39:05 2004] [emerg] (22)Invalid argument: couldn't grab the accept mutex
[Tue Jun 15 17:39:12 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:12 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:12 2004] [notice] Digest: done
[Tue Jun 15 17:39:12 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:12 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:12 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:12 2004] [emerg] (13)Permission denied: couldn't grab the accept mutex
[Tue Jun 15 17:39:12 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:39:12 2004] [alert] Child 4888 returned a Fatal error...
Apache is exiting!
[Tue Jun 15 17:39:12 2004] [emerg] (22)Invalid argument: couldn't grab the accept mutex
[Tue Jun 15 17:39:14 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:14 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:14 2004] [notice] Digest: done
[Tue Jun 15 17:39:15 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:39:42 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:39:45 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:45 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:45 2004] [notice] Digest: done
[Tue Jun 15 17:39:45 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:39:49 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:39:50 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:39:50 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:39:50 2004] [notice] Digest: done
[Tue Jun 15 17:39:50 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:40:05 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:40:06 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:40:07 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:40:07 2004] [notice] Digest: done
[Tue Jun 15 17:40:07 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:40:43 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:40:44 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:40:44 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:40:44 2004] [notice] Digest: done
[Tue Jun 15 17:40:44 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:40:49 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:40:50 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:40:50 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:40:50 2004] [notice] Digest: done
[Tue Jun 15 17:40:50 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:41:05 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:41:05 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:41:05 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:41:05 2004] [notice] Digest: done
[Tue Jun 15 17:41:06 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:41:08 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:41:09 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:41:09 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:41:09 2004] [notice] Digest: done
[Tue Jun 15 17:41:09 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:41:19 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:41:20 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:41:20 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:41:20 2004] [notice] Digest: done
[Tue Jun 15 17:41:20 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 17:41:21 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 17:41:22 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 17:41:23 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 17:41:23 2004] [notice] Digest: done
[Tue Jun 15 17:41:23 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 18:04:29 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 19:19:05 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 19:19:05 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 19:19:05 2004] [notice] Digest: done
[Tue Jun 15 19:19:08 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 21:29:33 2004] [notice] caught SIGTERM, shutting down
[Tue Jun 15 22:23:07 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Tue Jun 15 22:23:07 2004] [notice] Digest: generating secret for digest authentication ...
[Tue Jun 15 22:23:07 2004] [notice] Digest: done
[Tue Jun 15 22:23:11 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Tue Jun 15 23:00:46 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 00:20:28 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 00:20:28 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 00:20:28 2004] [notice] Digest: done
[Wed Jun 16 00:20:30 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 00:27:10 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 00:29:07 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 00:29:08 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 00:29:08 2004] [notice] Digest: done
[Wed Jun 16 00:29:11 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 00:30:00 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 11:09:31 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 11:09:32 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 11:09:32 2004] [notice] Digest: done
[Wed Jun 16 11:09:34 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 11:59:30 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 11:59:32 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 11:59:32 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 11:59:32 2004] [notice] Digest: done
[Wed Jun 16 11:59:33 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 11:59:35 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 11:59:36 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 11:59:36 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 11:59:36 2004] [notice] Digest: done
[Wed Jun 16 11:59:37 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 auth_mysql/1.11 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 11:59:44 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 11:59:44 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/apache2-suexec)
[Wed Jun 16 11:59:44 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 11:59:44 2004] [notice] Digest: done
[Wed Jun 16 11:59:45 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) mod_perl/1.99_11 Perl/v5.8.3 auth_mysql/1.11 mod_ssl/2.0.48 OpenSSL/0.9.7c PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 12:02:35 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 12:13:58 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 12:13:58 2004] [notice] Digest: done
[Wed Jun 16 12:13:58 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) configured -- resuming normal operations
[Wed Jun 16 12:32:03 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 12:32:04 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 12:32:04 2004] [notice] Digest: done
[Wed Jun 16 12:32:04 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) configured -- resuming normal operations
[Wed Jun 16 12:32:36 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 12:32:36 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 12:32:36 2004] [notice] Digest: done
[Wed Jun 16 12:32:36 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) configured -- resuming normal operations
[Wed Jun 16 12:46:29 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 12:46:52 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 12:46:52 2004] [notice] Digest: done
[Wed Jun 16 12:46:52 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6mdk) configured -- resuming normal operations
[Wed Jun 16 12:48:12 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 13:45:31 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 13:45:31 2004] [notice] Digest: done
[Wed Jun 16 13:45:31 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) configured -- resuming normal operations
[Wed Jun 16 13:51:13 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 13:51:13 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 13:51:13 2004] [notice] Digest: done
[Wed Jun 16 13:51:13 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) configured -- resuming normal operations
[Wed Jun 16 13:52:17 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 13:52:17 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 13:52:17 2004] [notice] Digest: done
[Wed Jun 16 13:52:18 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 13:52:41 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 13:52:42 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 13:52:42 2004] [notice] Digest: done
[Wed Jun 16 13:52:42 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:05:00 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:05:05 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:05:05 2004] [notice] Digest: done
[Wed Jun 16 14:05:05 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:14:04 2004] [error] [client 127.0.0.1] Directory index forbidden by rule: /var/www/html/phpMyAdmin/
[Wed Jun 16 14:15:05 2004] [error] [client 127.0.0.1] Directory index forbidden by rule: /var/www/html/phpMyAdmin/
[Wed Jun 16 14:16:09 2004] [error] [client 127.0.0.1] Directory index forbidden by rule: /var/www/html/phpmyadmin/
[Wed Jun 16 14:16:18 2004] [error] [client 127.0.0.1] File does not exist: /var/www/html/phpMyAdmin
[Wed Jun 16 14:27:24 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:27:28 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:27:28 2004] [notice] Digest: done
[Wed Jun 16 14:27:28 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:27:32 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 14:27:38 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 14:30:39 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:30:39 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:30:39 2004] [notice] Digest: done
[Wed Jun 16 14:30:39 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:30:50 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 14:30:55 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/web
[Wed Jun 16 14:32:07 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:40:58 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:40:58 2004] [notice] Digest: done
[Wed Jun 16 14:40:58 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) auth_mysql/1.11 PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:41:09 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:41:09 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:41:09 2004] [notice] Digest: done
[Wed Jun 16 14:41:09 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) auth_mysql/1.11 PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:42:32 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:42:33 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:42:33 2004] [notice] Digest: done
[Wed Jun 16 14:42:33 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:47:18 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:49:03 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:49:03 2004] [notice] Digest: done
[Wed Jun 16 14:49:03 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:49:56 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 14:52:16 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:52:51 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:52:51 2004] [notice] Digest: done
[Wed Jun 16 14:52:51 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:53:00 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:53:01 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:53:01 2004] [notice] Digest: done
[Wed Jun 16 14:53:01 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 14:53:52 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 14:53:52 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 14:53:52 2004] [notice] Digest: done
[Wed Jun 16 14:53:52 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:03:45 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 15:03:45 2004] [notice] Digest: done
[Wed Jun 16 15:03:45 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:15:45 2004] [error] [client 127.0.0.1] File does not exist: /var/www/html/path_to_your_phpMyAdmin_directory
[Wed Jun 16 15:38:14 2004] [notice] caught SIGTERM, shutting down
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
[Wed Jun 16 15:39:37 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 15:39:37 2004] [notice] Digest: done
[Wed Jun 16 15:39:37 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:41:57 2004] [notice] caught SIGTERM, shutting down
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
(2)No such file or directory: httpd2: could not open error log file /var/log/apache/domain1-error.log.
Unable to open logs
 
[Wed Jun 16 15:53:52 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 15:53:52 2004] [notice] Digest: done
[Wed Jun 16 15:53:52 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:54:04 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 15:54:09 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 15:54:42 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 15:54:43 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 15:54:43 2004] [notice] Digest: done
[Wed Jun 16 15:54:43 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:54:53 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 15:54:58 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 15:55:08 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 15:55:15 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 15:55:15 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 15:55:15 2004] [notice] Digest: done
[Wed Jun 16 15:55:15 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 15:55:19 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 16:01:03 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 16:09:01 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Wed Jun 16 16:11:54 2004] [notice] caught SIGTERM, shutting down
[Wed Jun 16 16:14:10 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Jun 16 16:14:10 2004] [notice] Digest: done
[Wed Jun 16 16:14:10 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Wed Jun 16 18:46:22 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 11:22:16 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 11:22:16 2004] [notice] Digest: done
[Thu Jun 17 11:22:16 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 11:23:46 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 11:43:40 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 14:19:20 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 14:19:21 2004] [notice] Digest: done
[Thu Jun 17 14:19:21 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 14:51:20 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 14:53:04 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 14:53:04 2004] [notice] Digest: done
[Thu Jun 17 14:53:04 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 14:57:46 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 14:59:27 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 14:59:27 2004] [notice] Digest: done
[Thu Jun 17 14:59:27 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:00:16 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:02:12 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:02:12 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:02:12 2004] [notice] Digest: done
[Thu Jun 17 15:02:12 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:04:01 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:04:01 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:04:01 2004] [notice] Digest: done
[Thu Jun 17 15:04:01 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:06:46 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:06:47 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:06:47 2004] [notice] Digest: done
[Thu Jun 17 15:06:47 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:08:07 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:08:07 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:08:07 2004] [notice] Digest: done
[Thu Jun 17 15:08:07 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:08:11 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/
[Thu Jun 17 15:09:39 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:09:40 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:09:40 2004] [notice] Digest: done
[Thu Jun 17 15:09:40 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:11:54 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:11:54 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:11:54 2004] [notice] Digest: done
[Thu Jun 17 15:11:55 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:12:03 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:12:04 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:12:05 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:13:14 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:13:15 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:13:15 2004] [notice] Digest: done
[Thu Jun 17 15:13:15 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:13:20 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:13:22 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:13:24 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:14:17 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:14:19 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 15:22:28 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 15:22:28 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 15:22:28 2004] [notice] Digest: done
[Thu Jun 17 15:22:28 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 15:38:49 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 16:15:45 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 16:15:45 2004] [notice] Digest: done
[Thu Jun 17 16:15:45 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 16:27:25 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 16:27:25 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 16:27:25 2004] [notice] Digest: done
[Thu Jun 17 16:27:25 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 16:27:31 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:27:33 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:27:33 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:28:28 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:28:29 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:28:40 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 16:28:40 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 16:28:40 2004] [notice] Digest: done
[Thu Jun 17 16:28:40 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 16:28:45 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:28:46 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:29:35 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:29:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 16:37:10 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 17:32:00 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 18:52:16 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 18:52:16 2004] [notice] Digest: done
[Thu Jun 17 18:52:16 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 18:57:43 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 18:57:51 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 18:58:49 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 19:00:34 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 19:00:34 2004] [notice] Digest: done
[Thu Jun 17 19:00:34 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 19:03:51 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:34:52 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 19:36:35 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 19:36:35 2004] [notice] Digest: done
[Thu Jun 17 19:36:35 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 19:39:45 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:33 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:35 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:35 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:36 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:37 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:37 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:37 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:37 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:54 2004] [notice] caught SIGTERM, shutting down
[Thu Jun 17 19:48:54 2004] [notice] Digest: generating secret for digest authentication ...
[Thu Jun 17 19:48:54 2004] [notice] Digest: done
[Thu Jun 17 19:48:54 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Thu Jun 17 19:48:57 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:48:58 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Thu Jun 17 19:55:30 2004] [notice] caught SIGTERM, shutting down
[Fri Jun 18 12:10:36 2004] [notice] Digest: generating secret for digest authentication ...
[Fri Jun 18 12:10:36 2004] [notice] Digest: done
[Fri Jun 18 12:10:36 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Fri Jun 18 12:16:24 2004] [notice] Digest: generating secret for digest authentication ...
[Fri Jun 18 12:16:24 2004] [notice] Digest: done
[Fri Jun 18 12:16:24 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Fri Jun 18 12:25:06 2004] [notice] caught SIGTERM, shutting down
[Fri Jun 18 12:25:07 2004] [notice] Digest: generating secret for digest authentication ...
[Fri Jun 18 12:25:07 2004] [notice] Digest: done
[Fri Jun 18 12:25:07 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Fri Jun 18 12:25:19 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:25:21 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:25:22 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:27:24 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:27:25 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:34:46 2004] [notice] caught SIGTERM, shutting down
[Fri Jun 18 12:34:47 2004] [notice] Digest: generating secret for digest authentication ...
[Fri Jun 18 12:34:47 2004] [notice] Digest: done
[Fri Jun 18 12:34:47 2004] [notice] Apache-AdvancedExtranetServer/2.0.48 (Mandrake Linux/6.2.100mdk) PHP/4.3.4 configured -- resuming normal operations
[Fri Jun 18 12:34:56 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:34:57 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/
[Fri Jun 18 12:34:58 2004] [error] [client 127.0.0.1] client denied by server configuration: /home/davjack/www/


---------------
Asta la vista miam miam !!!
n°506413
Davjack
Asta la vista miam miam !!!
Posté le 18-06-2004 à 14:44:38  profilanswer
 

En cherchant, je viens de voir ce message :

Citation :

Vous êtes en DHCP, le serveur pourrait ne pas marcher avec cette configuration.


C'est quoi ? Le problème peut venir de là ?


---------------
Asta la vista miam miam !!!
n°506443
Davjack
Asta la vista miam miam !!!
Posté le 18-06-2004 à 15:24:42  profilanswer
 

J'ai fini par y arriver !!! Pour finir, j'ai tout désinstallé et j'ai installé drakwizard. A partir de là, c'était très simple, il suffisait de suivre les instructions !


---------------
Asta la vista miam miam !!!
n°506451
la viper
Posté le 18-06-2004 à 15:34:34  profilanswer
 

gloup!!
 
le dhcp c'est parce que tu as une adresse ip dynamique si tu souhaites accèder à distance à ton apache ca risque de te poser un soucis dans le sens ou tu connaitras pas l'adresse ip ...
 
sinon tant mieux que ca fonctionne :)

mood
Publicité
Posté le   profilanswer
 


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Linux et OS Alternatifs
  Installation

  Problème de configuration d'apache sous linux....

 

Sujets relatifs
[Samba] Configurationmandrake linux 9.2
Problème qmail et newsletterServeur/Passerelle Linux : Choix de la distrib ?
POSTFIX configuration proxyObtenir les info systeme sous Linux
[Image] Réducteur de bruit sous linuxProblème avec le Partage de Bureau de KDE
Cacher une machine linux - serveur sambaComment Reinstaller Windows sans perdre Linux?
Plus de sujets relatifs à : Problème de configuration d'apache sous linux....


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR