You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
First great tool to manage files on the server where default file manager sucks.
Issue:
When we move files and select folder from left, it changes to directory starting with ""
Reverting back is tough nut to crack when you have lot of files. Anyways, I found the solution too.
Solution:
Change line no 1249 from
parent.frame3.set_dir_dest(arg+'');
to
parent.frame3.set_dir_dest(arg+'". addslashes(DIRECTORY_SEPARATOR) . "');
All works well now.
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
First great tool to manage files on the server where default file manager sucks.
Issue:
When we move files and select folder from left, it changes to directory starting with ""
Reverting back is tough nut to crack when you have lot of files. Anyways, I found the solution too.
Solution:
Change line no 1249 from
parent.frame3.set_dir_dest(arg+'');
to
parent.frame3.set_dir_dest(arg+'". addslashes(DIRECTORY_SEPARATOR) . "');
All works well now.
Thanks!
The text was updated successfully, but these errors were encountered: