Search code examples
kohanakohana-3kohana-orm

kohana data base connection error


Database_Exception [ 8192 ]: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead My project is working fine in window+php 5.4, but for ubuntu+php5.5, it is creating problem. Any suggestions..?


Solution

  • Look here: http://php.net/manual/en/migration55.deprecated.php

    MySQL extension is deprecated in php 5.5. You are probably using MySQL extension, it is time to change it to MySQLi or PDO as error is telling you.

    That should be helpfull: Kohana 3.3 not using MySQLi driver

    You can use: https://github.com/Azuka/Kohana-Database-MySQLi

    Just put that class in you modules.

    MODPATH/mysqli
    

    Enable mysqli module in boostrap.php:

    'mysqli'  => MODPATH.'mysqli',
    

    Change in you database.php config file:

    'type'       => 'mysql',
    

    to

    'type'       => 'mysqli',