我在使用mamp作为测试环境的Mcbook上使用laravel。
我使用此代码设置了elrte和elfinder:
var dialog;
$('.elrte').elrte({
toolbar : 'maxi',
fmOpen: function(callback) {
if (!dialog) {
// create new elFinder
dialog = $('<div />').dialogelfinder({
url: '/mycms-laravel/elfinder/php/connector.php',
commandsOptions: {
getfile: {
oncomplete : 'close' // close/hide elFinder
}
},
getFileCallback: callback // pass callback to file manager
});
} else {
// reopen elFinder
dialog.dialogelfinder('open')
}
}
});
但是得到这个消息:
无效的后端配置。 可读卷不可用。
我没有设置配置文件吗? 什么应该是laravel环境。
答案 0 :(得分:0)
connector.php文件应位于公用文件夹中。你可以在浏览器中访问该文件吗? 您可以使用chrome开发人员工具或firebug来查看脚本的调用方式(在network / xhr-requests中)。是否找到了脚本?或者打开错误,看看connector.php文件产生了什么错误。