Is anyone still using thePHP MySQL interface

A forum for discussing possible new features or changes to netPhotoGraphics. But NOTE, only a formal request via the GitHub repository ticket system is tracked or responded to.
Post Reply
stephenbillard
Site Admin
Posts: 84
Joined: Tue Aug 14, 2018 6:33 pm
Location: Huntington Beach, CA, USA

Is anyone still using thePHP MySQL interface

Post 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.
-Stephen
Mates-K1
Posts: 26
Joined: Tue Aug 28, 2018 9:43 pm
Location: Ústí nad Orlicí, Czech Republic

Re: Is anyone still using thePHP MySQL interface

Post by Mates-K1 »

Using MySQLi... :) Can be removed for me...
Post Reply