Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Bluehost 网络托管,而我正在构建的网站位于子域中,每次我尝试使用
require_once("Connectdb.php") or die ("require fail!");
该网页什么也没有显示,只是一个空白页面。
我尝试使用
require_once(dirname(dirname(__FILE__))."/Connectdb.php");
但是,仍然返回一个空白页...
您的脚本是“白屏”,因为它有一个错误,但您的服务器关闭了错误,因此没有输出。将它们放在第一个文件的顶部(可能是索引?)
error_reporting(E_ALL); ini_set('display_errors', 'on');
正常的错误应该显示在页面上。致命错误(如 require_once)仍然会阻止脚本执行。