• 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 function wp_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 the get_results("PRAGMA compile_options"); function call.

    • This topic was modified 7 years, 8 months ago by Lord Nouda. Reason: added tags
  • The topic ‘Error messages in WP 4.7.3’ is closed to new replies.