Page 1 of 1

Is anyone still using thePHP MySQL interface

Posted: Tue Mar 12, 2019 7:39 pm
by stephenbillard
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

Code: Select all

$conf['db_software'] = 'MySQLi';
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.

Re: Is anyone still using thePHP MySQL interface

Posted: Tue Mar 12, 2019 8:25 pm
by Mates-K1
Using MySQLi... :) Can be removed for me...