Configuration Checker
This script analyzes your system to check whether is ready to run Symfony applications.
Major problems
Major problems have been detected and must be fixed before continuing:
- Vendor libraries must be installed
Vendor libraries are missing. Install composer following instructions from http://getcomposer.org/. Then run "php composer.phar install" to install them.
- app/cache/ or var/cache/ directory must be writable
Change the permissions of either "app/cache/" or "var/cache/" directory so that the web server can write into it.
- app/logs/ or var/logs/ directory must be writable
Change the permissions of either "app/logs/" or "var/logs/" directory so that the web server can write into it.
Recommendations
Additionally, to enhance your Symfony experience, it’s recommended that you fix the following:
- Vendors should be installed in order to check all requirements.
Run the
composer install
command.