WP complete backup error code appearing on WP 3.5 & WP3.5.1
-
Hello Ryan,
I dont know why but i dont arrive to make wp complete back up work on wordpress 3.5 & 3.5.1
when i try to back up it says the following information
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in www/wp-content/plugins/wp-complete-backup/wp-complete-backup.php on line 74 ?
do you know why im getting this error ?
function wpcomplete_tables($host,$user,$pass,$name,$dbbackup,$tables = ‘*’) {
$link = mysql_connect($host,$user,$pass);
mysql_select_db($name,$link);
if($tables == ‘*’){
$tables = array();
$result = mysql_query(‘SHOW TABLES’);
while($row = mysql_fetch_row($result)) {
$tables[] = $row[0];
}
line 74 is the one starting with while
Thanks for your help
Antoine
- The topic ‘WP complete backup error code appearing on WP 3.5 & WP3.5.1’ is closed to new replies.