I accidentally delete the default www root folder index.php for WAMP server all the time. So I keep a back up of the index.php
I uploaded my index.php if you want to restore.
http://www.mediafire.com/?yhdt1tz2cjn
Showing posts with label wamp server. Show all posts
Showing posts with label wamp server. Show all posts
Thursday, June 10, 2010
Sunday, June 7, 2009
How to fix You don't have permission to access /phpmyadmin/ on this server Wamp
You don't have permission to access /phpmyadmin/ on this server (WAMP)
This is the message I got when I tried to access phpmyadmin after reinstalling WAMP server to a newer version. After some searching I was able to find the problem.
Reason:
When you uninstall your previous WAMP server there will be still few files that will be left not deleted and will not be replaced by the new install. One such file is the phpmyadmin.conf file that is under C:\wamp\alias folder. This file holds the actual path to the phpmyadmin folder inside WAMP.
If the new WAMP server has a new phpmyadmin version this phpmyadmin.conf will still point to the old folder which is not existing inside WAMP.
Solution:
goto C:\wamp\alias\ and edit the phpmyadmin.conf file using notepad
I just edited the c:/wamp/apps/phpmyadmin2.11.6/ with c:/wamp/apps/phpmyadmin3.1.3.1/
To find your new phpmyadmin folder goto C:\wamp\apps\
Now restart the WAMP server and try to access phpmyadmin
This is the message I got when I tried to access phpmyadmin after reinstalling WAMP server to a newer version. After some searching I was able to find the problem.
Reason:
When you uninstall your previous WAMP server there will be still few files that will be left not deleted and will not be replaced by the new install. One such file is the phpmyadmin.conf file that is under C:\wamp\alias folder. This file holds the actual path to the phpmyadmin folder inside WAMP.
If the new WAMP server has a new phpmyadmin version this phpmyadmin.conf will still point to the old folder which is not existing inside WAMP.
Solution:
goto C:\wamp\alias\ and edit the phpmyadmin.conf file using notepad
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin2.11.6/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
<Directory "c:/wamp/apps/phpmyadmin2.11.6/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
I just edited the c:/wamp/apps/phpmyadmin2.11.6/ with c:/wamp/apps/phpmyadmin3.1.3.1/
To find your new phpmyadmin folder goto C:\wamp\apps\
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.1.3.1/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
<Directory "c:/wamp/apps/phpmyadmin3.1.3.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
Now restart the WAMP server and try to access phpmyadmin
Saturday, January 12, 2008
What is Wamp Server - Why we need it?
WAMP SERVER(WampServer) is a wonderful package for PHP developers.
Newest version of Wamp Server contains - Apache 2.2.6 - MySQL 5.0.45 - PHP 5.2.5 in one package so that developer are free from the headache of needing to configure them, which takes lot of time and effort for new developers. Wamp server take care of everything so that we only need to concentrate on coding. Simply fantastic!!!
Download Here:
http://www.wampserver.com
Newest version of Wamp Server contains - Apache 2.2.6 - MySQL 5.0.45 - PHP 5.2.5 in one package so that developer are free from the headache of needing to configure them, which takes lot of time and effort for new developers. Wamp server take care of everything so that we only need to concentrate on coding. Simply fantastic!!!
Download Here:
http://www.wampserver.com
Subscribe to:
Posts (Atom)