我开始使用elFinder而且我不知道为什么但是我收到此错误"Unable to connect to backend.Backend not found."
。 connector.php看起来像这样
$opts = array(
// 'debug' => true,
'roots' => array(
array(
'driver' => 'LocalFileSystem', // driver for accessing file system (REQUIRED)
'path' => '../files/', // path to files (REQUIRED)
'URL' => dirname($_SERVER['PHP_SELF']) . '/../files/', // URL to files (REQUIRED)
'uploadDeny' => array('all'), // All Mimetypes not allowed to upload
'uploadAllow' => array('image', 'text/plain'),// Mimetype `image` and `text/plain` allowed to upload
'uploadOrder' => array('deny', 'allow'), // allowed Mimetype `image` and `text/plain` only
'accessControl' => 'access' // disable and hide dot starting files (OPTIONAL)
)
)
);
该文件的路径是:myproject>>仪表板>>插件>> elfinder。如何解决后端连接问题?
答案 0 :(得分:0)
是HTTP错误“404 Not Found”。请检查您的连接器URL。