随笔分类 -  php

摘要:dedecms 说明文档:http://www.dedecms.com/archives/templethelp/help/taghelp.htm{dede:channel type='son' typeid='6' row='1000' currentstyle="~typename~ "} [field:typename/][field:ID/] {/dede:channel}这边注意的是:type='son'表示子级目录,然后用[field:ID/]调用就可以调用出当前目录下,子目录的ID了。 阅读全文
posted @ 2013-11-01 09:07 就是这么一回事儿 阅读(744) 评论(0) 推荐(0)
摘要:在网上查了资料,验证可行后,在这儿做个备份!自己解决了,貌似是swfupload在linux环境下session丢失的引起的解决办法是:在include/userlogin.class.php文件中的第二行session_start();前加上 if (isset($_POST["PHPSESSID"])) { session_id($_POST["PHPSESSID"]); } else if (isset($_GET["PHPSESSID"])) { session_id($_GET["PHPSESSID"]) 阅读全文
posted @ 2013-10-31 09:38 就是这么一回事儿 阅读(419) 评论(0) 推荐(0)