Forum Moderators: phranque
<VirtualHost 127.0.0.1:8082>
DocumentRoot "C:\Program Files\Zend\magento"
ServerName localimall.dev
ServerAlias [localimall.dev...] *.localimall.dev localimall.dev
ErrorLog "C:\Program Files\Zend\magento\logs\error.log"
CustomLog "C:\Program Files\Zend\magento\logs\access.log" combined
<Directory "C:\Program Files\Zend\magento">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
and added the domain in the system32/drivers/etc/hosts file
#127.0.0.1 localhost
#::1 localhost
127.0.0.1 localimall.dev
NameVirtualHost *:8082
<VirtualHost 127.0.0.1:8082>
DocumentRoot "C:\Program Files\Zend\Apache2/htdocs"
ServerName localhost
</VirtualHost>
# ....
#.....
and uncommented the localhost below
127.0.0.1 localhost
::1 localhost
127.0.0.1 localimall.dev
NameVirtualHost 127.0.0.1:8083
Listen 8083
#<VirtualHost 127.0.0.1:8082>
# DocumentRoot "C:\Program Files\Zend\Apache2/htdocs"
# ServerName localhost
#</VirtualHost>
<VirtualHost *:8083>
DocumentRoot "C:\Program Files\Zend\magento/"
#ServerName localimall.dev
#ServerAlias [localimall.dev...] *.localimall.dev localimall.dev
ErrorLog "C:\Program Files\Zend\magento\logs\error.log"
CustomLog "C:\Program Files\Zend\magento\logs\access.log" combined
<Directory "C:\Program Files\Zend\magento/">
#Options Indexes FollowSymLinks
AllowOverride All
#Order allow,deny
Allow from all
</Directory>
</VirtualHost>
DirectoryIndex index.php
<IfModule mod_php5.c>
# php_value memory_limit 64M
php_value memory_limit 128M
php_value max_execution_time 18000
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode Off
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_deflate.c>
text/css text/javascript
</IfModule>
<IfModule mod_ssl.c>
SSLOptions StdEnvVars
</IfModule>
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
#RewriteBase /magento/
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
</IfModule>
AddDefaultCharset Off
#AddDefaultCharset UTF-8
<IfModule mod_expires.c>
ExpiresDefault "access plus 1 year"
</IfModule>
Order allow,deny
Allow from all