1997
Commentaire:
|
← Version 6 à la date du 2012-04-09 02:58:28 ⇥
2411
séparation Europe de l'Ouest et Maghreb
|
Texte supprimé. | Texte ajouté. |
Ligne 1: | Ligne 1: |
## page was renamed from ZEOM/Paris/CoeurDeReseau/Devel160 | |
Ligne 80: | Ligne 81: |
* 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". }}} |
Devel160
Ajaxplorer, gestionnaire de fichiers en ligne
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
<VirtualHost *:80> ServerName 81.80.122.34 RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] </VirtualHost> <VirtualHost *:443> 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 </VirtualHost>
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
- /etc/php5/apache2/php.ini
- Désactiver le changement de mot de passe
- /var/www/ajaxplorer-core-3.2/server/xml/standard_auth_actions.xml
- mettre en commentaire
<action name="pass_change"> ~ ~ </action>
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".
- mettre en commentaire
- /var/www/ajaxplorer-core-3.2/server/xml/standard_auth_actions.xml