PHP Symfony - connection has been reset (Windows)

I have configured Symfony 1.4 on Windows. My server is Wamp.

I am using a tutorial from the Symfony site. My httpd.conf file:

NameVirtualHost 127.0.0.1:8080
Listen 127.0.0.1:8080

<VirtualHost 127.0.0.1:8080>
  DocumentRoot "C:\dev\sfproject\web"
  DirectoryIndex index.php
  <Directory "C:\dev\sfproject\web">
    AllowOverride All
    Allow from All
  </Directory>

  Alias /sf c:\dev\sfproject\lib\vendor\symfony\data\web\sf
  <Directory "c:\dev\sfproject\lib\vendor\symfony\data\web\sf">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

      

My problem is when I try to show: http://127.0.0.1:8080/index.php/ I get: The connection has been reset .

More information on my configuration: * I installed symfony in my project directory * I have window 8 (client preview version) * My WAMP server is working correctly (green icon)

+3


source to share


2 answers


Try to run php symfony cc from cmd in your project. If you get an error in CLI you need to install XAMP or reinstall your php WAMP library



+2


source


Take a look here, I think the problem is that you haven't defined servername or you have entries for VHost post:



https://serverfault.com/questions/86972/the-connection-was-reset

0


source







All Articles