Error messages in WP 4.7.3
-
Using SQLite as a database for WordPress I stumbled upon a few error messages with this plugin. I fixed it with the following two tweaks, which seem to have fixed the issues.
1) Replaced deprecated function
get_currentuserinfo()
with the new functionwp_get_current_user()
in the file.../plugins/sqlite_integration/sqlite_integration.php
on line 3829 (plugin version 1.8.1). This might only be relevant for WordPress 4.5 and higher.2) Added the line
$options = array();
in line 145 right before the
foreach ($compile_options as $opt) {
loop. This takes care of a seemingly empty return of theget_results("PRAGMA compile_options");
function call.
- The topic ‘Error messages in WP 4.7.3’ is closed to new replies.