When I write command "php artisan migrate" from mysql connection,linux terminal gives this error :[PDOException] could not find driver
.
When I add to php.ini
extension=pdo.so
extension=pdo_mysql.so
, error has changing like this:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/pdo_mysql.so' - /usr/lib/php5/20121212/pdo_mysql.so: cannot open shared object file: No such file or directory in Unknown on line 0 PHP Warning: Module 'PDO' already loaded in Unknown on line 0
[PDOException]
could not find driver
How can we solve this issue?
Thanks