Bonjour,

J'ai un gros souci avec Symfony, en fait j'ai réussi à créer un projet et je tombe sur la fameuse page qui raconte ceci :
Symfony Project Created
Congratulations! You have successfully created your symfony project.

Project setup successful
This project uses the symfony libraries. If you see no image in this page, you may need to configure your web server so that it gains access to the symfony_data/web/sf/ directory.
This is a temporary page
This page is part of the symfony default module. It will disappear as soon as you define a homepage route in your routing.yml.
What's next

* Create your data model
* Customize the layout of the generated templates
* Learn more from the online documentation
Cependant je n'ai pas d'images et je n'arrive pas à en avoir. J'ai pourtant rajouté ceci dans mon httpd.conf :
<VirtualHost *:80>
ServerName myapp.example.com
DocumentRoot "C:\wamp\www\sf_sandbox\web"
DirectoryIndex index.php
#Alias /sf C:\wamp\bin\php\php5.2.6\data\symfony\web\sf
<Directory "C:\wamp\bin\php\php5.2.6\data\symfony\web\sf">
AllowOverride All
Allow from All
</Directory>
<Directory "C:\wamp\www\sf_sandbox\web">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
C:\wamp\www\sf_sandbox\web est le chemin pour accéder à mon projet, comme écrit dans la documentation.

Je ne comprend vraiment pas d'où vient le problème et j'aurais besoin d'aide pour résoudre ça...

Merci.