欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php网站显示空白的有关问题

程序员文章站 2022-06-12 11:44:04
...
php网站显示空白的问题!
错误提示等都开了!
windows 2003 系统,php5.3 , mysql 5.5

这是 php探针 http://a858158288.us006.dbidc.pw/tz.php


这是 出错网站: http://a858158288.us006.dbidc.pw/



这是 index.php 的代码:

$file = "./include/lock.txt";
if(!file_exists($file))
{
header("Location: ./install");
}

require('include/conn.php');
$siteconfig="select * from phpsou_siteconfig";
$site_query=mysql_query($siteconfig);
while($site=mysql_fetch_array($site_query,MYSQL_ASSOC))
{
$title=$site['adtitle'];
$name=$site['name'];
$keywords=$site['Keywords'];
$description=$site['description'];
}
$smarty->assign("title",$title);
$smarty->assign("name",$name);
$smarty->assign("keywords",$keywords);
$smarty->assign("description",$description);



$sql="select * from phpsou_about where is_show order by sortid asc";
$cate_query=mysql_query($sql);
while($cate=mysql_fetch_array($cate_query,MYSQL_ASSOC))
{
$about[]=array("title"=>$cate[title],"about_id"=>$cate[about_id],"url"=>$cate[url]);
}
$smarty->assign("about",$about);

$smarty->display('index.tpl');
?>

------解决思路----------------------
是不是缺少了index.tpl
------解决思路----------------------
什麼錯誤,Bad Request (Invalid Hostname)
------解决思路----------------------
Bad Request (Invalid Hostname)
错误的请求(无效的主机名)

http://us006.dbidc.pw 是有效的
如果这就是你的,那么是泛域名解析有误
php网站显示空白的有关问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频