我已经完成了所有相关的答案。
当我使用http://sitename时,这不会发生,但当我使用https://sitename时会发生此错误
警告:mysql_query():25不是有效的MySQL-Link资源 /home/.../classes/class_core.php 在第60行
这里是代码
function &execute_query($buffered = true, &$link) {
$this->connection_recent = &$link;
$this->querycount++;
//line 60 is below
if ($queryresult = $this->functions[($buffered ? "query" : "query_unbuffered")]($this->sql, $link)) {
$this->sql = "";
return $queryresult;
}
$this->sql = "";
}
我正在使用hostgator商业帐户。
答案 0 :(得分:1)
我改变了
$this->connection_recent = &$link;
到
$this->connection_recent = $this->connection_master;
希望有一天能帮到某人:)