tags:

views:

43

answers:

1

Hi,

I have deployed my symfony app into a shared server. The problem: for example, the images and the .css of the default page that says

ok
Symfony Project Created
Congratulations! You have successfully created your symfony project.

Project setup successful
...

are not loaded.

I read this but it's not enough for me..

What should I do?

Regards

Javi

+1  A: 

You may need to symlink from your web directory to the symfony data directory. In a standard Symfony install, with Symfony inside of your lib/vendor directory, it would look like this:

ln -s ../lib/vendor/symfony/data/web/sf/ sf

Alternatively, you can add an Alias for sf in your Apache config.

jeremy