Bonjour,
J'ai installe Symfony sous MAMP. Jusque la pas de soucis.
Je cree un projet, une appli, et la
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.
Donc oui, ca a marche, mais je n'obtiens aucune image.
J'ai ete verifier les logs d'apache, rien. Je ne sais pas d'ou ca vient.
sur le fichier httpd.conf j'ai ajoute a la fin un virtualhost sous cette forme :
# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8888
# This is the configuration for VandA
Listen 127.0.0.1:8888
<VirtualHost 127.0.0.1:8888>
ServerName VandA.localhost
DocumentRoot "/Users/work/projects/myproject/web"
DirectoryIndex index.php
<Directory "/Users/work/projects/myproject/web">
AllowOverride All
Allow from All
</Directory>
Alias /sf "/Applications/MAMP/bin/php5/lib/php/data/symfony/web/sf"
<Directory "/Applications/MAMP/bin/php5/lib/php/data/symfony/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>