Notice: The called constructor method for wp_widget is deprecated since version 4.3.0! User construct() instead.in /yourpath/wp-includes/functions.php line 3457
If debug is disabled in wp-config.php, message disappears, and plugin carries on working.
Thread Starter
vivhan
(@vivhan)
It’s: 5.5.43-0ubuntu0.12.04.1
which does seem to have support for utf8mb4
http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-3.html
Thread Starter
vivhan
(@vivhan)
After a bit of fiddling it looks like the solution is to changing the Database charset. From define(‘DB_CHARSET’, ‘utf8mb4’); to
define(‘DB_CHARSET’, ‘utf8’);
The first wordpress site (pre multisite activation) worked fine with utf8mb4, so I’m unsure why multisite on my system only seems to work if I change the the charset to utf8.