dsljpwi494719 2016-10-27 04:15
浏览 14
已采纳

PHP KCFinder会话安全选项

I have the following CK editor file manager: https://github.com/sunhater/kcfinder My problem is I have one CMS system and would like to secure the browser.php file. If member who not logged in on the site can open the brwser.php and he/she can delete the uploaded images. I have a login system which checks the $_SESSION['userlogin'] is empty or not. So my question is where to add my login session to check if the $_SESSION['userlogin'] is empty or not? I tried take it to the browser.php, but it is not working:

if (empty($_SESSION['userlogin'])) {
    header('Location: http://www.example.com/login');
}

When i try to var_dump($_SESSION) it shows me NULL why?

  • 写回答

1条回答 默认 最新

  • dongzhao1865 2016-10-27 04:54
    关注

    KCFinder already has this feature built into it. In your login procedure, you should set a session variable:

    if($login_successful) {
      $_SESSION['KCFINDER']                 = array();
      $_SESSION['KCFINDER']['disabled']     = false;    
    }
    

    KCFinder should be disabled by default, it's this session variable that enables it. Does this solve it?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部