Page Index Toggle Pages: 1 [2] 3 4  Send TopicPrint
Very Hot Topic (More than 25 Replies) [DONE] Speed Boost Mod (Read 17156 times)
Homey
Senior Member
****
Offline


I love YaBB 1 Gold!

Posts: 291
Joined: Jan 11th, 2002
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #15 - Apr 13th, 2002 at 11:36pm
Print Post  
When you do the changes in yabb.pl "who is online mod" dont show the actions the users are doing.


*edit*

Dont need to do anythin against that i think. I only removed the part in subs.pl. Thats enough speed boost for me  Grin
  

Greetz to all coders and Mod Writers !
Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #16 - Apr 13th, 2002 at 11:40pm
Print Post  
Only when users goto the boardindex or to a message index they will be logged.
  

The Administrator.
Back to top
WWW  
IP Logged
 
joke
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 9
Joined: Apr 1st, 2002
Re: [DONE] Speed Boost Mod
Reply #17 - Apr 14th, 2002 at 9:34am
Print Post  
Grin Thanx works great!!
  
Back to top
 
IP Logged
 
itswheelie
Senior Member
****
Offline


I love YaBB 1 Gold!

Posts: 445
Joined: May 30th, 2001
Re: [DONE] Speed Boost Mod
Reply #18 - Apr 14th, 2002 at 11:18am
Print Post  
Does anyone know if this mod will affect the Advanced Memberview Plus mod.

I notice that it makes a few changes around the writelog routine
  
Back to top
 
IP Logged
 
BHRA Webmaster
God Member
*****
Offline


Mod Author of the Year
2002

Posts: 5238
Location: BHRA Headquarters
Joined: Jan 18th, 2002
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #19 - Apr 14th, 2002 at 12:14pm
Print Post  
It shouldn't cause a problem provided you include this change

Code
Select All
<search for>
            if($name ne $field && $result <= 15 && $result >= 0) { print LOG "$curentry\n"; }
</search for>

<replace>
            if($name ne $field && $result <= $OnlineLogTime && $result >= 0) { print LOG "$curentry\n"; }
            if(-e "$memberdir/$name.dat" && $result > $OnlineLogTime) {&WriteLastOnline($name, $date, "x", "x");}
</replace> 



(I see both of the previous code examples include this code change.)


