https上的CKfinder BrowseServer功能

https上的CKfinder BrowseServer功能,https,ckfinder,Https,Ckfinder,我使用标准BrowseServer函数弹出CKfinder版本2.4.2。使用http时效果非常好,但当我在同一页面上使用https时,弹出窗口显示一个空白屏幕 有什么建议吗 function BrowseServer () { var finder = new CKFinder(); finder.basePath = '../ckfinder/'; finder.selectActionFunction = SetFileField; finder.popup

我使用标准BrowseServer函数弹出CKfinder版本2.4.2。使用http时效果非常好,但当我在同一页面上使用https时,弹出窗口显示一个空白屏幕

有什么建议吗

function BrowseServer ()
{
    var finder = new CKFinder();
    finder.basePath = '../ckfinder/';
    finder.selectActionFunction = SetFileField;
    finder.popup();
} 

我认为这与https无关。您可以尝试使用//取消对行的注释,以便转储服务器错误,然后确定发生了什么

/*
 Uncomment lines below to enable PHP error reporting and displaying PHP errors.
 Do not do this on a production server. Might be helpful when debugging why CKFinder does not work as expected.
*/
 // error_reporting(E_ALL);
 // ini_set('display_errors', 1);