Hello,
I'm running this site: http://aer-liber.ro/magazin and as you can see I got one error, multiple lines there. Those errors appeared just by 12sept, and I`m sure I didn't do anything, I didn't even visit the site last week.
In mysql.php line 534 I have:
/**
* CountResult
* Returns the number of rows returned for the resource passed in
*
* @param String $resource The result from calling Query
*
* @see Query
* @see SetError
*
* @return Int Number of rows from the result
*/
function CountResult($resource=null)
{
if ($resource === null) {
$this->SetError('Resource is a null object');
return false;
}
if (!is_resource($resource)) {
$resource = $this->Query($resource);
}
(LINE: 534) $count = mysql_num_rows($resource);
return $count;
Another problem, in phpmyadmin, if I access the isc_products table as example, I get:
#1033 - Incorrect information in file: './aerliber_magazin/isc_products.frm'
SELECT *
FROM isc_products
LIMIT 0 , 30
in the query I have: SELECT * FROM isc_products WHERE 1
Is this a sql problem, or what? I'm paying by year for the webhosting service and they don't offer any help about this.
Thanks!