Page Index Toggle Pages: 1 [2] 3 4 ... 6 Send TopicPrint
Very Hot Topic (More than 25 Replies) Advanced Memberview Plus 3.1b for SP 1.3.1 (Read 37066 times)
jporterweb
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 45
Location: Heath
Joined: Apr 14th, 2003
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #15 - Jan 29th, 2004 at 3:22pm
Print Post  
batchman wrote on Nov 15th, 2003 at 7:31pm:
Carsten,

Just wondering if this is usable with DocDa's Advanced IM mod, as it makes changes to the original IM file.

I'm getting a new board set up, and am trying to pull these together.



I got this working although this isn't an official endoresement on how to fix this, it would have to be tested.

On step 9 you need to change this.
Code
Select All
	&fatal_error("$badusers $txt{'747'}");
} 


to this
Code
Select All
	&fatal_error("$badusers $imtxt{'88'}");
} 



It appears to me the only problem is a different text call.  It works for me, so I hope it works for you as well...
  
Back to top
 
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #16 - Feb 3rd, 2004 at 5:45am
Print Post  
@Carsten -

Does your show (Days since Last) Online / Post / IM info? Mine is coming up with just dashes instead of numbers.

???
  
Back to top
WWW  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #17 - Feb 3rd, 2004 at 4:21pm
Print Post  
@caliman - Info will come up as dashes until members log-in/post/send IM first time after you install Advanced Memberview Plus.
  

If you knock your head against a brick wall and hear a hollow sound, it's not necessarily coming from the wall.
Back to top
 
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #18 - Feb 3rd, 2004 at 4:39pm
Print Post  
Ahhhhh...... THANKS!  Smiley
  
Back to top
WWW  
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #19 - Feb 7th, 2004 at 7:06pm
Print Post  
Seems to work except for my users online, which only shows me.

I changed the 15 to a 5 in this step so that it matched what I had:

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



Then used the next replace as is:

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



I'm thinking it must be related to this, eh?  Undecided
  
Back to top
WWW  
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #20 - Feb 7th, 2004 at 7:58pm
Print Post  
Here is another tidbit that might help, I have 'Whos online' mod, from my sub.pl:

Code
Select All
	## WHOSON MOD START ##
	fopen(LOG, "$vardir/log.txt");
	my @online = <LOG>;
	fclose(LOG);
	fopen(LOG, ">$vardir/log.txt");
	print LOG rname'}\|$INFO{'num'}|$user_ip\n";
	foreach $curentry (@online) {
		$curentry =~ s/\n//g;
		  ($name, $value, $name1, $name2, $name3, $name4, $name5, $name6, $ipinfo) = split(/\|/, $curentry);
		$date1 = "$value";
		$date2 = "$logdate";
		&calctime;
		if($name ne $field && $result <= 5 && $result >= 0 && $name ne $user_ip) { print LOG "$curentry\n"; }
	}
	fclose(LOG);
	## WHOSON MOD END ## 



If I reinstall it, does it just take a while for the users online to work right, or does it have some incompatibility with the above?

  
Back to top
WWW  
IP Logged
 
olleBengtsson
New Member
*
Offline



Posts: 26
Location: Göteborg
Joined: Jan 4th, 2004
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #21 - Feb 8th, 2004 at 6:16pm
Print Post  
Hi
Really interesting mod... but I cannot get it to install properly. My BoardMod fails in steps 6 and 7, when it looks for strings that are not there.

I have these mods installed:
SMTP_Authorisation.mod
BoardSearch.mod
DisplayUserPW.mod
RemoveModeratorNames.mod
PrevNextPlus.mod
SEARCH_Log.mod
SEARCH_Update.mod
TopStats_11.mod
POST_Linegraph.mod
POST_Linegraph_Karma.mod
ModsInstalled_sp131.mod
SecurityFix_sp.mod
RecentUsersList.mod
ShowLog.mod
ShowOnlineOnDisplay.mod
AddSmiliesLieght_07.mod
YaMS_502_sp13.mod
NewCalendar3_7a.mod
FileAttachment_B2.5.mod
EmailFieldLength1.mod
OnlineClickLogUpdate.mod


Anyone have any idea how to get this one to work?
Any help would be highly appriciated!!
/Olle
  

Running YaBB 1 Gold - SP1.3.1 @ SunwindKlubben hosted on XPhome with a javabased server: Xerver
Back to top
WWW  
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #22 - Feb 9th, 2004 at 8:39pm
Print Post  
Hard to say, get it working yet?

