Hi, to make the change permanent :
- access your dlink throw telnet or ssh session (see ffp tuto)
- go to the Ajaxplorer dir :
#cd /mnt/HD/HD_a2/Nas_Prog/ajaxplorer/
- see the current symbolic link to files folder:
#ls -l ./ajaxplorer
lrwxrwxrwx 1 root root 46 May 31 17:15 files -> /mnt/HD/HD_a2/Nas_Prog/ajaxplorer/../../Ajaxpf
- edit the 'init.sh' script to change this link:
#vi ./init.sh
- go to line 37 ( 'Esc :37' )
- edit the line ('x' to supress, 'i' to insert caracters, 'Esc :q!' to quit without saving) :
before: ln -s $path/../../Ajaxpf $path/ajaxplorer/files
after: ln -s $path/../../ $path/ajaxplorer/files
- save (Esc :wq)
- delete the old symbolic link (it won't delete your files, only the sym link):
#rm ./ajaxplorer/files
- run the init script (add the current path '.' in argument. Don't worry about errors):
#./init.sh .
- launch Ajaxplorer via Add-on Management web page
Your whole Volume appears now in Ajaxplorer.
Note that your Ajaxplorer main dir may vary. Also note that, on the add-on Ajaxplorer launch page, the install dir shows your Volume's RAID nick instead of the true linux path.
Good luck !