• Hi, I am currently using this plugin with wordpress version 3.04, using PHP version 5.3.0. When I first installed the plugin I was getting a 101 error and no pages were able to display. I traced the bug to the function get_fields in slideshow_gallery_plugin.php and replaced the code on line 411
    if (($tablefields = mysql_list_fields(DB_NAME, $fullname, $wpdb -> dbh)) !== false) {

    with
    if (($tablefields = mysql_query("SHOW COLUMNS FROM ".$fullname)) !== false) {

    Hope this helps anyone else who runs into this problem 🙂

    Cheers,
    Rory

The topic ‘[Plugin: Slideshow Gallery] Deprecated "mysql_list_fields" function’ is closed to new replies.