D-Link Forums

The Graveyard - Products No Longer Supported => D-Link Storage => DNS-320 => Topic started by: threepwood on July 27, 2011, 05:12:01 AM

Title: where are my files in ajaxexplorer ?
Post by: threepwood on July 27, 2011, 05:12:01 AM
Hi,
When I log into ajaxexplorer, I cannot find the files that are stored on the dns-320 (configured with RAID-1).
All I see is a root ("/") folder and Recycle Bin.
Anyone knows what I should do ?
Thanks
Title: Re: where are my files in ajaxexplorer ?
Post by: jksmith on July 27, 2011, 12:18:20 PM
i have the same problem
Title: Re: where are my files in ajaxexplorer ?
Post by: ivan on July 27, 2011, 01:25:22 PM
Do you actually have any files in the ajaxpf folder to see?
Title: Re: where are my files in ajaxexplorer ?
Post by: threepwood on July 27, 2011, 01:36:09 PM
I wanted so see all the files on the volume.

I loaded funplug on the NAS and changed the symbolink link
/mnt/HD_a4/ajaxplorer/files to point to the right location (root of the volume), it works for a minute then the system overwrites the link.

I'll post more if I find a solution.
Title: Re: where are my files in ajaxexplorer ?
Post by: albert on July 27, 2011, 05:37:01 PM
Just create a new symlink to point to the actual location of your files, for eg: ln -s /mnt/HD/HD_a2 vol1, refresh AjaXplorer and folder vol1 will appeared.
Title: Re: where are my files in ajaxexplorer ?
Post by: threepwood on July 28, 2011, 02:28:01 AM
I did not think of that, thanks :)

Quote
ln -s /mnt/HD/HD_a2/  /mnt/HD_a4/ajaxplorer/files/all

Title: Re: where are my files in ajaxexplorer ?
Post by: discoburg on August 14, 2011, 11:30:10 PM
What is ajaxexplorer? I see a folder in my NAS directory but dunno how it works.
Title: Re: where are my files in ajaxexplorer ?
Post by: threepwood on August 16, 2011, 11:02:33 AM
What is ajaxexplorer? I see a folder in my NAS directory but dunno how it works.
It's a brower-based file explorer that's available on the 'Applications' tab of the DNS-320 web interface.
Most of the time, the 'Web file server' does the job quickier, though.
Title: Re: where are my files in ajaxexplorer ?
Post by: marcello_mat on May 31, 2014, 12:20:03 PM
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 !