Ich lauf hier gleich die Wände hoch! Ich will meinen Zugriff auf phpmyadmin auf das interne Netz, besser auf localhost beschränken...aber das wird nix. Und ich weiß nicht was das Problem ist.
Meine Schritte:
1. Ich hab das include aus der httpd.conf von apache entfernt, gle3ichzeitig einen deny,allow-Eintrag gesetzt.
Code: Alles auswählen
<Location /phpmyadmin/>
SetHandler phpmyadmin
Order deny,allow
Deny from all
Allow from 192.168.1
</Location>
- 192.168.1.0/255.255.255.0
- meine.domain.de
- localhost
probiert.
Kein Erfolg. Entweder ich wurde ausgeschlossen oder der Browser möchte das File laden (warum auch immer).
2. Änderungen rückgängig gemacht. /etc/phpmyadmin/apache.conf verändert und wieder include in die httpd.conf gesetzt
Code: Alles auswählen
Alias /phpmyadmin /usr/share/phpmyadmin
<DirectoryMatch /usr/share/phpmyadmin/>
Options +FollowSymLinks
AllowOverride None
order deny,allow
deny from all
allow from 192.168.1.0/255.255.255.0
<IfModule mod_php3.c>
php3_magic_quotes_gpc Off
php3_track_vars On
php3_include_path .
</IfModule>
<IfModule mod_php4.c>
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals On
php_value include_path .
</IfModule>
</DirectoryMatch>
Ich weiß nicht mehr weiter...weiß jemand von euch Rat? *Haare rauf*
Grüße
Fear