Installation phpmyadmin

1

I'm trying to install phpmyadmin on a computer running apache 1.3.27. I did the installation normally, but when I try to access the phpmyadmin link the following error appears:

  

The requested URL / phpmyadmin / was not found on this server.   Apache / 1.3.27 Server at localhost Port 80

I did the installation normally by changing the config.inc.php as it walks everywhere. I'm using Windows

obs: I know that StackOverflow is not the ideal place for this, but I do not think anything on the internet and it is a well used development tool, maybe someone has had the same problem. / p>     

asked by anonymous 19.10.2017 / 13:34

2 answers

0

So I just put the phpMyAdmin folder inside the EasyPHP WWW and it worked.

    
16.11.2017 / 13:53
3

/ * UPDATE * /

Go to the Apache config (httpd.conf) and below Alias / home / mysql "$ {path} / phpmyadmin add this line:

Alias /mysql "${path}/phpmyadmin" 

/ * OLD * /

Try these commands:

sudo -H gedit /etc/apache2/apache2.conf

At the end of the file add:

/etc/phpmyadmin/apache.conf

Then restart apache with:

/etc/init.d/apache2 restart

Is it linux or windows?

    
19.10.2017 / 13:43