Is anyone still using thePHP MySQL interface
Posted: Tue Mar 12, 2019 7:39 pm
PHP deprecated the mysql API in version 5.5 and has removed it as of version 7.0. netPhotoGraphics has also deprecated its support for the mysql interface. Installations should be using the mysqli or pdo_mysql database interface by now. you can check your zenphoto.cfg.php file for the line if this line reads MySQL instead, you should edit it to be MySQLi.
I would like to remove the code supporting the mysql API from netPhotoGraphics. If no one is using it I can do that sooner rather than later.
Code: Select all
$conf['db_software'] = 'MySQLi';
I would like to remove the code supporting the mysql API from netPhotoGraphics. If no one is using it I can do that sooner rather than later.