Impossible to create a user from administration console
Status: Beta
Brought to you by:
tsdogs
Bonjour,
Thanks a lot Allessandro for your work !
The only bug we've found in the 0.4.3 is tha an admin user cannot create a user...
The purge menu is also unoperable but we use a script to delete old files :
#!/bin/bash
WGET=`which wget`
OUTPUT=/var/www/purge/purge.log
OPTION=--quiet
HOTE=http://...
USER=admin
PASSWORD=?
DAYS=30
$WGET -O $OUTPUT.1 $OPTION --proxy=off --keep-session-cookies --save-cookies /tmp/cookies.txt --post-data "action=login&step=2&username=$USER&pwd=$PASSWORD" http://$HOTE/index.php
$WGET -O $OUTPUT.2 $OPTION --proxy=off --load-cookies /tmp/cookies.txt --post-data "action=adminmaintenance&step=2&c_older=1&older=$DAYS&login=admin&date=&size=&run=Continuer" http://$HOTE/index.>
# pour tester superssion des fichiers de l'utilisateur
# $WGET -O $OUTPUT.2 $OPTION --proxy=off --load-cookies /tmp/cookies.txt --post-data "action=adminmaintenance&step=2&older=&c_login=1&login=$USER&date=&size=&run=Continuer" http://$HOTE/index.php
#
$WGET -O $OUTPUT.3 $OPTION --proxy=off --load-cookies /tmp/cookies.txt --post-data "action=adminmaintenance&step=2&delete=Oui%2C+effacer+tout" http://$HOTE/index.php
$WGET -O $OUTPUT.4 $OPTION --proxy=off --load-cookies /tmp/cookies.txt http://$HOTE/index.php?action=logout
Anonymous
More traces...