1

I'm trying to install and configure Symfony2 on my server. My website is on a shared hosting plateform therefore have limited access to root level, apache & php.ini files...

I downloaded then extracted symfony2 files on my dev environment:

 www/
 dev/
     symfony/
              app/
              bin/
              web/
              ...

When I navigate to http://dev.mydomain.com/symfony/web/config.php I get some recommendations:

  1. Install and enable a PHP accelerator like APC (highly recommended).
  2. Upgrade your intl extension with a newer ICU version (4+).
  3. Set short_open_tag to off in php.ini*.
  4. Set magic_quotes_gpc to off in php.ini*.

Being on a shared hosting plateform I'm not allowed to modify/download the necessary files to fix those recommendations (which I believe shouldn't block the install).

I follow the link "Bypass configuration and go to the Welcome page" which sends me to http://dev.mydomain.com/symfony/web/app_dev.php/

The server throws a 500 Internal Server Error.

Any advice on how to fix that issue would be very much appreciated.

Thanks,

John

3
  • Which error exactly is it? It should have more specific details Commented Dec 31, 2011 at 9:08
  • If the error is displayed in a Symfony2 style error page, it is Symfony2 related. If it is a classic Apache error, you should check apache logs. /var/log/apache2/error.log on Mac & Linux generally. Commented Dec 31, 2011 at 12:02
  • By the way, are you sure there is a route defined for /? Commented Dec 31, 2011 at 12:03

1 Answer 1

4

When it happened to me I forgot to tell my FTP client to transfer also invisible file (.htaccess) OR permissions on /web folder are not correct

Sign up to request clarification or add additional context in comments.

1 Comment

I updated the permissions on the .htaccess (755) file in the web folder and everything works fine now. Thanks all for your responses.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.