Erro to run project

I creata a project on my localhost. Works ok.

But I’m trying to run my project on web host and I receive this error:

[b]PHP Core Warning – yii\base\ErrorException

PHP Startup: Unable to load dynamic library ‘/usr/lib/php/20151012/php_pdo_sqlite.dll’ - /usr/lib/php/20151012/php_pdo_sqlite.dll: cannot open shared object file: No such file or directory[/b]

How can I fix it?

This is a PHP issue not a Yii one. If you have access to your php.ini you need to verify the library giving the error actually exists in the path used in the php.ini (/usr/lib/php/20151012/php_pdo_sqlite.dll). If you do not have access to that you will need to contact your hosting company to have add the library.

What that means is that you probably can’t use SQLite on your host.

I enabled the sqllite and work very well.

Thanks