Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

working on port 81(wampserver)

Tags:

wampserver

I have recently installed wampserver 2.0 and configured it to work on port 81. Now the problem is that when I click on phpMyAdmin present at the taskbar inside wampserver 2.0 the browser redirects me to

localhost/phpmyadmin instead of localhost:81/phpmyadmin. When I manually type it, everything works fine.

How can I fix this thing? I want the browser to open localhost:81/phpmyadmin page instead of localhost/phpmyadmin when I click on phpMyAdmin.

like image 681
Prasoon Saurav Avatar asked Jan 23 '10 12:01

Prasoon Saurav


1 Answers

The configuration is stored in wampmanager.ini, located in the wamp installation directory.

This file is generated from wampmanager.tpl though, so you need to change the following line there:

Type: item; Caption: "${w_phpmyadmin}"; Action: run; FileName: "${c_navigator}"; Parameters: "http://localhost/phpmyadmin/"; Glyph: 5

You can even add your own menu items in there if you like.

You need to restart Wamp after changing this configuration, since wampmanager.ini needs to be re-generated.

like image 185
Peter Lang Avatar answered Oct 06 '22 14:10

Peter Lang