Reputation: 15
I tried to install symfony1.4 on window-XP with xamp
i install symfony and create project. Helloword
When i open project in localhost. It give apache error.
I checked apache error log two error come:
First:It access permissions error. Second:Client denied by server configuration.
Thanks In advance project C:\xamp\htdocs\helloword\
also give CLI error when i create module under app
Upvotes: 1
Views: 140
Reputation: 2014
Hm, maybe try this:
instead of
<Directory "C:\wamp\www\helloword\web">
AllowOverride All
All Allow from All
</Directory>
this:
<Directory "C:\wamp\www\helloword\web">
AllowOverride All
Options FollowSymLinks +Indexes
Order allow,deny
Allow from all
</Directory>
and restart apache.
Upvotes: 1