Forum archive
Back to Ajaxplorer
OK, I needed a web-based file sharing solution for in real life. I was looking for a dropbox solution, as discussed in other threads, but I found myself very happy with ajaxplorer. I've attached a patch, completed in collaboration with James Domchick and David Horn at Chelsea Schoool; the patch is intended for TKL LAMP.
Here's the conf:
#! /bin/bash -ex
####Set Hostname
HOSTNAME=ajaxplorer
echo $HOSTNAME > /etc/hostname
sed -i "s|127.0.1.1 \(.*\)|127.0.1.1 $HOSTNAME|" /etc/hostname
#Get Ajaxplorer
wget http://downloads.sourceforge.net/project/ajaxplorer/ajaxplorer/stable-ch...
#Unzip and move Ajaxplorer
unzip ./ajaxplorer-core-4.0.4
mv ajaxplorer-core-4.0.4 /var/www/ajaxplorer
chown -R www-data:www-data /var/www/ajaxplorer
a2enmod ssl
####Install from Repos
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y \
-o DPkg::Options::=--force-confdef \
-o DPkg::Options::=--force-confold \
install php5-gd php5-cli
a2ensite default-ssl
service apache2 reload
Thanks Rik. I've been wanting to test this but never got around to installing. This patch will certainly make it easier.
Out of interest, how does it compare to eXtplorer (as installed by default in the fileserver appliance). A few have suggested that it should be used to replace eXtplorer in the next TKL version. Any thoughts?