Page 1 of 1

how do I start phpMyAdmin ?

PostPosted: 26. March 2011 13:24
by fireant007
I have installed the full install of 1.7.4 for windows.

I have been developing my site on it just fine .. but

Just how do I start phpMyAdmin ?

When I type in http://localhost/phpMyAdmin/ it should start right ?

I 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.

If you think this is a server error, please contact the webmaster.
Error 404
localhost
03/26/11 20:05:33
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1

Re: how do I start phpMyAdmin ?

PostPosted: 26. March 2011 13:30
by Sharley
fireant007 wrote:When I type in http://localhost/phpMyAdmin/ it should start right ?
No because most things in XAMPP are case sensitive so try:
http://localhost/phpmyadmin/

The Alias for phpMyAdmin is located in \xampp\apache\conf\extra\httpd-xampp.conf file near line 98 and it will show you the correct case to use.
httpd-xampp.conf wrote: Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
</Directory>



Tip to help save confusion, make everything including folder and file names all lower case when developing in XAMPP.

Good luck. :)

Re: how do I start phpMyAdmin ?

PostPosted: 26. March 2011 13:55
by fireant007
Solved ....

lowercase ... DOH !....

Thanks Sharley !