• There was already topic about this error Warning message returned in footer
    But it’s closed, so I suggest my solution to remove Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in mysite\wp-content\plugins\wp-roundabout-pro\index.php on line 151

    It can be cured by next steps:
    1. Dashboard -> Plugins -> Editor
    2. At top right Select plugin to Edit – WP Round About Pro
    3. Check if wp-roundabout-pro/index.php is selected
    4. Comment code from line 148 to 158:
    from /*function footer_linking_data(){
    to
    add_action(‘wp_footer’, ‘footer_linking_data’,1);*/

    You can do this because this piece of code just add link to the footer and variable $settingsxx(where error is happened) not used anywhere in this plugin.
    5. Press “Update File” button

    Remarks: This is applicable to index.php for version 4.1(which is not updated more than a year)

    https://www.ads-software.com/plugins/wp-roundabout-pro/

Viewing 1 replies (of 1 total)
  • Hi elshev,
    Please try this one.

    1 : rbt-settings.php Line No . 37
    if($res === FALSE) {
    die(mysql_error()); // TODO: better error handling
    }
    else{
    while($row = mysql_fetch_array($result))
    {
    }
    }
    It gives Error Database Connection.
    Please check this plugin have get data from connection object o.w try with new connection.php file include into the index.php @ path wp-content\plugins\wp-roundabout-pro.

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean’ is closed to new replies.