花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊(cè) 退出 找回密碼

織夢dedecms登錄后臺(tái)變空白解決方法大全

時(shí)間: 2019-04-25 08:36 閱讀: 作者:素材無憂網(wǎng)

用織夢cms做的網(wǎng)站轉(zhuǎn)到新空間后,網(wǎng)站管理后臺(tái)無法登錄了,輸入網(wǎng)址竟然顯示空白,什么都沒有了。下面就給大空分享下一些解決織夢后臺(tái)登錄空間的方法。

方法一:修改include/userlogin.class.php文件

找到include/userlogin.class.php,把這六行代碼注釋掉:

@session_register($this->keepUserIDTag);

@session_register($this->keepUserTypeTag);

@session_register($this->keepUserChannelTag);

@session_register($this->keepUserNameTag);

@session_register($this->keepUserPurviewTag);

@session_register($this->keepAdminStyleTag);

原因:這個(gè)文件里有一個(gè)keepUser()函數(shù),它是用session_register來注冊(cè)一個(gè)session變量,但是在php5.4中已經(jīng)移除了這個(gè)功能。

dedecms-login-page-goes-blank-solutions-1


方法二:文件替換法

找到:include/common.inc.php文件

//error_reporting(E_ALL);

error_reporting(E_ALL || ~E_NOTICE);

替換為:

error_reporting(E_ALL);

//error_reporting(E_ALL || ~E_NOTICE);

這樣做的目是可以在你訪問網(wǎng)站的時(shí)候,在瀏覽器窗口告訴你那里出錯(cuò)了,或者是那個(gè)文件出錯(cuò)了。你可以根據(jù)這些提示,找到之前網(wǎng)站正常運(yùn)行時(shí)備份的文件,替換就可以了。替換完成后記得要把include/common.inc.php改回來

error_reporting(E_ALL);

//error_reporting(E_ALL || ~E_NOTICE);

替換為:

//error_reporting(E_ALL);

error_reporting(E_ALL || ~E_NOTICE);


方法三:BOM去除法

去除BOM法:BOM 是“Byte Order Mark”的縮寫,用于標(biāo)記文件的編碼。并不是所有的文本編輯工具都能識(shí)別BOM標(biāo)記.在用記事本之類的程序?qū)⑽谋疚募4鏋閁TF-8格式時(shí),記事本會(huì)在文件頭前面加上幾個(gè)不可見的字符(EF BB BF),就是所謂的BOM(Byte Order Mark)。

<?php
//remove the utf-8 boms
//by magicbug at gmail dot com
if (isset($_GET['dir'])){ //要去除的文件目錄,無參數(shù)則為文件當(dāng)前目錄www.lol9.cn。
$basedir=$_GET['dir'];
}else{
$basedir = '.';
}
$auto = 1;
checkdir($basedir);
function checkdir($basedir){
if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file != '.' && $file != '..'){
if (!is_dir($basedir."/".$file)) {
echo "filename: $basedir/
$file ".checkBOM("$basedir/$file")." <br>";
}else{
$dirname = $basedir."/".
$file;
checkdir($dirname);
}
}
}
closedir($dh);
}
}
function checkBOM ($filename) {
global $auto;
$contents = file_get_contents($filename);
$charset[1] = substr($contents, 0, 1);
$charset[2] = substr($contents, 1, 1);
$charset[3] = substr($contents, 2, 1);
if (ord($charset[1]) == 239 && ord($charset[2]) == 187 &&
ord($charset[3]) == 191) {
if ($auto == 1) {
$rest = substr($contents, 3);
rewrite ($filename, $rest);
return ("<font color=red>BOM found,
automatically removed.</font>");
} else {
return ("<font color=red>BOM found.
</font>");
}
}
else return ("BOM Not Found.");
}
function rewrite ($filename, $data) {
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}
?>

把以上代碼拷貝到txt文件里,保存成.php文件,上傳到網(wǎng)站根目錄,然后用域名+文件名.php訪問就可以了。


方法四:PHP.ini設(shè)置

思路:既然程序是從一個(gè)空間搬到另一個(gè)空間的,說明不出什么意外的話程序本身是沒問題的。那么問題還可以出現(xiàn)在哪里呢??臻g商!也就是說空間商提供的空間的管理后臺(tái)里的PHP.ini設(shè)置禁止某些不該禁止的功能