Apache kullanırken Symfony nasıl yapılandırılır

0 Cevap php

Please help, how do I configure apache (wamp) in windows when I want to use symfony as my php framework, I followed the guide(pdf) from the symfony site. But I end up with this when I access http://127.0.0.1:8080/: alt text

Ama bu ile sonuna kadar, erişmeye çalıştığınızda http://localhost/sfproject/web/frontend_dev.php alt text

Ben Symfony kullanmaya başlamak istediğinizde erişmek için doğru url nedir?

Ben Symfony yüklü:

C:\dev\sfproject\lib\vendor\symfony

Ve projeler şunlardır:

D:\Programs\wamp\www\sfproject

I added the lines below on my httpd.conf. I've done it by left clicking the wampserver tray icon->apache->httpd.conf I got the code below from the pdf file, and just modify it to match the directory.

#Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8080

#This is the configuration for your project
Listen 127.0.0.1:8080

<VirtualHost 127.0.0.1:8080>
    DocumentRoot "D:\Programs\wamp\www\sfproject\web"
    DirectoryIndex index.php
    <Directory "D:\Programs\wamp\www\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>

I also didn't install symfony using svn. I just copy pasted the downloaded symfony 1.4.zip. Then extracted the contents. It basically looks like this: alt text

Ben sadece bugün Symfony yükleyerek başladım, benim soruya cevap sınırı etmeyiniz. Eğer benim gibi bir acemi için söylemek bir şey var ise, o zaman, teşekkürler lütfen.

0 Cevap