IT Engg
IT Engg

Reputation: 15

Symfony not installated on window xp with Xamp: give apache error

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

Answers (1)

denys281
denys281

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

Related Questions