1.strict standards: non-static method cls_image::gd_version() should not be called statically in d:wwwecshopinstallincludeslib_installer.php on line 31
lib_installer.php的31行调用了gd_version()函数,但是该函数未申明静态调用。
解决方法:
<code>找到include/cls_image.php中的678行将 function gd_version() 改为 static function gd_version();</code>
2.strict standards: only variables should be passed by reference
<code>找到\includes\cls_template.php 将 $tag_sel = array_shift(explode(' ', $tag)); 改为$tagarr = explode(' ', $tag);$tag_sel = array_shift($tagarr);</code>
3.deprecated: preg_replace(): the /e modifier is deprecated, use preg_replace_callback instead
还是5.5版本php 所触发的问题。
`找到includescls_template.php 288行
改为