bonsoir a tous
j'ai arrivé a créer mon projet (jobeet) j 'ai aussi créer une application(frontend)
mais je n'arrive pas a configuré apache
j'ai trouvé deux fichier httpd.conf et j'ai les modifier les duex comme suit
[code]
# C'est la configuration pour votre projet
Listen 127.0.0.1:8080
<VirtualHost 127.0.0.1:8080>
DocumentRoot "c:\developpement\sfprojects\jobeet\web"
DirectoryIndex index.php
<Directory "c:\developpement\sfprojects\jobeet\web">
AllowOverride All
Allow from All
</Directory>
Alias /sf "c:\developpement\sfprojects\jobeet\lib\vendor\symfony\data\web\sf"
<Directory "c:\developpement\sfprojects\jobeet\lib\vendor\symfony\data\web\sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
mais le navigateur m'affiche tous jours
Erreur 102 (net::ERR_CONNECTION_REFUSED) : Erreur inconnue
Partager