
Sorry to all

Demon of Darkness wrote:Does this MOD work with 3.0.4?
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()
And the debug mode say's this:Allgemeiner Fehler
SQL ERROR [ mysqli ]
Out of range value adjusted for column 'forum_posts' at row 1 [1264]
SQL
UPDATE phpbb_forums SET forum_posts = forum_posts - 1, forum_topics_real = forum_topics_real - 0 WHERE forum_id = 85
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()
FILE: includes/mcp/mcp_main.php
LINE: 715
CALL: dbal_mysqli->sql_query()
FILE: includes/mcp/mcp_main.php
LINE: 93
CALL: mcp_move_topic()
FILE: includes/functions_module.php
LINE: 471
CALL: mcp_main->main()
FILE: includes/functions_module.php
LINE: 766
CALL: p_master->load_active()
FILE: mcp.php
LINE: 168
CALL: p_master->load()
How can I fix that?[phpBB Debug] PHP Notice: in file /includes/functions_admin.php on line 454: Undefined variable: post_ids
anyonevellatechie wrote:what sql querry should i run to uninstall this mod (ive got 0.2.0a)![]()
PS: mod is working great in my forum, its just that i realized that i dont need this mod in my forum
Demon of Darkness wrote:DROP TABLE `phpbb_reputations` (
`rep_id` mediumint(8) NOT NULL auto_increment,
`rep_from` mediumint(8) NOT NULL,
`rep_to` mediumint(8) NOT NULL,
`rep_time` int(11) NOT NULL,
`rep_post_id` mediumint(8) NOT NULL,
`rep_point` int(11) NOT NULL,
`rep_comment` mediumtext NOT NULL,
`bbcode_uid` varchar(8) NOT NULL,
`bbcode_bitfield` varchar(255) NOT NULL,
`enable_bbcode` tinyint(1) unsigned NOT NULL,
`enable_smilies` tinyint(1) unsigned NOT NULL,
`enable_urls` tinyint(1) unsigned NOT NULL,
PRIMARY KEY (`rep_id`)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;
DROP TABLE `phpbb_reputations_ranks` (
`rank_id` mediumint(8) unsigned NOT NULL auto_increment,
`rank_title` varchar(255) collate utf8_bin NOT NULL,
`rank_points` int(11) NOT NULL default '0',
PRIMARY KEY (`rank_id`)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;
And then goto the other tables and drop them.
`phpbb_users` - `user_reputation` INT( 11 ) NOT NULL DEFAULT '0';
`phpbb_users` - `user_hide_reputation` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
`phpbb_groups` - `group_reputation_power` TINYINT( 4 ) NOT NULL DEFAULT '0';
Then just get rid of the values. And your done.
I ran above querry but i am getting this errorDROP TABLE `phpbb_reputations` (
`rep_id` mediumint(8) NOT NULL auto_increment,
`rep_from` mediumint(8) NOT NULL,
`rep_to` mediumint(8) NOT NULL,
`rep_time` int(11) NOT NULL,
`rep_post_id` mediumint(8) NOT NULL,
`rep_point` int(11) NOT NULL,
`rep_comment` mediumtext NOT NULL,
`bbcode_uid` varchar(8) NOT NULL,
`bbcode_bitfield` varchar(255) NOT NULL,
`enable_bbcode` tinyint(1) unsigned NOT NULL,
`enable_smilies` tinyint(1) unsigned NOT NULL,
`enable_urls` tinyint(1) unsigned NOT NULL,
PRIMARY KEY (`rep_id`)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;
DROP TABLE `phpbb_reputations_ranks` (
`rank_id` mediumint(8) unsigned NOT NULL auto_increment,
`rank_title` varchar(255) collate utf8_bin NOT NULL,
`rank_points` int(11) NOT NULL default '0',
PRIMARY KEY (`rank_id`)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;