When I launch a phpmyadmin in browser, I have the next response from the server: Forbidden: You don't have permission to access /pma on this server.
What I need to change in my configuration settings? Perhaps, I need to do some changes in .htaccess, what locates in phpmyadmin directory, don't I?
My current changes in httpd.conf are the next:
Code: Select all
<Directory "e:/bin/apache/localhost/www/phpMyAdmin">
Options FollowSymlinks MultiViews
AllowOverride all
AllowOverride FileInfo
Order deny,allow
Allow from all
</Directory>
Code: Select all
<IfModule alias_module>
Alias /pma "E:/bin/apache/localhost/www/phpmyadmin"
</IfModule>
1) Apache 2.2.9
2) Mysql 5.0.67 community nt
3) PHP 5.2.6
4)PhpMyAdmin 2.11.8
Thanks!