i have developed website in cakephp 2.6.10 and on server where php version is 7.3 , it is giving errors http://tradeskills-recruitment.co.uk/ and i contacted support team, they said to use PDO or MySqli extension.. but after searching on google i get to know that cakephp 2.x already uses PDO by default.. Although it is like this
class DATABASE_CONFIG {
public $default = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'test_host',
'login' => 'test_user',
'password' => 'test_pwd',
'database' => 'test_db',
'prefix' => '',
//'encoding' => 'utf8',
);
public $test = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'user',
'password' => 'password',
'database' => 'test_database_name',
'prefix' => '',
//'encoding' => 'utf8',
);
}
Please help me in resolving this issue.. Thanks to all..!!