Pages : 1
#1 Le 24/12/2015, à 09:36
- to94
index.php pas affiché par apache !
Bonjour, je veux faire tourner Joomla! sur mon serveur Apache, le problème c'est qu ela page d'accueil index.php ne s'affiche pas....
Voici mon mode opératoire :
root@osboxes:/home/osboxes# ifconfig eth0 192.168.0.1/24
root@osboxes:/home/osboxes# /etc/init.d/apache2 start
* Starting web server apache2
*
root@osboxes:/home/osboxes# ls /var/www/html/
administrator images libraries plugins web.config.txt
cache includes LICENSE.txt README.txt
cli index.php logs robots.txt.dist
components joomla.xml media templates
htaccess.txt language modules tmp
root@osboxes:/home/osboxes# head /var/www/html/index.php
<?php
/**
* @package Joomla.Site
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// Set flag that this is a parent file.
define('_JEXEC', 1);
define('DS', DIRECTORY_SEPARATOR);
Du coup je me connecte sur l'@IP 192.168.0.1 :
Aucun affichage ....
Pourtant la connexion s'effectue ! Tu sais pourquoi rien ne s'affiche ?
Dernière modification par to94 (Le 24/12/2015, à 09:40)
Hors ligne
#2 Le 24/12/2015, à 09:45
- pires57
Re : index.php pas affiché par apache !
retournes les fichiers de logs apache, c'est dedant que tu verras les éventuels erreurs
Utilisateur d'Archlinux, Ubuntu et Kali Linux
Administrateur système et réseau spécialisé Linux.
LinkedIn
Hors ligne
#3 Le 24/12/2015, à 10:07
- vinny
Re : index.php pas affiché par apache !
Question bête tu as installé PHP?
Sinon vérifie dans ton fichier de conf (apache2.conf ceci)
<IfModule dir_module>
#DirectoryIndex index.html
DirectoryIndex index.html index.html.var index.php index.php3 index.php4
</IfModule>
www.journaldunadminlinux.fr
La connaissance est la seule chose qui grandit quand on la partage
Hors ligne
#4 Le 24/12/2015, à 10:36
- tiramiseb
Re : index.php pas affiché par apache !
Salut,
Bien souvent, quand il n'y a rien dans la page c'est qu'il y a une erreur dans le code PHP bien avant qu'il n'affiche quoi que ce soit.
Si PHP n'était pas installé, l'affichage serait différent.
Regarde les logs. De toute manière, dans tous les cas, toujours, quel que soit le problème, les logs c'est la première chose à regarder, avant d'aller sur un forum...
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#5 Le 24/12/2015, à 10:44
- vinny
Re : index.php pas affiché par apache !
Yep c'est pas faux.
Très souvent l'oublie de la balise <?php ?>
www.journaldunadminlinux.fr
La connaissance est la seule chose qui grandit quand on la partage
Hors ligne
#6 Le 24/12/2015, à 10:47
- tiramiseb
Re : index.php pas affiché par apache !
Très souvent l'oublie de la balise <?php ?>
Si on oublie cette balise, le serveur l'interprète comme du contenu et affiche le code tel quel, pas une page blanche. Lorsqu'il y a une page blanche, c'est a priori bel et bien un problème lors de l'interprétation, donc la balise est a priori là.
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#7 Le 24/12/2015, à 10:56
- to94
Re : index.php pas affiché par apache !
retournes les fichiers de logs apache, c'est dedant que tu verras les éventuels erreurs
root@osboxes:/home/osboxes# tail -n 5 /var/log/apache2/error.log
[Wed Dec 23 16:32:07.516608 2015] [mpm_prefork:notice] [pid 2839] AH00169: caught SIGTERM, shutting down
[Thu Dec 24 09:46:15.539588 2015] [mpm_prefork:notice] [pid 1252] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.14 configured -- resuming normal operations
[Thu Dec 24 09:46:15.555972 2015] [core:notice] [pid 1252] AH00094: Command line: '/usr/sbin/apache2'
[Thu Dec 24 09:47:38.807647 2015] [:error] [pid 1255] [client 192.168.0.1:34484] PHP Warning: require_once(/var/www/html/includes/defines.php): failed to open stream: Permission denied in /var/www/html/index.php on line 18
[Thu Dec 24 09:47:38.809779 2015] [:error] [pid 1255] [client 192.168.0.1:34484] PHP Fatal error: require_once(): Failed opening required '/var/www/html/includes/defines.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/html/index.php on line 18
Ne faut-il pas que je fasse un chmod particulier ?
Question bête tu as installé PHP? big_smile
Sinon vérifie dans ton fichier de conf (apache2.conf ceci)
<IfModule dir_module>
#DirectoryIndex index.html
DirectoryIndex index.html index.html.var index.php index.php3 index.php4
</IfModule>
root@osboxes:/home/osboxes# php -v
PHP 5.5.9-1ubuntu4.14 (cli) (built: Oct 28 2015 01:34:46)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
with Zend OPcache v7.0.3, Copyright (c) 1999-2014, by Zend Technologies
root@osboxes:/home/osboxes# more /etc/apache2/apache2.conf | grep 'index.html'
On dirait que je n'ai pas la section ifModule....
Salut,
Bien souvent, quand il n'y a rien dans la page c'est qu'il y a une erreur dans le code PHP bien avant qu'il n'affiche quoi que ce soit.
Si PHP n'était pas installé, l'affichage serait différent.Regarde les logs. De toute manière, dans tous les cas, toujours, quel que soit le problème, les logs c'est la première chose à regarder, avant d'aller sur un forum...
Je n'ai pas du tout touché au code. C'est celui initiale du bundle Joomla! .
Dernière modification par to94 (Le 24/12/2015, à 10:57)
Hors ligne
#8 Le 24/12/2015, à 10:58
- tiramiseb
Re : index.php pas affiché par apache !
Permission denied
L'utilisateur www-data n'a pas les droits de lecture sur le fichier /var/www/html/includes/defines.php inclus par index.php.
Vérifie les droits sur tous les fichiers de l'arborescence du site, il faut que www-data puisse les lire.
Ne faut-il pas que je fasse un chmod particulier ?
On ne peut pas te donner de détail si tu ne nous donnes pas de détails :
ls -lhd /var/www/html/* /var/www/html/*/*
Dernière modification par tiramiseb (Le 24/12/2015, à 10:59)
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#9 Le 24/12/2015, à 11:00
- to94
Re : index.php pas affiché par apache !
osboxes@osboxes:/home$ ls -l /var/www/
total 4
drwxr-xr-x 16 root root 4096 Dec 23 09:44 html
Du coup je dois ajouter l'utilisateur www-data c'est ça ?
Dernière modification par to94 (Le 24/12/2015, à 11:02)
Hors ligne
#10 Le 24/12/2015, à 11:06
- tiramiseb
Re : index.php pas affiché par apache !
Là tu ne nous montres que les droits sur /var/www/html, qui sont corrects (droits de lecture et exécution pour tous les utilisateurs). On le savait déjà vu que index.php est bien interprété. Ce n'est pas ce que j'ai demandé.
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#11 Le 24/12/2015, à 11:40
- to94
Re : index.php pas affiché par apache !
root@osboxes:/home# ls -lhd /var/www/html/* /var/www/html/*/*
drwxrwxrwx 10 root root 4.0K Dec 22 13:51 /var/www/html/administrator
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/administrator/cache
drwxr-x--- 27 root root 4.0K Dec 22 13:51 /var/www/html/administrator/components
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/administrator/help
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/administrator/includes
-rwxr-x--- 1 root root 1.5K Dec 22 13:51 /var/www/html/administrator/index.php
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/administrator/language
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/administrator/manifests
drwxr-x--- 16 root root 4.0K Dec 22 13:51 /var/www/html/administrator/modules
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/administrator/templates
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/cache
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/cache/index.html
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/cli
-rwxr-x--- 1 root root 9.9K Dec 22 13:51 /var/www/html/cli/finder_indexer.php
-rwxr-x--- 1 root root 1.3K Dec 22 13:51 /var/www/html/cli/garbagecron.php
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/cli/index.html
-rwxr-x--- 1 root root 2.1K Dec 22 13:51 /var/www/html/cli/update_cron.php
drwxrwxrwx 13 root root 4.0K Dec 22 13:51 /var/www/html/components
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/components/com_banners
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/components/com_contact
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/components/com_content
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/components/com_finder
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/components/com_mailto
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/components/com_media
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/components/com_newsfeeds
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/components/com_search
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/components/com_users
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/components/com_weblinks
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/components/com_wrapper
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/components/index.html
-rwxrwxrwx 1 root root 2.8K Dec 23 15:36 /var/www/html/htaccess.txt
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/images
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/images/index.html
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/includes
-rwxr-x--- 1 root root 17K Dec 22 13:51 /var/www/html/includes/application.php
-rwxr-x--- 1 root root 978 Dec 22 13:51 /var/www/html/includes/defines.php
-rwxr-x--- 1 root root 2.5K Dec 22 13:51 /var/www/html/includes/framework.php
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/includes/index.html
-rwxr-x--- 1 root root 3.4K Dec 22 13:51 /var/www/html/includes/menu.php
-rwxr-x--- 1 root root 1.9K Dec 22 13:51 /var/www/html/includes/pathway.php
-rwxr-x--- 1 root root 13K Dec 22 13:51 /var/www/html/includes/router.php
-rwxrwxrwx 1 root root 1.3K Dec 22 13:51 /var/www/html/index.php
-rwxrwxrwx 1 root root 1.8K Dec 22 13:51 /var/www/html/joomla.xml
drwxrwxrwx 4 root root 4.0K Dec 22 13:51 /var/www/html/language
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/language/en-GB
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/language/index.html
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/language/overrides
drwxrwxrwx 8 root root 4.0K Dec 22 13:51 /var/www/html/libraries
drwxr-x--- 11 root root 4.0K Dec 22 13:51 /var/www/html/libraries/cms
-rwxr-x--- 1 root root 1.1K Dec 22 13:51 /var/www/html/libraries/cms.php
-rwxr-x--- 1 root root 2.2K Dec 22 13:51 /var/www/html/libraries/import.php
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/libraries/index.html
drwxr-x--- 31 root root 4.0K Dec 22 13:51 /var/www/html/libraries/joomla
-rwxr-x--- 1 root root 11K Dec 22 13:51 /var/www/html/libraries/loader.php
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/libraries/phpass
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/libraries/phpmailer
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/libraries/phputf8
-rwxr-x--- 1 root root 2.2K Dec 22 13:51 /var/www/html/libraries/platform.php
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/libraries/simplepie
-rwxrwxrwx 1 root root 18K Dec 22 13:51 /var/www/html/LICENSE.txt
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/logs
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/logs/index.html
drwxrwxrwx 15 root root 4.0K Dec 22 13:51 /var/www/html/media
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/media/cms
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/media/com_finder
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/media/com_joomlaupdate
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/media/contacts
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/media/editors
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/media/index.html
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/media/mailto
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/media/media
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/media/mod_languages
drwxr-x--- 4 root root 4.0K Dec 22 13:51 /var/www/html/media/overrider
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/media/plg_quickicon_extensionupdate
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/media/plg_quickicon_joomlaupdate
drwxr-x--- 2 root root 4.0K Dec 22 13:51 /var/www/html/media/plg_system_highlight
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/media/system
drwxrwxrwx 26 root root 4.0K Dec 22 13:51 /var/www/html/modules
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/modules/index.html
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_archive
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_categories
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_category
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_latest
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_news
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_articles_popular
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_banners
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_breadcrumbs
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_custom
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_feed
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_finder
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_footer
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_languages
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_login
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_menu
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_random_image
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_related_items
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_search
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_stats
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_syndicate
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_users_latest
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_weblinks
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_whosonline
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/modules/mod_wrapper
drwxrwxrwx 13 root root 4.0K Dec 22 13:51 /var/www/html/plugins
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/plugins/authentication
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/plugins/captcha
drwxr-x--- 10 root root 4.0K Dec 22 13:51 /var/www/html/plugins/content
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/plugins/editors
drwxr-x--- 6 root root 4.0K Dec 22 13:51 /var/www/html/plugins/editors-xtd
drwxr-x--- 3 root root 4.0K Dec 22 13:51 /var/www/html/plugins/extension
drwxr-x--- 7 root root 4.0K Dec 22 13:51 /var/www/html/plugins/finder
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/plugins/index.html
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/plugins/quickicon
drwxr-x--- 7 root root 4.0K Dec 22 13:51 /var/www/html/plugins/search
drwxr-x--- 13 root root 4.0K Dec 22 13:51 /var/www/html/plugins/system
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/plugins/user
-rwxrwxrwx 1 root root 4.1K Dec 22 13:51 /var/www/html/README.txt
-rwxrwxrwx 1 root root 865 Dec 22 13:51 /var/www/html/robots.txt.dist
drwxrwxrwx 6 root root 4.0K Dec 22 13:51 /var/www/html/templates
drwxr-x--- 7 root root 4.0K Dec 22 13:51 /var/www/html/templates/atomic
drwxr-x--- 8 root root 4.0K Dec 22 13:51 /var/www/html/templates/beez_20
drwxr-x--- 8 root root 4.0K Dec 22 13:51 /var/www/html/templates/beez5
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/templates/index.html
drwxr-x--- 5 root root 4.0K Dec 22 13:51 /var/www/html/templates/system
drwxrwxrwx 2 root root 4.0K Dec 22 13:51 /var/www/html/tmp
-rwxr-x--- 1 root root 31 Dec 22 13:51 /var/www/html/tmp/index.html
-rwxrwxrwx 1 root root 1.6K Dec 22 13:51 /var/www/html/web.config.txt
J'ai voulu ajouter l'utilisateur www-data au répertoire html :
root@osboxes:/home# chown -R root:www-data /var/www/html
root@osboxes:/home# ls -l /var/www/
total 4
drwxr-xr-x 16 root www-data 4096 Dec 23 09:44 html
root@osboxes:/home# service apache2 restart
* Restarting web server apache2 AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
Un message est apparu sur la page web :
Dernière modification par to94 (Le 24/12/2015, à 11:47)
Hors ligne
#12 Le 24/12/2015, à 12:29
- tiramiseb
Re : index.php pas affiché par apache !
Tu as dû faire un "chmod 777" à la racine du site à un moment... Ça c'est crado et dangereux.
Ensuite, rendre le groupe www-data propriétaire des fichiers est pas idéal, je n'aurais pas fait ça à ta place.
J'aurais plutôt mis des droits genre 755 sur les répertoires et 644 sur les fichiers, root:root propriétaire.
A priori, je pense que les commandes suivantes pourraient coller :
chown -R root.root /var/www/html
chmod -R u+rwX,g+rX-w,o+rX-w /var/www/html
Note toutefois qu'il est possible que www-data ait besoin d'écrire dans certains répertoires (uploads de fichiers par exemple), dans ce cas tu peux faire un « chown -R www-data XXX » uniquement sur les répertoires concernés.
Ensuite, concernant l'erreur que tu donnes, ça semble être une erreur de Joomla, je ne connais pas ce truc ; il faut le configurer a priori...
Dernière modification par tiramiseb (Le 24/12/2015, à 12:30)
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#13 Le 24/12/2015, à 12:33
- tiramiseb
Re : index.php pas affiché par apache !
J'ajouterais aussi que tu es censé mettre tes sites sous /srv (réservé à l'administrateur), pas sous /var (réservé au système)...
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#14 Le 24/12/2015, à 14:05
- pires57
Re : index.php pas affiché par apache !
J'ajouterais aussi que tu es censé mettre tes sites sous /srv (réservé à l'administrateur), pas sous /var (réservé au système)...
Question de bonne pratique et de respect de la norme FHS. Malheureusement de moins en moins respecté.
Dernière modification par pires57 (Le 24/12/2015, à 14:06)
Utilisateur d'Archlinux, Ubuntu et Kali Linux
Administrateur système et réseau spécialisé Linux.
LinkedIn
Hors ligne
#15 Le 24/12/2015, à 14:05
- to94
Re : index.php pas affiché par apache !
J'ai fais tes commandes, il n'y a pas eu de changement..
Du coup, j'ai mis un fichier index.php à la racine en mettant le bundle joomla dans un répertoire :
root@osboxes:/var/www/html# ls
index.php joomla
J'ai pris une config minimaliste de index.php :
root@osboxes:/var/www/html# more index.php
<?php
echo'<i>Vous êtes ici : </i><a href ="./index.php">Index du forum</a>';
?>
L'affichage s'effectue bien pour ma nouvelle page php :
Mais toujours pas d'affichage du site Joomla ..
Tant pis.
Je vais aller sur le forum dédié à Joomla!
Dernière modification par to94 (Le 24/12/2015, à 14:07)
Hors ligne
#16 Le 24/12/2015, à 14:08
- tiramiseb
Re : index.php pas affiché par apache !
respect de la norme FHS. Malheureusement de moins en moins respecté.
« de moins en moins » ? Je dirais plutôt que, sur ce point, elle n'a jamais été réellement respectée, plutôt par ignorance qu'autre chose...
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#17 Le 24/12/2015, à 14:10
- tiramiseb
Re : index.php pas affiché par apache !
il n'y a pas eu de changement
Pas de changement par rapport à quoi ?
Par rapport à l'erreur Joomla ? Je t'ai explicitement indiqué que je ne connais pas ce machin : les commandes que j'ai données sont pour rendre ton arborescence un peu plus propre...
Pour ton erreur Joomla, lis la doc de Joomla.
Sébastien Maccagnoni - https://www.maccagnoni.eu - https://www.domotego.com
Hors ligne
#18 Le 24/12/2015, à 14:16
- to94
Re : index.php pas affiché par apache !
Bah ça a rien changé sur l'affichage de la page tj la mm erreur
Ouep je vais aller sur leur forum
Hors ligne
#19 Le 24/12/2015, à 14:19
- pires57
Re : index.php pas affiché par apache !
A mon avis le process d'install de joomla cherche a créer un fichier quelque part dans le répertoire de ton site et n'a pas les droits.
Vive les CMS hein ...
Utilisateur d'Archlinux, Ubuntu et Kali Linux
Administrateur système et réseau spécialisé Linux.
LinkedIn
Hors ligne
#20 Le 24/12/2015, à 14:33
- to94
Re : index.php pas affiché par apache !
Oui bon après c'est juste pour démontrer une faille de sécurité de la version Joomla 2.5 donc c'est pas super important.
Hors ligne
Pages : 1