Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bibber

    (@bibber)

    I just tried to make an update of the plugin – resulting in deleting of all the slides :(((((

    Thread Starter bibber

    (@bibber)

    The problem has been resolved. It was due to a depreciated code in the satellite-slideshow-plugin.php:

    Replace with this:

    function get_fields($table = null) {
    global $wpdb;

    if (!empty($table)) {
    $fullname = $table;

    if (($tablefields = $wpdb->get_results( ‘SHOW COLUMNS FROM ‘.$table, OBJECT )) !== false) {
    $columns = count($tablefields);
    $field_array = array();
    for ($i = 0; $i < $columns; $i++) {
    $fieldname = $tablefields[$i]->Field;
    $field_array[] = $fieldname;
    }

    return $field_array;
    }
    }
    return false;
    }

    Thread Starter bibber

    (@bibber)

    Resolved

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Mysql error with Satellite’ is closed to new replies.