phpMyAdmin Aufruf unter Confixx

  • Thread starter Thread starter Briese
  • Start date Start date
B

Briese

Guest
Hallo,
ich grüble und Google nun schon den ganzen Tag, aber die passende Antwort hab ich leider nicht gefunden.

Daher nun mein Post hier.

Wenn ich per Confixx "phpMyAdmin" aufrufen will kommt ein Error 500 wie folgt:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

In der "error.log" findet man folgendes:
[Sat Aug 11 15:34:58 2007] [error] [client 66.249.65.244] File does not exist: /var/www/confixx/html/gesperrt/logd

Was kann ich dagegen machen ?

Ich danke euch.

Nachtrag:
Es handelt sich um ein Debian4 System mit PHP5 und mySQL5. Was mich noch wundert, ist diese IP bei "client"! Ist nicht meine und auch nicht die vom Server.

Nachtrag II:
Der phpMyAdmin Pfad ( Confixx Adminbereich ) liegt auf ../../phpmyadmin

phpmyAdmin ist unter var/www als Verknüpfung zum Verz. usr/share/phpmyadmin zu finden
 
Last edited by a moderator:
Hm,
mir is da nochwas aufgefallen.

Im phpmyadmin Verz. liegt eine "htaccess" mit folgendem Inhalt:
DirectoryIndex index.php
Options +FollowSymLinks -Indexes

<IfModule mod_mime.c>
<IfModule mod_php4.c>
AddType application/x-httpd-php .php

php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
<IfModule mod_php5.c>
AddType application/x-httpd-php .php

php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
<IfModule !mod_php4.c>
<IfModule !mod_php5.c>
<IfModule !mod_fastcgi.c>
<IfModule !mod_fcgid.c>
<IfModule mod_actions.c>
<IfModule mod_cgi.c>
AddType application/x-httpd-php .php

Action application/x-httpd-php /cgi-bin/php
</IfModule>
<IfModule mod_cgid.c>
AddType application/x-httpd-php .php

Action application/x-httpd-php /cgi-bin/php
</IfModule>
</IfModule>
</IfModule>
</IfModule>
</IfModule>
</IfModule>
</IfModule>

# Deny config.inc.php file
<Files config.inc.php>
Order deny,allow
Deny from all
</Files>

# Authorize for setup
<Files setup.php>
# For Apache 1.3 and 2.0
<IfModule mod_auth.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
# For Apache 2.2
<IfModule mod_authn_file.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
Require valid-user
</Files>

Bennene ich die "htaccess" um, komm ich zum Login von phpmyadmin und kann mich einlogen.

Versetze ich die htaccess wieder in den Ursprungszustand, kommt wieder der besagte 500´er Error.
 
Last edited by a moderator:
Back
Top