I wrote a little site with Symfony2 and I want to host it on my WebSpace. I only have FTP access, so I can not access any console/terminal!
Problem is: Symfony cannot create the cache directory properly! There might be a permission problem still?!
These are y steps so far:
- Uploading my whole project with empty Cache directory (since I can't clean it due to no console)
- Changing permissions of cache and logs directories using my ftp client
- unmasking console, app.php and app_dev.php like explained here
- Adding my IP to the whitelist in the files: config.php and app_dev.php
- Checking the config.php to see if my configuration meets symfony's requirements (they do! no major problems!)
- Checking PHP settings: PHP 5.3.3-7, SQLite3 and PDO-Driver there!
Opening
app_dev.php/_configurator/step/0concludes into a RuntimeException:RuntimeException: Unable to create the cache directory (/var/www/userx/html/MySiteSymfony/app/cache/dev/twig/83/4c).Opening app.php results in a 500 server error and no log file is being created
Someone an idea how to get symfony working?