PHPTest project, first project created with Symfony.
- run composer
composer install
- create database user, password, ...
- update database user settings in
app/config/parameters.yml
- dump phptest.sql into database or create a new empty schema with
php bin/console doctrine:schema:update --force
- compyle simfony route
php bin/console cache:clear --env=prod --no-debug
- configure apache
- good luck
<VirtualHost *:80>
ServerName PHPTest
ServerAlias www.PHPTest.com
DocumentRoot C:\xampp\htdocs\PHPTest\web
<Directory C:\xampp\htdocs\PHPTest\web>
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
# uncomment the following lines if you install assets as symlinks
# or run into problems when compiling LESS/Sass/CoffeScript assets
<Directory C:\xampp\htdocs\PHPTest\web>
Options FollowSymlinks
</Directory>
ErrorLog C:\xampp\htdocs\PHPTest\project_error.log
CustomLog C:\xampp\htdocs\PHPTest\project_access.log combined
</VirtualHost>