0

我在这里有点绝望,我不是一个非常有经验的 PHP 开发人员,现在我正在独自工作,遇到一个我无法解决的问题。

我有 30 或 40 个网站,位于 30 或 40 个域(每个国家/地区的网站)

所有网站都使用完全相同的代码,它们完全相同)

然而,我的网站之一没有出现。它只是没有加载没有错误它只是没有加载。我整天都在研究它,我相信这是由于一个功能,但我看不出它有什么问题。

头文件调用配置文件@

<? include('config.php'); ?>

配置文件调用函数文件

include('functions.php'); 

为了弄清楚可能是哪个功能的问题,我从底部开始,每次刷新页面都将它们删除。最终我得到了一个功能,一旦删除,我的页面就会加载,但由于缺少功能,显然还有其他错误。

我认为问题的功能是:

function get_contenttitle($SectionID,$languageid){
global $languageid;
global $mysql_connect;
if($languageid==''){$languageid=$_SESSION["SelectLanguage"];}
$query='SELECT * FROM website.content WHERE SortOrder="'.$SectionID.'" AND LanguageID="'.$languageid.'" AND Active=1 AND LanguageID IN (1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 15, 16, 30)';
//$content=dbqueryintoarray($query);
$content=db_query_into_array_enhanced($mysql_connect,$query);
if(count($content)>0){
    $return=$content[0]["ContentTitle"];
    }else{
    if($languageid==''){$languageid=$_SESSION["SelectLanguage"];}
    $query='SELECT * FROM website.content_auto WHERE SortOrder="'.$SectionID.'" AND LanguageID="'.$languageid.'" AND Active=1 AND LanguageID IN (1, 2, 3, 4, 5, 6, 8, 11, 12, 14, 15, 16, 30)';
    //$content=dbqueryintoarray($query);
    $content=db_query_into_array_enhanced($mysql_connect,$query);
    if(count($content)>0){
        $return=$content[0]["ContentTitle"];
        }else{
        $query='SELECT * FROM website.content WHERE SortOrder="'.$SectionID.'" AND LanguageID="1" AND Active=1';
        //$content=dbqueryintoarray($query);
        $content=db_query_into_array_enhanced($mysql_connect,$query);
        if(count($content)>0){
            $return=$content[0]["ContentTitle"];
            }else{
            $return='<b><font color="#FF0000">Warning:</font></b> Content does not exist';          
            }
        }
    }
$return=str_replace(chr(10),'<br>',$return);
return $return;
}

现在这个函数在顶部导航中被调用。如果我删除该功能,页面会加载到调用它的导航,然后显然会停止。一旦我将功能放回页面中,就会完全停止加载。

此函数使用 db_query_into_array_enhanced 函数,如下所示:

function db_query_into_array_enhanced($mysql_connect,$query){
global $mysql_debug_comments;
global $total_query_count;
global $total_query_time;
global $total_function_time;
global $log_to_firephp;
global $query_results_to_firephp;
global $output_stats_to_browser;
global $firephp;
global $slow_query_time;
global $query_time;

$bt=debug_backtrace();
$file=$bt[1]["file"];
$pos=strrpos($file,'/');
$calling_script=substr($file,($pos+1));
$calling_line=$bt[1]["line"];

settype($retval,"array");

$query_start=getmicrotime();
$result=mysqli_query($mysql_connect,$query);
$query_end=getmicrotime();
$query_time=($query_end-$query_start);
$total_query_time=$total_query_time+$query_time;
$query_time_ms=round($query_time*1000);

if(!$result){$mysql_debug_comments.="<!-- db_query_into_array_enhanced | Called By: ".$calling_script." | Line: ".$calling_line." | Query FAILED ".$query." -->\n\n";}

if($result){
    $success=true;
    $function_start=getmicrotime();
    $row_count=mysqli_num_rows($result);
    for($x=0;$x<$row_count;$x++){$row=mysqli_fetch_array($result,MYSQLI_ASSOC);array_push($retval,$row);}
    mysqli_free_result($result_set);
    $function_end=getmicrotime();
    $function_time=($function_end-$function_start);
    $total_function_time=$total_function_time+$function_time;
    $mysql_debug_comments.="<!-- Function: db_query_into_array_enhanced | Called By: ".$calling_script." | Line: ".$calling_line." | Status: OK | Results: ".count($retval)." rows | Query Time: ".$query_time_ms."ms | Total Time: ".round($total_query_time*1000)." ms ";
    if($query_time_ms>$slow_query_time){$mysql_debug_comments.=" | Query: ".$query." ";}
    $mysql_debug_comments.="-->\n\n";
    $total_query_count++;
    }

if($log_to_firephp==true){
    $query_time_ms=round($query_time*1000);
    $function_time_ms=round($function_time*1000);
    $total_time=$query_time+$function_time;
    $query_perc=round(($query_time/$total_time)*100,2);
    $function_perc=round(($function_time/$total_time)*100,2);
    $log_type='info';
    if($success==true){
        $message1='db_query_into_array_enhanced | Query: "'.$query.'"';
        $message2='db_query_into_array_enhanced | Rows: '.count($retval).' | MySQL Time: '.$query_time_ms.'ms ('.$query_perc.'%) | Function Time: '.$function_time_ms.'ms ('.$function_perc.'%) | Total Time: '.($query_time_ms+$function_time_ms).'ms';
        if(($query_time>0.5) or ($function_time>0.5) or ($query_time+$function_time>0.5)){$log_type='warn';}
        }else{
        $message1='db_query_into_array_enhanced | Query: "'.$query.'" | QUERY FAILED!';
        $log_type='error';
        }
    if($log_type=='info'){$firephp->info($message1);$firephp->info($message2);}
    if($log_type=='warn'){$firephp->warn($message1);$firephp->warn($message2);}
    if($log_type=='error'){$firephp->error($message1);}
    }

if($query_results_to_firephp==true){        
    $headings=array_keys($retval[0]);
    $table=array();
    $table[]=$headings;
    for($r=0;$r<count($retval);$r++){
        $row=array();
        for($c=0;$c<count($retval[0]);$c++){array_push($row,$retval[$r][$headings[$c]]);}
        $table[]=$row;
        }
    $firephp->table('Results from MySQL Query "'.$query.'" Rows: '.count($retval).' Time: '.($query_end-$query_start).'s', $table);
    }

if($output_stats_to_browser==true){
    echo 'Query: '.$query.'<br>';
    echo 'Query Time: '.$query_time_ms.'ms ('.$query_perc.'%)<br>';
    echo 'Function Time: '.$function_time_ms.'ms ('.$function_perc.'%)<br>';
    echo 'Total Time: '.($query_time_ms+$function_time_ms).'ms<br>';
    echo 'Rows returned: '.count($retval).'<br>';
    }

return $retval;
}

我已经对照其他工作站点检查了每一段代码,一切都是一样的。完全相同的。

我在这里疯了,有人可以请帮帮我吗

非常感激

4

1 回答 1

0

我的猜测是函数“get_contenttitle”正在从未连接到的数据库中查找数据。而且我也没有在其他函数“db_query_into_array_enhanced”中看到连接。有连接数据库的功能吗?如果是这样,请检查一下。确保与其中一个工作站点完全相同。

于 2013-03-19T14:15:45.497 回答