国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > 建站經驗 > 正文

關于ECSHOP模板架設的服務器php版本過高報錯的解決方法集合

2024-04-25 20:32:36
字體:
來源:轉載
供稿:網友

1、admin/index.php

admin/sms_url.php

報錯:Strict Standards: mktime(): You should be using the time() function instead in/data/web/ledetaoadmin/sms_url.php on line 31

$auth = mktime();

替換為:

$auth = time();

報錯:Strict Standards: Only variables should be passed by reference in /data/web/includes/lib_main.php on line1336

2、lib_main.php

$ext = end(explode('.', $tmp));

替換為:

$ext = end();

$ar = explode('.', $tmp);

$ext = end($ar);

繼續報錯

Warning: end() expects parameter 1 to be array, null given in /data/web/includes/lib_main.php on line 1336

將剛剛的代碼改成:

$arr=array();

$ext = end($arr);

$ar = explode('.', $tmp);

$ext = end($ar);

3、cls_template.php

$tag_sel = array_shift(explode(' ', $tag));

替換為:

$tag_arr = explode(' ', $tag);

$tag_sel = array_shift($tag_arr);

4、cls_captcha.php

/**

* 構造函數

*

* @access public

* @param

*

* @return void

*/

function __construct($folder = '', $width = 145, $height = 20)

{

$this->captcha($folder, $width, $height);

}

移動到:

/**

* 構造函數

*

* @access public

* @param string $folder 背景圖所在目錄

* @param integer $width 圖片寬度* @param integer $height 圖片高度

* @return bool

*/

前面

5、admin/includes/cls_sql_dump.php

/**

* 類的構造函數

*

* @access public

* @param

*

* @return void

*/

function __construct(&$db, $max_size =0)

{

$this->cls_sql_dump($db, $max_size);

}

移動到:

/**

* 類的構造函數

*

* @access public

* @param

*

* @return void

*/

前面

Strict Standards: Redefining already defined constructor for class chinabank in/data/web/includes/modules/payment/chinabank.php on line 85

Strict Standards: Redefining already defined constructor for class paypal_ec in/data/web/includes/modules/payment/paypal_ec.php on line 96

Strict Standards: Redefining already defined constructor for class shenzhou in/data/web/includes/modules/payment/shenzhou.php on line 81

Strict Standards: Redefining already defined constructor for class ips in/data/web/includes/modules/payment/ips.php on line 82

Strict Standards: Redefining already defined constructor for class balance in/data/web/includes/modules/payment/balance.php on line 79

Strict Standards: Redefining already defined constructor for class alipay in/data/web/includes/modules/payment/alipay.php on line 85

Strict Standards: Redefining already defined constructor for class tenpay in/data/web/includes/modules/payment/tenpay.php on line 83

Strict Standards: Redefining already defined constructor for class post in/data/web/includes/modules/payment/post.php on line 79

Strict Standards: Redefining already defined constructor for class paypal in/data/web/includes/modules/payment/paypal.php on line 82

Strict Standards: Redefining already defined constructor for class tenpayc2c in/data/web/includes/modules/payment/tenpayc2c.php on line 83

Strict Standards: Redefining already defined constructor for class cappay in/data/web/includes/modules/payment/cappay.php on line 81

Strict Standards: Redefining already defined constructor for class bank in/data/web/includes/modules/payment/bank.php on line 79

Strict Standards: Redefining already defined constructor for class kuaiqian in/data/web/includes/modules/payment/kuaiqian.php on line 83

Strict Standards: Redefining already defined constructor for class cod in/data/web/includes/modules/payment/cod.php on line 82

解決辦法:

將所有的構造函數放到前面:

如alipay.php

function __construct()

{

$this->alipay();

}

放到

function alipay()

{

}

前面。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 枣阳市| 太湖县| 灯塔市| 东乌| 安泽县| 安丘市| 康平县| 富宁县| 新乡县| 宁强县| 芷江| 泽州县| 遵义市| 行唐县| 天气| 武清区| 西贡区| 龙胜| 永顺县| 乌拉特前旗| 南乐县| 大荔县| 兴仁县| 苗栗县| 万年县| 即墨市| 沽源县| 台前县| 和平县| 浮山县| 崇阳县| 松阳县| 平谷区| 西安市| 胶南市| 泰和县| 临湘市| 新丰县| 宜州市| 永兴县| 平原县|