MyBB Community Forums

Full Version: [Release] Fast Reputation Change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13
Well, 50% of the functionality is already there... But I think I will release an update.
(2010-08-09, 12:30 AM)iarspider Wrote: [ -> ]Well, 50% of the functionality is already there... But I think I will release an update.

It works with 1.6 anyway. Smile
well i get this
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1060 - Duplicate column name 'pid'
Query:
ALTER TABLE mybb_reputation ADD pid INT( 10 ) DEFAULT '-1' NOT NULL AFTER adduid

when i try to activate in 1.6
Replace the plugin file with this one - [attachment=19243]
still the same even with that file.
i think its not compatible with the new default rep system
(2010-08-10, 09:19 AM)adbrad Wrote: [ -> ]still the same even with that file.
i think its not compatible with the new default rep system

The original error is because there's already a pid column in the reputation table in 1.6

You can't still be getting that error with the file I posted as it's not trying to create one anymore.

Working on 1.6: Link
ok i got it working now thanks aj
(2010-08-09, 05:49 PM)adbrad Wrote: [ -> ]well i get this
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1060 - Duplicate column name 'pid'
Query:
ALTER TABLE mybb_reputation ADD pid INT( 10 ) DEFAULT '-1' NOT NULL AFTER adduid

when i try to activate in 1.6

have the same problem.
Overwrite the plugin, activated and then this error occurs :/
You can just find and delete the following line:
$db->query("ALTER TABLE `".TABLE_PREFIX."reputation` ADD `pid` INT( 10 ) DEFAULT '-1' NOT NULL AFTER `adduid` ");
(around line 162 in file fastrep.php)
(2010-08-20, 07:50 AM)albatros_ Wrote: [ -> ]have the same problem.
Overwrite the plugin, activated and then this error occurs :/

Use the plugin file I posted a few posts ago.

(2010-08-20, 03:01 PM)iarspider Wrote: [ -> ]You can just find and delete the following line:
$db->query("ALTER TABLE `".TABLE_PREFIX."reputation` ADD `pid` INT( 10 ) DEFAULT '-1' NOT NULL AFTER `adduid` ");
(around line 162 in file fastrep.php)

That will cause problems if they ever uninstall the plugin as it will remove the reputation pid which is used by MyBB core. Smile
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13