@Cartsen any thoughts you can share on posts 19 & 20?

Tongue
  
Back to top
WWW  
IP Logged
 
olleBengtsson
New Member
*
Offline



Posts: 26
Location: Göteborg
Joined: Jan 4th, 2004
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #23 - Feb 9th, 2004 at 9:06pm
Print Post  
caliman wrote on Feb 9th, 2004 at 8:39pm:
Hard to say, get it working yet?

Nope... I am kinda stuck in that ...  Sad
What I SHOULD do, I think, is restall a whole new set of sourcefiles and then re-install again... maybe I can better hold on what actually happends if doing it a second time. Bur I fear it's a huge job to do... especially since some mods have been in use... such as NewCalender and Fileattachment. (I mean... can I EVER get all to work again...  Tongue )
So it would be SO nice if I could get this going without reinstall it all over again!
Wink
  

Running YaBB 1 Gold - SP1.3.1 @ SunwindKlubben hosted on XPhome with a javabased server: Xerver
Back to top
WWW  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #24 - Feb 9th, 2004 at 9:29pm
Print Post  
@olle and caliman - as far as i can see you both have the "Online/Click Log Combo Update Thingy" (love that name), making things more or less incompatible with Advanced Memberview. Please remember, i did not write any of these mods - BHRA did - so i'm not totally familiar with what problems  extensive fixing would cause. I recommend you un-install "Online/Click Log Combo Update Thingy" (still love that name) if you dont really, really need it.
  

If you knock your head against a brick wall and hear a hollow sound, it's not necessarily coming from the wall.
Back to top
 
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #25 - Feb 9th, 2004 at 9:54pm
Print Post  
@carsten, I am pretty sure I don't have that mod, I think I'd remember that name!  Grin

I do have Whoson Mod and Users Online Counter for SP 1.3.

BHRA is MIA, I'll hammer on it though, any suggestions would be great.
  
Back to top
WWW  
IP Logged
 
Flicker
Senior Member
****
Offline


Six-Strings

Posts: 291
Location: Stockport
Joined: Oct 20th, 2003
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #26 - Feb 9th, 2004 at 10:23pm
Print Post  
An idea for next release:
When the memberlist is sorted by Posts, make the posts button 'pressed in' with the virtue of border-style:inset; and so on. Just makes it a little prettier, I think.
http://www.smile-jesuslovesyou.org/cgi-bin/forum/YaBB.cgi?action=mlpost
^ What i actualy mean
  

www.smile-jesuslovesyou.org/forum
Message boarding- where everybody is always right


"For I am not ashamed of the gospel of Christ..."
Romans 1:16
Back to top
WWW  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #27 - Feb 9th, 2004 at 10:36pm
Print Post  
@caliman - referring to my last post - no compatibility-fixes from me - sorry - i have more than enough to do writing/supporting my own mods  Wink

BHRA - I MISS YOU!!

@Flicker - that's on my todo-list - if there will ever be a new version of YaMS - and yes, it's a YaMS thing, not a Advanced Memberview thing  Wink
  

If you knock your head against a brick wall and hear a hollow sound, it's not necessarily coming from the wall.
Back to top
 
IP Logged
 
caliman
God Member
*****
Offline


Swanky

Posts: 1220
Location: Pt. Richmond
Joined: Mar 20th, 2002
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #28 - Feb 9th, 2004 at 10:44pm
Print Post  
Carsten wrote on Feb 9th, 2004 at 10:36pm:
[glow=red,2,300][b][size=4]BHRA - I MISS YOU!!


I second that.  Grin

@Flicker - Nice tip. I'm gonna do that. Thanks..
  
Back to top
WWW  
IP Logged
 
olleBengtsson
New Member
*
Offline



Posts: 26
Location: Göteborg
Joined: Jan 4th, 2004
Gender: Male
Re: Advanced Memberview Plus 3.1b for SP 1.3.1
Reply #29 - Feb 10th, 2004 at 5:43am
Print Post  
Carsten wrote on Feb 9th, 2004 at 9:29pm:
I recommend you un-install "Online/Click Log Combo Update Thingy" (still love that name) if you dont really, really need it.

SIGH.... uninstall such a pretty name...??  Grin
OK... I will go with that. I think I need/like AM+ better anyway
Thanks Carsten!
PS... BHRA is no longer among us... or what?
  

Running YaBB 1 Gold - SP1.3.1 @ SunwindKlubben hosted on XPhome with a javabased server: Xerver
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 4 ... 6
Send TopicPrint