Erstmal sorry für den bescheidenden Titel, mir ist nichts besseres eingefallen

Also, ich suche eine Mod welche User nach einer bestimmten Zeit, z.B. eine Woche, von einer in die andere Gruppe verschiebt.
Gibt es da was?

greetz
Code: Alles auswählen
SQL ERROR [ mysql4 ]
Unknown column 'group_auto_default' in 'field list' [1054]
SQL
SELECT group_id, group_auto_default, group_min_posts, group_max_posts, group_min_days, group_max_days, group_min_warnings, group_max_warnings FROM phpbb_groups WHERE group_type <> 3 AND ( group_min_posts <> 0 OR group_max_posts <> 0 OR group_min_days <> 0 OR group_max_days <> 0 OR group_min_warnings <> 0 OR group_max_warnings <> 0 )
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()
FILE: includes/functions_autogroup.php
LINE: 76
CALL: dbal_mysql->sql_query()
FILE: includes/functions.php
LINE: 2331
CALL: auto_group()
FILE: adm/index.php
LINE: 33
CALL: login_box()
Code: Alles auswählen
ALTER TABLE phpbb_groups ADD group_min_posts MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_max_posts MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_min_warnings MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_max_warnings MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_min_days MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_max_days MEDIUMINT(8) DEFAULT 0;
ALTER TABLE phpbb_groups ADD group_auto_default TINYINT(1) DEFAULT 0;
ALTER TABLE phpbb_user_group ADD auto_group TINYINT(1) DEFAULT '0';
Code: Alles auswählen
<fieldset>
<legend>{L_GROUP_AVATAR}</legend>
Code: Alles auswählen
<!-- INCLUDE auto_groups.html -->
Code: Alles auswählen
<dd><select name="group_rank" id="group_rank">{S_RANK_OPTIONS}</select></dd>
</dl>
</fieldset>
<!-- INCLUDE auto_groups.html -->
<fieldset>
<legend>{L_GROUP_AVATAR}</legend>
<dl>