I just installed apache2 server php5, mysql and phpmyadmin today and I cant the access to myphpadmin through localhost/myphpadmin is denied.
I first changed the folder /etc/apache2/conf.d/phpmyadmin.conf in order to allow 127.0.0.1 see below
# phpMyAdmin default Apache configuration
Alias /****** /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options FollowSymLinks
DirectoryIndex index.php
<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_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/
</IfModule>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
[...]
then I also changed the rules inside /usr/share/phpmyadmin/config.sample.inc.php in order to make [AllowNoPassword]to true.
I dont know what to do in order to allow myphpadmin to access apache2?
Thank you for your response.