MySQL errors – mysql_fetch_row(): supplied argument is not a valid MySQL result
-
Form Manager Version 1.6.40
WP version: 3.5.1
Server: LinuxOn the main ‘forms’ admin page
e.g
/wp-admin/admin.php?page=fm-admin-mainSubmission count column shows this error:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /wp-content/plugins/wordpress-form-manager/db.php on line 1239Last Submission column shows this error:
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /wp-content/plugins/wordpress-form-manager/db.php on line 1248It appears to be inside
function getSubmissionDataNumRows($formID){
$dataTable = $this->getDataTableName($formID);
$q = “SELECT COUNT(*) FROM{$dataTable}
“;
$res = $this->query($q);
$row = mysql_fetch_row($res);
mysql_free_result($res);
return $row[0];
}https://www.ads-software.com/extend/plugins/wordpress-form-manager/
- The topic ‘MySQL errors – mysql_fetch_row(): supplied argument is not a valid MySQL result’ is closed to new replies.