I am trying to install cakePHP 3.0.0 with WT-NMP, but I received this message:
CakePHP CANNOT connect to the database.
Cake \ Database \ Driver \ Mysql database driver cannot be used due to missing PHP extension or unsatisfied dependency
my php.ini has the following:
extension = php_bz2.dll extension = php_curl.dll extension = php_gd2.dll extension = php_imap.dll extension = php_mbstring.dll extension = php_exif.dll extension = php_mysql.dll extension = php_mysqli.dll extension = php_pdo_mysql.dll extension = php_pdo.dll extension = php_soap.dll extension = php_sockets.dll extension = php_sqlite3.dll extension = php_openssl.dll extension = php_fileinfo.dll extension = php_intl.dll
app.php has this
'default' => [ 'className' => 'Cake\Database\Connection', 'driver' => 'Cake\Database\Driver\Mysql', 'persistent' => false, 'host' => 'localhost', 'port' => '3306', 'username' => 'root', 'password' => '', 'database' => 'test', 'encoding' => 'utf8', 'timezone' => 'UTC', 'cacheMetadata' => true,
What am I missing? or is it cakePHP 3.0 error? OR anything related to WT-NMP. I was stuck all day.
source share