使用错误提示后发现,原来是对应类没有,可文件夹里面都是官方的,仔细比对后发现,他的类和名称名称 字母大写不一样
估计是阿里云空间对字母大小也是按照必须一样才行
所以直接改下面2个文件
/include/autoload.inc.php
/include/autoload7.inc.php
找到下面代码
if ( is_file ( DEDEINC.'/'.$libclassfile ) ){require DEDEINC.'/'.$libclassfile;}
改成下面
if ( is_file ( DEDEINC.'/'.strtolower($libclassfile) ) ){require DEDEINC.'/'.strtolower($libclassfile);}