#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $helptext = << Sets the password of user with name to END_OF_PASSWORD_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; if (count($args) < 2) { show_help(); } $nickname = $args[0]; $password = $args[1]; if (mb_strlen($password) < 6) { print "Password must be 6 characters or more.\n"; exit(1); } try { $user = User::getByNickname($nickname); $user->setPassword($password); } catch (NoSuchUserException $e) { print $e->getMessage(); exit(1); } print "Password for user '$nickname' updated.\n";