filemanager plugin

dsouvik215

Member
May 25, 2018
896
0
16
Yeah, i know. I changed to
Quote
$pathToExternals['zip'] = '/usr/bin/unzip';​


and the rtorrent wouldn't start anymore. Atm I'm not sure what to write on that part

Edit: Fixed it. Thanks for the help smiley.gif
 

das329717

Member
May 25, 2018
928
0
16
I have come up with a patch that fixs the freezing issues with the screenshots feature and also changes the functionality of it. You can now select between .jpg or .png screenshots and they are generated in the original resolution. Also you can choose how many random shots to generate. There is also an option to add a timecode on the screen but it is NOT working properly at the moment and i may just remove it if I can't get it to show the correct value.

I also added a fix for the nfo viewing option which should work perfectly in most current browser versions.

The patch file is attached so check it out and lemme know how it works for you guys.
 

jith45

Member
May 25, 2018
960
0
16
Hi, would it be possible to get some help with a problem I'm having? When I try to move a file nothing actually happens, it remains in the original directory.

This appears in the log:
Quote
[05.04.2014 11:03:15] FILE MANAGER: Action has finished :​
 

somus1735

Member
May 25, 2018
833
0
16
Hi, I have installed rutorrent on nas Synology working perfect.

I want install the for plugins in http://svn.rutorrent.org/svn/filemanager/trunk/, filemanager, fileshare, fileupload and mediastream into NAS Synology, but the linux from Synology not have by default commands svn, ap-get and sudo, so I can't download the filemanager plugin and others.

I saw I can install svn server in Synology, and then I thing will can use svn command, but I not know is needed do that only for download filemanager plugin.

Is possible download filemanager in other format like tar, rar or zip to put into the plugins folder or that not will work?

Regards
 

dsouvik215

Member
May 25, 2018
896
0
16
Perfect!! A lot of thanks.

Can you put the other three files, fileshare, fileupload and mediastream?

Regards
 

somus1735

Member
May 25, 2018
833
0
16
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