Bonjour
sous ubuntu 12.04 apache2 tomcat6, j'ai une page html qui ne trouve apparemment pas l'image et affiche le alt= à la place.
dans /var/lib/tomcat6/webapps
j'ai /ROOT là où est ma page menu_primaire.html
et /images là où j'ai mon image
le contenu de /webapps :
le contenu de /images :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 sudo ls -al /var/lib/tomcat6/webapps/ drwxrwxr-x 9 tomcat6 tomcat6 4096 Jul 4 10:33 . drwxr-xr-x 6 root root 4096 Jul 2 16:26 .. drwxr-xr-x 3 root root 4096 Jul 4 11:41 ROOT drwxr-xr-x 2 root root 4096 Jul 4 11:19 images
le contenu de /ROOT :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 sudo ls -al /var/lib/tomcat6/webapps/images drwxr-xr-x 2 root root 4096 Jul 4 11:19 . drwxrwxr-x 9 tomcat6 tomcat6 4096 Jul 4 10:33 .. -rw-r--r-- 1 root root 703777 Jul 4 10:33 image.jpg
la page menu_primaire.html :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 sudo ls -al /var/lib/tomcat6/webapps/ROOT/ drwxr-xr-x 3 root root 4096 Jul 4 10:31 . drwxrwxr-x 9 tomcat6 tomcat6 4096 Jul 4 10:33 .. -rw-r--r-- 1 root root 4483 Jul 4 10:31 menu_primaire.html
la log apache/error.log
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 <?xml version="0.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Apache Tomcat</title> </head> <body> <a> <IMG style="display:block;margin:auto;width:1010px;height:740px;vertical-align:middle" src="../images/image.jpg" alt="une image devrait etre la !" title="helo !"> </a> </body> </html>
le message d'erreur quand je restart apache2[Wed Jul 04 14:07:12 2012] [error] [client 207.46.199.45] File does not exist: /var/lib/tomcat6/webapps/ROOT/robots.txt
[Wed Jul 04 14:10:29 2012] [error] [client 207.46.199.45] File does not exist: /var/lib/tomcat6/webapps/ROOT/page7
[Wed Jul 04 14:10:29 2012] [debug] mod_deflate.c(615): [client 207.46.199.45] Zlib: Compressed 301 to 225 : URL /page7/page17/page17.html
J'ai beau chercher, je ne vois pas.sudo /etc/init.d/apache2 restart
* Restarting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using XX.XXX.XXX.XX for ServerName
... waiting .apache2: Could not reliably determine the server's fully qualified domain name, using XX.XXX.XXX.XX for ServerName
pourriez vous m'aider ?
Partager