Help With The Abuse Group Mod ..??

General Support forum for phpBB2 hacks/mods made by me.

Moderator: Admin & mods

Help With The Abuse Group Mod ..??

New postby Mark0 » 21 Mar 2004, 06:49

Hello ..

First Of The All . Thankyou very mach for this mod .. i am so glad that u make it .. i was Searching for it long time ago .. thankyou again ..

Ok know i think this mod u make it in your modify Forum .. so that i try to Add this mod .. in my board there is no mod installing

i try to find this .. i cant ..

Code: Select all
#-----[ FIND ]------------------------------------------
#
      'L_GROUP_COUNT_DELETE' => $lang['Group_count_delete'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
      'L_GROUP_ABUSE' => $lang['Abuse_group_exp'],
#
#-----[ FIND ]------------------------------------------
#
      'S_GROUP_OPEN_TYPE' => GROUP_OPEN,
#
#-----[ BEFORE, ADD ]------------------------------------------
#
      'S_GROUP_ABUSE' => (($group_info['group_abuse']) ? " CHECKED" : ""),
#
#-----[ FIND ]------------------------------------------
#
      $group_count_delete = isset($HTTP_POST_VARS['group_count_delete']) ? true : false;
#
#-----[ AFTER, ADD ]------------------------------------------
#
      $group_abuse = isset($HTTP_POST_VARS['group_abuse']) ? true : false;


Can u pls try to Install phpbb206 and u try it ..

This is the only problem

Thank you agian :D
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

hello

New postby Mark0 » 21 Mar 2004, 06:59

Hello There is Other code also i cant find it ....
Code: Select all
group_count_max='$group_count_max', group_count_enable='$group_count_enable'
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, group_abuse='$group_abuse'
#
#-----[ FIND ]------------------------------------------
#
      }
      else if( $mode == 'newgroup' )
      {
         $sql = "INSERT INTO " . GROUPS_TABLE . " (group_type, group_name, group_description, group_moderator, group_count
            VALUES ($group_type, '" . str_replace("\'", "''", $group_name) . "', '" . str_replace("\'", "''", $group_
#
#-----[ IN-LINE FIND ]------------------------------------------
#
group_count_enable, group_single_user

#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
,group_abuse
#
#-----[ IN-LINE FIND ]------------------------------------------
#
,'$group_count_enable',   '0'
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, '$group_abuse'
#
#-----[ OPEN ]------------------------------------------




can u pls check it .. again ..

thankyou :(
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

New postby WyriHaximus » 23 Mar 2004, 17:31

Hi,

This should do it: http://hacks.wyrihaximus.net/user_abuse_hack_1.0.1.txt

Grtz,

WyriHaximus
Image
User avatar
WyriHaximus
Site Admin
Site Admin
 
Posts: 957
Joined: 13 Feb 2002, 16:14
Cash on hand: 7,040.61
Bank: 103,323.27
Location: Koedijk, Alkmaar, The Netherlands
antispam: No

New postby Mark0 » 24 Mar 2004, 02:32

WyriHaximus wrote:Hi,

This should do it: http://hacks.wyrihaximus.net/user_abuse_hack_1.0.1.txt

Grtz,

WyriHaximus



Hello ..Thanks to update it . i just install it and i got this error

Code: Select all
Fatal error: Call to a member function on a non-object in c:\apache\htdocs\forum\includes\auth.php on line 319



Do u have any idea

Thanks again for this mod . :wink:
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

New postby WyriHaximus » 24 Mar 2004, 13:29

My mistake "AFTER, ADD" should be "BEFORE, ADD" for the cod in includes/auth.php this one is good: http://hacks.wyrihaximus.net/user_abuse_hack_1.0.2.txt

Grtz,

WyriHaximus
Image
User avatar
WyriHaximus
Site Admin
Site Admin
 
Posts: 957
Joined: 13 Feb 2002, 16:14
Cash on hand: 7,040.61
Bank: 103,323.27
Location: Koedijk, Alkmaar, The Netherlands
antispam: No

hello

New postby Mark0 » 27 Mar 2004, 01:05

Hello.

Sorry for Late Reply .. becz iam conf know .. When i did The last time i was in phpbb2.0.6 then it come phpbb2.0.7 then phpbb2.0.7a / and know phpbb2.0.8 so this is why lol anyway thanks again iam going to try to install it agiain and let u know if there is anything wrong with this mod ..
ok

Thanks :wink:
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

Hello..............

New postby Mark0 » 27 Mar 2004, 01:22

Hello..

Here when i try to install it .. i go to creat a group and when i go to check it .. i got this error ...


Code: Select all
Could not obtain user and group information

DEBUG MODE

SQL Error : 1054 Unknown column 'ug.group_moderator' in 'where clause'

SELECT * FROM phpbb_user_group AS ug, phpbb_groups AS g WHERE (ug.user_id = g.group_moderator OR ug.group_moderator = 1) AND g.group_id = 3 AND ug.group_id = 3

Line : 497
File : c:\apache\htdocs\phpbb2\groupcp.php


Do U Have any idea

Thankyou :wink:
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

Re: Hello..............

New postby WyriHaximus » 27 Mar 2004, 16:58

Mark0 wrote:Hello..

Here when i try to install it .. i go to creat a group and when i go to check it .. i got this error ...


Code: Select all
Could not obtain user and group information

DEBUG MODE

SQL Error : 1054 Unknown column 'ug.group_moderator' in 'where clause'

SELECT * FROM phpbb_user_group AS ug, phpbb_groups AS g WHERE (ug.user_id = g.group_moderator OR ug.group_moderator = 1) AND g.group_id = 3 AND ug.group_id = 3

Line : 497
File : c:\apache\htdocs\phpbb2\groupcp.php


Do U Have any idea

Thankyou :wink:
Hi,

Did you excuted this SQl query?:
Code: Select all
ALTER TABLE phpbb_groups ADD group_abuse INT( 1 ) DEFAULT '0' NOT NULL;
Its in the install file.

Grtz,

WyriHaximus
Image
User avatar
WyriHaximus
Site Admin
Site Admin
 
Posts: 957
Joined: 13 Feb 2002, 16:14
Cash on hand: 7,040.61
Bank: 103,323.27
Location: Koedijk, Alkmaar, The Netherlands
antispam: No

yes

New postby Mark0 » 27 Mar 2004, 21:13

Yes i did put this SQL ..

BTW When i try to Creat A Group I put a Mod .. Me Admin.. When i go to Check the grup i get that error and then i try to go post int he forum i cant .. i can view forums view topic but i cant post reply or edit etc.. so there is something is messing with the code ..

thankyou :wink:
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

Any News

New postby Mark000 » 01 Apr 2004, 03:02

Hello..

Any News With this mod .. iam very intersting .. with this mod .. can u let me pls know ..

thankyou and i hope u done it ..

Thankyou
Mark000
 
Cash on hand: Locked
Bank: Locked

New postby WyriHaximus » 05 Apr 2004, 18:00

Hi,

I checked checked and double checked the hack again and I think this error has nothing to do with the hack I wrote :oops:

Did this problem also exists before you added my hack. And if you unhack it does it keeps existing?

Grtz,

WyriHaximus
Image
User avatar
WyriHaximus
Site Admin
Site Admin
 
Posts: 957
Joined: 13 Feb 2002, 16:14
Cash on hand: 7,040.61
Bank: 103,323.27
Location: Koedijk, Alkmaar, The Netherlands
antispam: No

Hmmmmmmmmmmmmmm

New postby Mark0 » 06 Apr 2004, 11:49

hmmmmmmmmmmmmmmm iam conf know but this hack i try to install it many time .. with my Orignal phpbb i mean the phpbb that i already modify and i get the same problem .. and then i install it in the Normal phpbb .. there is no other mod .. installing .. and i get the same this problem ...
did u install it .. and u test it .. if it work or not .. plus i am going to re-install and check if i get this problem again or not .. and iw ill letu know ..

thankyou :wink:
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00

ok here we go

New postby Mark0 » 08 Apr 2004, 15:51

ok here we go ..

i install this mod agian with the Normal phpbb and i test .. it ..i get the same erorr iam sure .. then i go install the profile control panel .. andi get the same error i hope this mod if u done it .. it will work with the profile control panel ... i think it will work becz i just get the same error there is no other erorr come to me ..

thanks very mach .. u can also try to install it ..a nd check .. if u get this erorr or not ..........
Mark0
Starter
Starter
 
Posts: 10
Joined: 12 Mar 2004, 00:17
Cash on hand: 500.00


Return to General phpBB2 Hacks support

Who is online

Users browsing this forum: No registered users and 1 guest

  • Advertisement
cron