Search results

  1. I

    Archive Manager Plugin - Multi part archive

    Hello, How can I extract multi part RAR archive using this plugin? I tried select multiple files, tried to select first part, it doesn't work. :( Please help.
  2. I

    How to change username character length?

    It can be done by changing a line of code in admin/user_add.php go to line 61: elseif ((strlen($username) < 6) || (strlen($username) > 16)) change it to reflect your needs, for example to allow user name with 3 chars: elseif ((strlen($username) < 3) || (strlen($username) > 16))