thanks again, but filemanager not work in my nas. I have a problem with the other plugin that have dependencies with filemanager too, but thats not is important now.
All in folder filemanager have 777 permissions,
I have rutorrent working, all folders in folder web with chmod 755 and the same in the top folder in settings.js.php.
The error is as that folder would not have permissions:
Quote
[10.04.2014 19:15:16] WebUI started.
[10.04.2014 19:15:20] FILE MANAGER: Failed to get directory contents : /
[10.04.2014 19:15:21] FILE MANAGER ignited
My config file
Quote
<?php
require_once( '../../php/util.php' );
include('conf.php');
// unzip should be the latest key index
foreach(array_merge($fm['archive']['types'], array('unzip')) as $kid => $external) {
if((findEXE($external) === false) && isset($fm['archive']['types'][$kid])) {
unset($fm['archive']['types'][$kid]);
echo 'log("FILE MANAGER: ',$external,' "+theUILang.fErrMsg[24]);',"\n";
}
}
echo 'theWebUI.fManager.homedir = "', rtrim($topDirectory, '/testfilemanager'), '";',"\n";
echo 'theWebUI.fManager.mkdefmask = "', $fm['mkdperm'], '";',"\n";
echo 'theWebUI.fManager.archives = '.json_encode($fm['archive']).';',"\n";
If we see that folder we put chmod -R 777 :
Quote
/# ll -d /testfilemanager
drwxrwxrwx 2 http 1000 4096 Apr 10 01:33 /testfilemanager
/#
I saw the post with this problem but the solution was the permissions and put the own http. The group in my case is the same that the other files in apk, http and group 1000, like the rest files (I tested with group http too with the same result).
Anybody show which can be the problem and the solution?
Regards