• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[gelöst] PHPmyAdmin geht nicht

gTux

Member
Hallo,
ich habe meinen Suse Server installiert.

Folgende Pakete:
apache2
php5
apache2-mod_php5
php5-gd
mysql-community-server
php5-mysql
phpMyAdmin

Ich komme aber nicht auf den phpMyAdmin - http://localhost/phpmyadmin oder http://192.168.x.x/phpmyadmin

Die config Datei von phpmyadmin.
Code:
# cat /etc/apache2/conf.d/phpMyAdmin.conf
<Directory /srv/www/htdocs/phpMyAdmin>
  Options FollowSymLinks
  AllowOverride None
  <IfModule mod_php5.c>
    php_admin_flag register_globals off
    php_admin_flag magic_quotes_gpc off
    php_admin_flag allow_url_include off
    php_admin_flag allow_url_fopen off
    php_admin_flag zend.ze1_compatibility_mode off
    php_admin_flag safe_mode Off
    php_admin_value open_basedir "/srv/www/htdocs/phpMyAdmin:/var/lib/php5:/tmp:/usr/share/doc/packages/phpMyAdmin:/etc/phpMyAdmin"
    # customize suhosin
    php_admin_value suhosin.post.max_array_index_length 256
    php_admin_value suhosin.post.max_totalname_length 8192
    php_admin_value suhosin.post.max_vars 2048
    php_admin_value suhosin.request.max_array_index_length 256
    php_admin_value suhosin.request.max_totalname_length 8192
    php_admin_value suhosin.request.max_vars 2048
  </IfModule>
</Directory>
<Directory /srv/www/htdocs/phpMyAdmin/libraries>
  Order allow,deny
  Deny from all
</Directory>

Der Apache und mysql laufen jedenfalls...
 
OP
G

gTux

Member
Ach du Schande - blöd. Hätte nicht gedacht, dass die Schreibweise auch hier was bringt. Danke!
 
Oben