Copyright 2013-2014 All Rights Reserved Theme by Www.AdminBuy.Cn 版权所有
AB模板网(www.adminbuy.cn)专注企业网站模板制作,包括企业pbootcms网站模板,静态网页模板,网站源码下载,HTML网站模板等等。XML地图 网站地图 今日更新
免责声明:本站所有资源(模板、图片)搜集整理于互联网或者网友提供,仅供学习与交流使用,如果不小心侵犯到你的权益,请及时联系我们删除该资源。
上传失败:UNKNOW: Code: 8192; Desc: stripos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior; File: /www/wwwroot/aaa.xxxx.com/core/function/file.php; Line: 176;
解决办法:
打开/core/function/file.php,搜索以下
if (stripos($types, $ext) !== false) |
替换成
if (stripos($types, chr($ext)) !== false) |