Hi guys,
Things are going OK on my OpenWrt-powered LAMP stack but I'd appreciate input from anyone working with PHP7.
The wiki LAMP page reads:
<snip>
To enable MySQL in PHP install
opkg install php5-mod-mysql
and load the mysql.so module in /etc/php.ini
sed -i 's,;extension=mysql.so,extension=mysql.so,g' /etc/php.ini
To use the MySQLi module in PHP install
opkg update
opkg install php5-mod-mysqli
and load the mysqli.so module in /etc/php.ini
sed -i 's,;extension=mysqli.so,extension=mysqli.so,g' /etc/php.ini
</snip>
PHP7 seems to handle extensions differently. Can anyone confirm how the corresponding entries in the PHP7 php.ini file should look?
Best, NP.