First connect yourself with the mandator database and see the structure of the table 'isys_person_intern':

| isys_person_intern__id          | int(10) unsigned |      | PRI | NULL    | auto_increment | | isys_person_intern__title      | varchar(255)    | YES  |    | NULL    |                | | isys_person_intern__description | text            | YES  |    | NULL    |                | | isys_person_intern__user_pass  | varchar(255)    | YES  |    | NULL    |                | | isys_person_intern__property    | int(10) unsigned | YES  |    | 0      |                | | isys_person_intern__status      | int(10) unsigned | YES  |    | 1      |                |

The content of this table:

|                      1 | guest                    | NULL                            | 084e0343a0486ff05530df6c705c8bb4 |                            0 |                          1 | |                    11 | reader                    | Reader                          | 1de9b0a30075ae8c303eb420c103c320 |                            0 |                          1 | |                    12 | editor                    | Editor                          | 5aee9dbd2a188839105073571bee1b1f |                            0 |                          1 | |                    13 | author                    | Author                          | 02bd92faa38aaa6cc0ea75e59937a1ef |                            0 |                          1 | |                    14 | archivar                  | Archivar                        | 4baf8329be21a4ad4f4401295cc130a9 |                            0 |                          1 | |                    15 | admin                    | Admin                          | 21232f297a57a5a743894a0e4a801fc3 |                            0 |                          1 |

To add new users create a new dataset in this table. 'isys_person_intern__title' defines the username and 'isys_person_intern__user_pass' is the password (as an MD5-Hash -> http://dev.mysql.com/doc/refman/5.0/en/security-guidelines.html😞

INSERT INTO isys_person_intern VALUES('%', 'einBenutzer', 'Markus Mueller', MD5('einPasswort'), 0, 1);

Then log in with 'einBenutzer' and 'einPasswort' and have fun with it 😄