What do you mean by "2. Add Admin Module. "DIY Instructions wrote:1. Go to ACP then purge the cache
2. Add Admin Module.
ACP->System->Module Management->Administration Control Panel
then add Reputation points setting and reputation rank management module.
3. Assign permissions to your user/group
Demon of Darkness wrote:I suppose this is a MySQL Database error:Anyone know how to fix it?General Error
SQL ERROR [ mysql4 ]
Unknown column 'group_reputation_power' in 'field list' [1054]
SQL
UPDATE phpbb_groups SET group_name = 'ADMINISTRATORS', group_desc = '', group_desc_uid = '', group_desc_bitfield = '', group_type = 3, group_reputation_power = 50 WHERE group_id = 5
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal_mysql->sql_error()
FILE: includes/functions_user.php
LINE: 2448
CALL: dbal_mysql->sql_query()
FILE: includes/acp/acp_groups.php
LINE: 417
CALL: group_create()
FILE: includes/functions_module.php
LINE: 507
CALL: acp_groups->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Just check the sql instruction, did you miss something?Demon of Darkness wrote:I suppose this is a MySQL Database error:Anyone know how to fix it?General Error
SQL ERROR [ mysql4 ]
Unknown column 'group_reputation_power' in 'field list' [1054]
SQL
UPDATE phpbb_groups SET group_name = 'ADMINISTRATORS', group_desc = '', group_desc_uid = '', group_desc_bitfield = '', group_type = 3, group_reputation_power = 50 WHERE group_id = 5
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal_mysql->sql_error()
FILE: includes/functions_user.php
LINE: 2448
CALL: dbal_mysql->sql_query()
FILE: includes/acp/acp_groups.php
LINE: 417
CALL: group_create()
FILE: includes/functions_module.php
LINE: 507
CALL: acp_groups->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Code: Select all
ALTER TABLE `phpbb_groups` ADD `group_reputation_power` TINYINT( 4 ) NOT NULL DEFAULT '0';
can you make it clear?larsu wrote:Can you help me with my problem too?
Here
I can not realease my board bevor the bug is fixed
Error
SQL query:
ALTER TABLE `phpbb_groups` ADD `group_reputation_power` TINYINT( 4 ) NOT NULL DEFAULT '0'
MySQL said: Documentation
#1060 - Duplicate column name 'group_reputation_power'