## page was renamed from ZEOM/Paris/CoeurDeReseau/Devel160 == Devel160 == [[http://www.ajaxplorer.info/wordpress/|Ajaxplorer]], gestionnaire de fichiers en ligne * https://ftp.refer.org * https://ftpifadem.refer.org === Installation de Ajaxplorer === {{{ # aptitude install libapr1 apache2 apache2.2-common apache2-utils php5 php5-gd php5-mcrypt # cd /var/www/ # wget http://sourceforge.net/projects/ajaxplorer/files/ajaxplorer/3.2%20-%20Stable/ajaxplorer-core-3.2.zip # unzip ajaxplorer-core-3.2.zip # chown www-data -R /var/www/ }}} ==== Ajustements ==== Dans le /var/www/ajaxplorer-core-3.2/server/conf/conf.php , il faut insérer (vers la ligne 174) : {{{ $default_language="fr"; setlocale(LC_ALL,'fr_FR.iso-8859-1'); }}} ... sauf que chez moi ça marche mieux avec : {{{ $default_language="fr"; setlocale(LC_ALL,'fr_FR.utf8'); }}} ==== Certificat SSL/TLS et Redirections ==== * Créer au préalable le répertoire /etc/apache2/ssl/ (droits restreints) et mettre les clés * /etc/apache2/sites-enabled/ajaxplorer3 {{{ ServerName 81.80.122.34 RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] DocumentRoot /var/www/ajaxplorer-core-3.2/ ServerName 81.80.122.34 SSLEngine on SSLCertificateFile /etc/apache2/ssl/serveur.refer.org.crt SSLCertificateKeyFile /etc/apache2/ssl/serveur.refer.org.key SSLCACertificateFile /etc/apache2/ssl/GandiStandardSSLCA.pem }}} ==== Optimisations ==== * Taille des fichiers téléchargés et temps d'exécution * /etc/php5/apache2/php.ini * upload_max_filesize = 5000M * max_execution_time = 1000 * Désactiver le changement de mot de passe * /var/www/ajaxplorer-core-3.2/server/xml/standard_auth_actions.xml * mettre en commentaire {{{ ~ ~ }}} * Une autre piste : http://www.ajaxplorer.info/forum/discussion/1612/solved-disable-change-password {{{ Or you could also the "Disabled actions" feature of the Roles (not available directly in the users rights, but by creating a role and then assigning it to a user) : add "pass_change" (without quotes) to the role "Disabled actions". }}}