You are not logged in.
Hi, I'm trying to run a LAMP server on ArchLinux and I have a problem with PhpMyAdmin.
I followed the Arch Wiki but I don't find the error.
https://wiki.archlinux.org/index.php/PhpMyAdmin
Systemd says I have an error in the line 7 of the httpd-phpmyadmin.conf file.
Alias /phpmyadmin "/usr/share/webapps/phpMyAdmin"
<Directory "/usr/share/webapps/phpMyAdmin">
AllowOverride All
Options FollowSymlinks
Order allow,deny
Allow from all
php_admin_value open_basedir "/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/"
</Directory>
It says Invalid command.
I guess I have to add something in the php.ini file or httpd.conf file, but I don't know what is it.
Last edited by ColdDistance (2013-04-27 16:17:58)
Offline
Alias /phpmyadmin "/usr/share/webapps/phpMyAdmin"
<Directory "/usr/share/webapps/phpMyAdmin">
AllowOverride All
Options FollowSymlinks
Order allow,deny
Allow from all
php_admin_value open_basedir "/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/"
</Directory>
Look the part /etc/webapps
You are missing a forward / Should be /etc/webapps/:/usr/share/pear/"
Offline
Sorry, I didn't post the solve from Google+.
I had no configured LoadModule php5_module modules/libphp5.so and Include conf/extra/php5_module.conf in my /etc/httpd/conf/httpd.conf file.
Offline