2016-09-07 141 views
0

我開始使用elFinder,我不知道爲什麼,但是我得到這個錯誤"Unable to connect to backend.Backend not found."。 connector.php看起來像這樣elFinder錯誤「Unable to connect to backend。Backend not found。」

$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 >> dashboard >> plugins >> elfinder。我能做些什麼來解決後端連接的問題?

回答

0

這是HTTP錯誤「404 Not Found」。請檢查您的連接器網址。

+0

現在部分解決了錯誤是:無效的後端響應。 數據不是JSON。 – Befee1975

+0

請使用連接器主選項''debug'=> true'來嘗試elFinder 2.1.15。 –

相關問題