• February 23, 2025, 03:29:49 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: where are my files in ajaxexplorer ?  (Read 9585 times)

threepwood

  • Level 2 Member
  • **
  • Posts: 27
where are my files in ajaxexplorer ?
« 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
Logged

jksmith

  • Level 1 Member
  • *
  • Posts: 13
Re: where are my files in ajaxexplorer ?
« Reply #1 on: July 27, 2011, 12:18:20 PM »

i have the same problem
Logged

ivan

  • Level 8 Member
  • ***
  • Posts: 1480
Re: where are my files in ajaxexplorer ?
« Reply #2 on: July 27, 2011, 01:25:22 PM »

Do you actually have any files in the ajaxpf folder to see?
Logged

threepwood

  • Level 2 Member
  • **
  • Posts: 27
Re: where are my files in ajaxexplorer ?
« Reply #3 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.
Logged

albert

  • Level 5 Member
  • *****
  • Posts: 510
    • SoHo NAS Forum
Re: where are my files in ajaxexplorer ?
« Reply #4 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.
Logged
D-Link DNS-320 rev A1 (FW: 2.05) [FFP-0.7]
PCI NAS-01G (FW: Encore ENNHD-1000 4.10)
PCI NAS-01G (FW: OpenNAS 1.9]

threepwood

  • Level 2 Member
  • **
  • Posts: 27
Re: where are my files in ajaxexplorer ?
« Reply #5 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

Logged

discoburg

  • Level 1 Member
  • *
  • Posts: 9
Re: where are my files in ajaxexplorer ?
« Reply #6 on: August 14, 2011, 11:30:10 PM »

What is ajaxexplorer? I see a folder in my NAS directory but dunno how it works.
Logged

threepwood

  • Level 2 Member
  • **
  • Posts: 27
Re: where are my files in ajaxexplorer ?
« Reply #7 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.
Logged

marcello_mat

  • Level 1 Member
  • *
  • Posts: 1
Re: where are my files in ajaxexplorer ?
« Reply #8 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 !
Logged