Hi Friends previously I am using XAMP Server but when I install joomla Templates it creates alots of error. Now I installed the WAMP, but the issues are: 1. I can access wit
Change in following file \bin\apache\apache2.2.22\conf\httpd.conf
Replace Listen 80 with Listen 0.0.0.0:80
Replace
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
with
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
Replace
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
with
Order Deny,Allow
Allow from all
Allow from 127.0.0.1
in \wamp\alias\phpmyadmin.conf replace
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
with
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
Tested on windows localhost. Note : Please consider RigsFolly's comment also.