symfony - what changes need to do for working symfony_demo project? -


i downloaded symfony_demo project not able run properly.

i have symfony3 ,get following error if update schema :

[doctrine\dbal\exception\driverexception]
exception occured in driver: not find driver

[doctrine\dbal\driver\pdoexception]
not find driver

[pdoexception]
not find driver

doctrine:schema:update

i mention installed sqlite3 , tables shown there.

this default parameters.yml file :

parameters:     database_driver: 'pdo_mysql'     database_url: 'sqlite:///%kernel.root_dir%/data/blog.sqlite'             mailer_transport: smtp     mailer_host: 127.0.0.1     mailer_user:      mailer_password: null     locale: en     secret: secret_value_for_symfony_demo_application 

so please me. have been trying resolve 2 days.

with sqlite3 parameter database_driver should :

'pdo_sqlite'


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -