OK, this is highly undesirable situation as you need to squash bugs one-by-one. It could be as benign as missing php module or some major httpd
misconfiguraion.
Some steps that should shed some light on the issue:
- Fire up the
Terminal
(you do have ssh
access, right?)
- Check logs (both
httpd
and symfony
)
httpd log:
tail -f /var/log/httpd/error_log
... and refresh your page
Symfony
tail -f /path-to-your-symfony-app/app/logs/prod.log
... again, refresh your page
In your comment, you said you encountered HTTP500
error. Is that Apache's or Symfony's HTTP500
?
If you do not hape ssh
access upload your app_dev.php
and run it directly. Be sure to add your IP address to list of allowed (within the file)
php app/console cache:clear --env=prod
or just remove everything manually in theapp/cache/
folder. – Triboelectricity