PHPMyadmin xampp error

后端 未结 1 1474
误落风尘
误落风尘 2020-12-29 07:32

I\'m desperately trying to get phpmyadmin access on xampp for linux 1.8.0 for ubuntu 12.04 LTS. I know this is a common problem, but I have tried many threads across the we

相关标签:
1条回答
  • 2020-12-29 08:13

    I've found a solution here: http://www.apachefriends.org/f/viewtopic.php?f=17&t=50902&p=196185#p196185

    Edit /opt/lampp/etc/extra/httpd-xampp.conf and adding Require all granted line at bottom of block <Directory "/opt/lampp/phpmyadmin"> to have the following code:

    <Directory "/opt/lampp/phpmyadmin">
      AllowOverride AuthConfig Limit
      Order allow,deny
      Allow from all
      Require all granted
    </Directory>
    
    0 讨论(0)
提交回复
热议问题