Object not found | EasyPHP | MySQL | phpMyAdmin

After installing EasyPHP, when you try to run phpMyAdmin you might get the following error:

Object not found!

The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

This might be due to the fact that it tries the following URL:

https://127.0.0.1/mysql/

Try this one instead:

https://127.0.0.1/home/mysql/

If it works then you can work it out by adding the following line to the httpd.conf file of Apache (you can find it under the %EASYPHP_HOME%/apache/conf path, where %EASYPHP_HOME% is the home directory of your EasyPHP installation). Open the file with a text editor and look up the following string: Alias /home/mysql

You should find something similar to the following line:

 
Alias /home/mysql "C:/Program Files/EasyPHP 3.0/phpmyadmin"

Just add, to the next line, the following string:

 
Alias /mysql "C:/Program Files/EasyPHP 3.0/phpmyadmin"

Restart EasyPHP. Now try to open https://127.0.0.1/mysql/. It should work.