wrohr-Forums
Debian und phpMyAdmin - Druckversion

+- wrohr-Forums (http://wrohr.bplaced.net/MyBB)
+-- Forum: Freie Foren (http://wrohr.bplaced.net/MyBB/forumdisplay.php?fid=1)
+--- Forum: Linux (http://wrohr.bplaced.net/MyBB/forumdisplay.php?fid=4)
+--- Thema: Debian und phpMyAdmin (/showthread.php?tid=100)



Debian und phpMyAdmin - admin - 01.02.2024

Bei der Installation von phpMyAdmin auf Debian kann es vorkommen, dass eine Datei fehlerhaft oder gar nicht konfiguriert wird.

Unter /etc/apache2/conf-available muss sich die Datei phpMyAdmin.conf mit folgenden Inhalt befinden:
Code:
<Directory /usr/share/phpmyadmin>
Options SymLinksIfOwnerMatch
DirectoryIndex index.php
<IfModule mod_php.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_admin_flag allow_url_fopen Off
php_value include_path .
php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext
</IfModule>
</Directory>