Topic: dblayer >> mysql.php - mysql_unbuffered_query doesnt work!
in file mysql.php in line 80 where is "mysql_unbuffered_query" don't work as it should be, I get error "Cannot find server - The page cannot be displayed", when runs "mysql_query", forum run normaly. Installed is Mysql is 5.x and PHP is 5.x and "mysql_unbuffered_query" function work normaly in other php scripts.
if ($unbuffered) {
$this->query_result = @mysql_unbuffered_query($sql, $this->link_id) or die(mysql_error."mysql_unbuffered_query");
} else {
$this->query_result = @mysql_query($sql, $this->link_id);
}