1.請先確認(rèn)“w1d2c3o4m5.phome_ecms_”是否存在?
成都創(chuàng)新互聯(lián)公司專注于懷柔網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供懷柔營銷型網(wǎng)站建設(shè),懷柔網(wǎng)站制作、懷柔網(wǎng)頁設(shè)計、懷柔網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造懷柔網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供懷柔網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
2.Warning: array_merge() [function.array-merge]: Argument #2 is not an array in D:\website\wd120\e\class\functions---警告的處理
在functions.phpon line 2008行找到該段代碼做如下示例更改即可:
調(diào)試PHP代碼是出現(xiàn)如下錯誤:
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /catalog/admin/customers.php on line 782
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /catalog/admin/customers.php on line 784
解決這幾個array_merge() 錯誤, 只需找到并編輯你的admin/customers.php 文件:
找到這兩行:
$customer_info = array_merge($country-fields, $info-fields, $reviews-fields);
$cInfo_array = array_merge($customers-fields, $customer_info);
修改為:
$customer_info = array_merge((array)$country-fields, (array)$info-fields, (array)$reviews-fields);
$cInfo_array = array_merge((array)$customers-fields, (array)$customer_info);
注意:望你能舉一反三,祝成功。
這個提示說 你請求的操作超出了PHP的等待時間,這個一般在PHP的配置文件里修改他的最大執(zhí)行時間,默認(rèn)30秒,修改大點(diǎn)就行了。
你可以修改你的操作,可能是你一次更新的內(nèi)容太多了,導(dǎo)致他沒辦法在30秒內(nèi)執(zhí)行完成。少刷新點(diǎn)文章。
在首頁模板中加入下面代碼,盡量放在底部。
script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"/script
在 /e/ 建立文件夾 htmlindex 并設(shè)置 777權(quán)限
將下面代碼保存在 /e/htmlindex/index_html.php
修改刷新時間,將文件中1200改為你想要的時間,單位為秒。
?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require?LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php");?
$link=db_connect();
$empire=new?mysqlquery();
$filepath_s="indexhtmlhc.txt";
$time=time();
@$filemtime=(int)filemtime($filepath_s)+1200;
/*
函數(shù)解釋
file_exists()?函數(shù)檢查文件或目錄是否存在。
mkdir()?函數(shù)創(chuàng)建目錄。
time()?函數(shù)返回當(dāng)前時間的?Unix?時間戳。
filemtime()?函數(shù)返回文件內(nèi)容上次的修改時間。
*/
if?(!file_exists($filepath_s)){
fopen($filepath_s,?'w');
@chmod($filepath_s,?0777);
ReIndex();
}elseif(!file_exists($filepath_s)?||?(filemtime($filepath_s)+1200)time()){
fopen($filepath_s,?'w');
@chmod($filepath_s,?0777);
ReIndex();
}else{
//?do?nothing
}
db_close();
$empire=null;
?