zohaib87
2/16/2015 - 4:59 AM

Wamp

Wamp

1. Go to wamp > bin > apache > conf

2. edit "httpd.conf" with notepad++

3. search for "documentroot" and replace "C:/wamp/www/"

4 search for "<Directory "C:/wamp/www/">" and replace "C:/wamp/www/"

5. search for:
<Directory />
    AllowOverride none
    Require all denied
</Directory>

6. and replace with:
<Directory />
    # AllowOverride none
    # Require all denied
	  Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>

7. now copy "favicon.ico", "index.php" & "testmysql.php" to the new folder that you have set

8. edit "index.php" with notepad++ and edit the path:
$wampConfFile = '../wampmanager.conf';
to
$wampConfFile = 'c:/wamp/wampmanager.conf';