Bonjour,

Après une installation réussi de symfony 1.2.4 sous ubuntu 8.10 (LAMP), je n'ai pas mes images sachant que je l'ai bien pointé vers web/sf

quelqu'un pourrait-il m'aider ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
NameVirtualHost 127.0.0.3:8080
 
Listen 127.0.0.3:8080
 
<VirtualHost 127.0.0.3:8080>
	DocumentRoot "/home/jm/workspace/jobeet/web"
	ServerName jobeet
	DirectoryIndex index.php
	<Directory "/home/jm/workspace/jobeet/web">
		#Options Indexes FollowSymLinks MultiViews
		AllowOverride All
		#Order allow,deny
		allow from all
	</Directory>
 
	#Alias /sf "/usr/share/php/symfony/data/web/sf"
	#<Directory "/usr/share/php/symfony/data/web/sf">
	Alias  /sf "/home/jm/workspace/jobeet/lib/vendor/symfony/data/web/sf"
	<Directory "/home/jm/workspace/jobeet/lib/vendor/symfony/data/web/sf">
		AllowOverride All
		Allow from    All
	</Directory>
</VirtualHost>
Merci.