Issue setting up phpMyAdmin!!

Associate
Joined
6 Mar 2009
Posts
495
I have configured phpMyAdmin on a small web server running windows 2003 server edition. I have read through tutorial on how to do it online. Everything went well until i tried to open it throght the browser!

Setting it up through IIS under default web page etc.

I type in - http://(server address)/phpmyadmin and i keep getting the same error. HTTP 403 Forbidden - The website declined to show this webpage

Any ideas whats up??

Thanks
 
Have you got it set up as part of a site under IIS Manager? Is the directory security set up properly? Is the rest of the site working under the same host header?
 
Yea i have it under as part of default web site in ISS Manager. The default site itself is working ok. As for directory security im not sure what you mean?? Permissions are all ok if thats what you mean.
 

That isn't a nice guide it's old now.

Make a new PHP file called 'phpinfo.php', put this code into it and save it in your default web folder, (wwwroot) run it through your browser and tell us what is displayed (or screenshot) http://localhost/phpinfo.php

PHP:
<?php

// Show all information, defaults to INFO_ALL
phpinfo();

?>

You are best off installing PHP 5.3 (5.3.14) MSI package, which installs everything you need by default.
Also install PHP manager for IIS.
 
Last edited:
To get MYSQL / PHP installed it isn't as hard as them instructions you followed.

I already have a distribution pack that will work fine.
http://sdrv.ms/M90f3J

1) Install IIS (Default) [Windows Features]
2) Install PHP (Default) [PHP 5.3 (5.3.14)]
3) Install PHP Manager for IIS (Default)
4) Install MYSQL (Default) [Set Username + Password]
5) Install 7zip (default) [To unzip files]
6) Install Notepad ++ (Default) [To edit files]
7) Install PHPmyadmin (Default) (Unzip to dir)
 
Last edited:
Ok tried created the phpinfo file and ran it. Says page cannot be displayed!!

I will try your distribution pack tommorrow when im back in work.

will let yous know how i get on.

Thanks for the help:)
 
Yea think they changed the file extension!

You where right about the PHP install wasn't quite correct so i used a different install.

Also had to set up a web service extention in IIS for PHP and it worked:)
 
Yea think they changed the file extension!

You where right about the PHP install wasn't quite correct so i used a different install.

Also had to set up a web service extention in IIS for PHP and it worked:)

Good stuff, glad it's working now. It's not as hard as you think it is. By default out the box I think I did 3 different installs to get all web services working. PHP/MYSQL/PHPMYADMIN
 
Back
Top Bottom