.htaccess & X1

vassago

Membre actif
22 Novembre 2000
124
1
46
www.presta-module.com
Hello a tous,

bon j'ai bien rigolé en lisant les "quelques" lignes de vos galères pour installer Apache, PHP et MySQL
grin.gif

Pour ma part, j'ai réussi en 1 heure
grin.gif
grin.gif


Maintenant c'est à vous de vous foutre de ma gueule
wink.gif
:
Je souhaite mettre en place un fichier .htaccess sur mon serveur local.
Après un premier refus, je me suis bien documenté, et il doit y avoir quelque chose qui cloche dans ma config puisque ca ne marche pas chez moi.

Voici mon intervention :

1. création d'un fichier htaccess sur BBEdit
--
AuthUserFile /Library/WebServer/.htpasswd
AuthGroupFile /dev/null
AuthName "identification"
AuthType Basic
<Limit GET POST>
order deny,allow
require valid-user
</Limit>

2. création du fichier htpasswd sur Shell
--
htpasswd -c /Library/WebServer/.htpasswd nom_utilisateur
password
repeat password

3. renomme htaccess en .htaccess sur Shell
--
mv htaccess .htacess

4. modification de httpd.conf
--
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>

en

<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>

5. restart apache par Shell
--
sudo apachectl restart

6. connexion http://localhost
--
INTERNAL ERROR 500
grin.gif
grin.gif


7. modification httpd.conf
--
<Directory "/Library/WebServer/Documents">
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>

8. restart apache

9. connexion http://localhost
--
OK, mais accès libre sans passwd

C où kel é ma boulette ???