Cette réponse est pour XAMPP sur Ubuntu.
Le manuel d'installation et de téléchargement se trouve sur (site officiel)
http://www.apachefriends.org/it/xampp-linux.html
Après avoir démarré XAMPP, il suffit d'appeler cette commande :
sudo /opt/lampp/lampp start
Vous devriez maintenant voir quelque chose comme ceci sur votre écran :
Starting XAMPP 1.8.1...
LAMPP: Starting Apache...
LAMPP: Starting MySQL...
LAMPP started.
Si vous avez ce
Starting XAMPP for Linux 1.8.1...
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Starting ProFTPD...
XAMPP for Linux started
. La solution est
sudo /etc/init.d/apache2 stop
sudo /etc/init.d/mysql stop
Et le reste avec sudo //opt/lampp/lampp restart
Pour corriger la plupart des faiblesses de sécurité, il suffit d'appeler la commande suivante :
/opt/lampp/lampp security
Après le changement de ce fichier
sudo kate //opt/lampp/etc/extra/httpd-xampp.conf
Recherche et remplacement sur
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8
Allow from all
#\
# fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
# fe80::/10 169.254.0.0/16
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
0 votes
L'erreur semble très explicite. Avez-vous essayé de modifier le fichier
httpd-xampp.conf
fichier ?4 votes
Oui, mais je me demande ce qu'il faut faire exactement là.
0 votes
Suivez le lien de façon claire et concise yeslinux.blogspot.com/2012/07/
0 votes
@ChrisSalij : Non, ce n'est pas très explicite. Il ne dit pas où se trouve le fichier. Essayez de le trouver
0 votes
Mon conseil : à la fin de httpd-xampp.conf, supprimez 'xampp' de telle sorte que vous obteniez : <LocationMatch "^/(?i :(?:security|licenses|phpmyadmin|webalizer|server-status|server-info))"> Requérir un ErrorDocument local 403 /error/XAMPP_FORBIDDEN.html.var </LocationMatch> au lieu de #<LocationMatch "^/(?i( ? :xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"> # Requiert local # ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var #</LocationMatch> maintenant seules vos pages web/php sont visibles, et non les pages d'administration.