DedeCMS V5.7 图片集上传报错302解决方法
解决办法是在include/userlogin.class.php文件中的第二行session_start();前加上以下代码:
if(isset($_POST["PHPSESSID"])) {
session_id($_POST["PHPSESSID"]);
} else if(isset($_GET["PHPSESSID"])) {
session_id($_GET["PHPSESSID"]);
}
本文参考资料:
http://freemandf77.blog.163.com/blog/static/10721870520123534750230/