The Speed Boost mod removes the click-log, but leaves the online-log which the advanced memberview plus mod uses (it's still called, but not as often).
  


World Domination, one smiley at a time!
Back to top
 
IP Logged
 
Zone
Full Member
***
Offline


I love YaBB 1 Gold!

Posts: 129
Joined: Nov 23rd, 2001
Re: [DONE] Speed Boost Mod
Reply #20 - Apr 15th, 2002 at 3:34am
Print Post  
So, bottom line though... if you want to use the "Who is Online" mod, and see what users are doing (with some level of detail), you should not use this mod?

Quote:
When you do the changes in yabb.pl "who is online mod" dont show the actions the users are doing.


*edit*

Dont need to do anythin against that i think. I only removed the part in subs.pl. Thats enough speed boost for me 
  
Back to top
WWW  
IP Logged
 
itswheelie
Senior Member
****
Offline


I love YaBB 1 Gold!

Posts: 445
Joined: May 30th, 2001
Re: [DONE] Speed Boost Mod
Reply #21 - Apr 15th, 2002 at 8:15am
Print Post  
In case anyone is interested the Advanced Memberview Plus mod works perfectly with this mod.

Noticed a nice speed increase with my board too.  Can't comment on server cpu usage tho.

This is definately a "must have" mod.
  
Back to top
 
IP Logged
 
BHRA Webmaster
God Member
*****
Offline


Mod Author of the Year
2002

Posts: 5238
Location: BHRA Headquarters
Joined: Jan 18th, 2002
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #22 - Apr 15th, 2002 at 10:28am
Print Post  
Zone wrote on Apr 15th, 2002 at 3:34am:
So, bottom line though... if you want to use the "Who is Online" mod, and see what users are doing (with some level of detail), you should not use this mod?


You can use this mod, but leave out this bit (this is what Homey said he did)
Code
Select All
<search for>
&WriteLog;            # Write to the log
</search for>

<replace>
if ($action eq "") { &WriteLog; }
</replace> 


(this change says, only call the writelog routine - and who's online - when someone views the index pages)


@itswheelie: Thanks for letting us know!
  


World Domination, one smiley at a time!
Back to top
 
IP Logged
 
itswheelie
Senior Member
****
Offline


I love YaBB 1 Gold!

Posts: 445
Joined: May 30th, 2001
Re: [DONE] Speed Boost Mod
Reply #23 - Apr 15th, 2002 at 11:01am
Print Post  
Quote:
@itswheelie: Thanks for letting us know!


You're welcome.  I forgot to add that it works perfectly after that one change you suggested is made to the mod.
  
Back to top
 
IP Logged
 
Zone
Full Member
***
Offline


I love YaBB 1 Gold!

Posts: 129
Joined: Nov 23rd, 2001
Re: [DONE] Speed Boost Mod
Reply #24 - Apr 16th, 2002 at 1:01am
Print Post  
So will you know which thread they are viewing?  Or just which index?  Posting?  IM?  What won't you see?

I get some troublemakers from time to time... its good to see what they are up to.
  
Back to top
WWW  
IP Logged
 
Gobalopper
Junior Member
**
Offline



Posts: 89
Joined: Jul 27th, 2001
Re: [DONE] Speed Boost Mod
Reply #25 - Apr 16th, 2002 at 5:04am
Print Post  
If you replace the &WriteLog part then you will only see what forum they are viewing, at least thats what I gather from what has been posted.

What I did was just remove the clicklog part of WriteLog and left everything else and Who's Online still works fine.
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #26 - Apr 16th, 2002 at 12:31pm
Print Post  
Correct, that's exactly what BHRA wrote:

Quote:
You can use this mod, but leave out this bit (this is what Homey said he did)
Code
Select All
<search for>
&WriteLog;		# Write to the log
</search for>

<replace>
if ($action eq "") { &WriteLog; }
</replace> 


(this change says, only call the writelog routine - and who's online - when someone views the index pages)


@itswheelie: Thanks for letting us know!

  

The Administrator.
Back to top
WWW  
IP Logged
 
Super P
Guest


Re: [DONE] Speed Boost Mod
Reply #27 - May 14th, 2002 at 2:34am
Print Post  
I downloaded your mod; however, when I try to install it using BoardMod, I get this error message:
No matching string found for

--Search string start--
sub WriteLog{

            ###a bunch of other code

--Search string end--


in file \\  ###the pathway to my Subs.pl

Could you please help me?

Warmest regards
  
Back to top
 
IP Logged
 
BHRA Webmaster
God Member
*****
Offline


Mod Author of the Year
2002

Posts: 5238
Location: BHRA Headquarters
Joined: Jan 18th, 2002
Gender: Male
Re: [DONE] Speed Boost Mod
Reply #28 - May 14th, 2002 at 10:07am
Print Post  
That's because you've installed another mod which has already altered the WriteLog, so BoardMod can't find a perfect match.

It could be "Advanced Memberview Plus" or "Who's Online" as these both alter that code.

If you have either of those mods installed, try uninstalling them, applying the speed boost then reappling them.

[EDIT: Remember to backup your board first!]
  


World Domination, one smiley at a time!
Back to top
 
IP Logged
 
SE7EN
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 7
Joined: Jun 23rd, 2002
Re: [DONE] Speed Boost Mod
Reply #29 - Jun 24th, 2002 at 2:24pm
Print Post  
is there any way to tweak this mod so it only logs Referring Pages? i like to see who is linking to my board so that feature is important to me.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 4 
Send TopicPrint