mecze sie z instalacja symfony 1.4 na serwerze wirtualnym w ovh

utworzylem sobie katalog z projektem , wiec sciezka wyglada tak:
Cytat
www/projekt/...


Cytat
..[apps]
[cache]
[config]
[lib] -> tu jest samo symfony w katalogu /lib/vendor/symfony/
etc


stworyzlem taki htaccess
  1. SetEnv PHP_VER 5
  2. Options +FollowSymLinks +ExecCGI
  3.  
  4. <IfModule mod_rewrite.c>
  5. RewriteEngine On
  6.  
  7. # we skip all files with .something
  8. RewriteCond %{REQUEST_URI} \..+$
  9. RewriteCond %{REQUEST_URI} !\.html$
  10. RewriteCond %{REQUEST_URI} !frontend_dev\.php
  11. RewriteRule .* - [L]
  12.  
  13. # we check if the .html version is here (caching)
  14. RewriteRule ^$ /index.html [QSA]
  15. RewriteRule ^([^.]+)$ /$1.html [QSA]
  16. RewriteCond %{REQUEST_FILENAME} !-f
  17.  
  18. # no, so we redirect to our front web controller
  19. RewriteRule ^(.*)$ /index.php [QSA,L]
  20. RewriteRule ^frontend_dev\.php/(.*)$ /frontend_dev.php [QSA,L]
  21.  
  22. </IfModule>
  23.  
  24. # big crash from our front web controller
  25. ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"[QSA,L]


do katalogu podpiea jets ubdomena: projekt.domena.pl

i dostaje blad 500 Internal Server Error



ktos moze mi poradzic jak to zainstalowac ?