Page Index Toggle Pages: 1 ... 11 12 [13] 14  Send TopicPrint
Very Hot Topic (More than 25 Replies) YaMS 5.02 - Yet another Memberlist SP 1.3.1 (Read 69192 times)
herozup
Senior Member
****
Offline


I can't feel my legs!

Posts: 282
Location: Canton
Joined: Feb 9th, 2003
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #180 - May 28th, 2004 at 10:17pm
Print Post  
Got it! Please accept my apologies.  Tongue Tongue Tongue
  

Learning Perl... one line of code at a time!
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #181 - May 28th, 2004 at 10:34pm
Print Post  
NP - have not seen you around for a while - guess you just need to get back on track...  Grin
  

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
 
Berg
Guest


Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #182 - Jun 2nd, 2004 at 9:02pm
Print Post  
I got an error on step 61, any clue?
  
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #183 - Jun 2nd, 2004 at 11:01pm
Print Post  
@Berg - would need to know which other mods you have installed - especially mods that make changes to your main menu.
  

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
 
Omniverse
Full Member
***
Offline


The only real HOLE!!!

Posts: 116
Location: Des Moines
Joined: Jun 25th, 2004
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #184 - Jul 19th, 2004 at 12:03pm
Print Post  
hmmm, well, i have this installed, and everything works great. Today, however, i discovered that i do not have the extra features for the buddylist. Any ideas what might cause this?

and like.. OMFG, i just now noticed your eye opens on your avatar, freaked me out Tongue
  

The only real HOLE!!!
Back to top
WWW  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #185 - Jul 19th, 2004 at 12:43pm
Print Post  
@Omniverse - did you check 'Enable Buddylist' in Admin Center - Forum Preferences and Settings?

(Sorry if i scared the socks off you.)  Grin
  

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
 
Omniverse
Full Member
***
Offline


The only real HOLE!!!

Posts: 116
Location: Des Moines
Joined: Jun 25th, 2004
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #186 - Jul 19th, 2004 at 12:45pm
Print Post  
Ayup..

ok wait, maybe this is my error..are these added features available from the normal buddylist on the main menu, or just from the memberlist?
  

The only real HOLE!!!
Back to top
WWW  
IP Logged
 
jessicah
New Member
*
Offline


Anything too stupid to
be said is sung. ~Voltaire~

Posts: 41
Location: Austin
Joined: Jul 13th, 2004
Gender: Female
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #187 - Jul 21st, 2004 at 7:15am
Print Post  
ok. question. Installed the mod with boardmod and went fine but nothing is showing up in admin forum prefs. I know it's there cause I can see it in the code but it's just not showing up. The entire part listed below can be seen when you view the adminedit.pl in a text editor but isn't showing up when you run it from the board.

Code
Select All
  </tr><tr>
    <td colspan=2 class="windowbg2" bgcolor="$color{'windowbg2'}">
    <HR size=1 width="100%" class="hr"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'75'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=text name="numposts" size="5" value="$numposts"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'52'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=text name="imspam" size="5" value="$imspam" maxlength="2"></td>
 </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'43'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=checkbox name="enable_buddies" $enable_buddieschecked></td>
 </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'30'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=checkbox name="enable_mailsounds" $senablemailsounds></td>
 </tr><tr>~;
if($soundsdir && opendir(DIR, "$soundsdir")) {
		opendir(DIR, "$soundsdir") || fatal_error("$txt{'230'} ($soundsdir)!<BR>$imtxt{'27'}");
		@contents = readdir(DIR);
		closedir(DIR);
		$sounds = "";
		if ($sound eq "blank.wav" || $sound eq "") { $sounds = qq~<option value="blank.wav"$checked selected>$imtxt{'28'}\n~; }
		else { $sounds = qq~<option value="blank.wav"$checked>$imtxt{'28'}\n~; }
		foreach $line (sort @contents) {
			chomp($line);
			($name, $extension) = split (/\./, $line);
			$checked = "";
			if ($line eq "$sound") { $checked = ' selected'; }
				if($extension =~ /wav/i) {
				$sounds .= qq~<option value="$line"$checked>$name\n~;
				}
			}
$yymain .= qq~
<bgsound id="sound">
<script language="JavaScript1.2" type="text/javascript">
<!--
function playSound() { document.all.sound.src = "$soundsurl/"+document.all.sounds_on.options[document.all.sounds_on.selectedIndex].value; }
//-->
</script>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size=2>$imtxt{'76'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><select name="sounds_on" size="4" onChange="playSound()">$sounds</select>
</td></tr>
~;
} else {
$yymain .= qq~<script language="javascript"> alert("$imtxt{'77'}"); </script>~;
}
$yymain .= qq~
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'05'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=checkbox name="enable_mailpopup" $senablemailpopup></td>
 </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'44'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=checkbox name="popup_on" $popup_onchecked></td>
 </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'06'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}" width="50"><input type=checkbox name="enable_imlimit" $senableimlimit></td>
 </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'03'} $txt{'320'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=text name="numobox" size="5" value="$numobox"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'03'} $txt{'316'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=text name="numibox" size="5" value="$numibox"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'03'} $imtxt{'46'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=text name="numstore" size="5" value="$numstore"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'33'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=checkbox name="send_welcomeim" $send_welcomeimchecked></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'86'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type=checkbox name="system_im" $system_imchecked></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'34'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><input type "text" name="sendname" size="35" value="$sendname"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'36'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><textarea name="imsubject" cols="35" rows="1">$imsubject</textarea></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size="2">$imtxt{'35'}</font></td>
    <td class="windowbg2" bgcolor="$color{'windowbg2'}"><textarea name="imtext" cols="35" rows="4">$imtext</textarea></td>
  </tr><tr>
    <td colspan=2 class="windowbg2" bgcolor="$color{'windowbg2'}">
    <HR size=1 width="100%" class="hr"></td> 



These are the mods I have installed.
YaBB 1 Gold - SP 1.3\yams_403_sp13.mod
YaBB 1 Gold - SP 1.3\yams_403_profil_add_ip.mod
YaBB 1 Gold - SP 1.3\yams_403_buddy_addon.mod
YaBB 1 Gold - SP 1.3\amm_sp131_15.mod
YaBB 1 Gold - SP 1.3\addsmilies2_sp13.mod
YaBB 1 Gold - SP 1.3\mbc2_sp13.mod
YaBB 1 Gold - SP 1.3\SMTP_Authorisation2.mod
YaBB 1 Gold - SP 1.3\TravelMap_1_0.mod
YaBB 1 Gold - SP 1.3\Polls_3_SP13.mod
YaBB 1 Gold - SP 1.3\reg_fld_prot_uk_YaMs.mod
YaBB 1 Gold - SP 1.3\ModsInstalled_sp131.mod
YaBB 1 Gold - SP 1.3\removereturns_1_2.mod
YaBB 1 Gold - SP 1.3\greetplus_v_1_0a.mod

suggestions?
  

"It is dangerous to be right when the government is wrong." ~Voltaire~
Back to top
ICQYIM  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #188 - Jul 21st, 2004 at 8:32am
Print Post  
@jessicah - none of that code are YaMS related - looks like 'Adv. Instant Messages' code.
  

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
 
Jessica
Guest


Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #189 - Jul 21st, 2004 at 8:43am
Print Post  
hmmm. weird. I haven't installed that one yet. Man I really don't want to start from scratch again. *sigh* any reason why the checkbox might not be showing in the admin forum prefs?
  
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #190 - Jul 21st, 2004 at 8:51am
Print Post  
he he, hmmm, i'd say it's not installed...
  

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
 
jessicah
New Member
*
Offline


Anything too stupid to
be said is sung. ~Voltaire~

Posts: 41
Location: Austin
Joined: Jul 13th, 2004
Gender: Female
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #191 - Jul 21st, 2004 at 9:20am
Print Post  
No, Like, I swear to God I've uninstalled it and reinstalled it with boardmod. Last time I did it by hand just to make sure. UGH. Oh well. Here we go again. Somebody shoot me.
  

"It is dangerous to be right when the government is wrong." ~Voltaire~
Back to top
ICQYIM  
IP Logged
 
jessicah
New Member
*
Offline


Anything too stupid to
be said is sung. ~Voltaire~

Posts: 41
Location: Austin
Joined: Jul 13th, 2004
Gender: Female
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #192 - Jul 21st, 2004 at 11:15pm
Print Post  
Ok. so I started from scratch. Unzipped everything all over again. all I have installed are the YAMS 5.02 and the buddylist addon. Still not seeing anything in forum prefs and settings like you said in #185. What am I doing wrong? edit yabb.pl to perl path. edit settings to yamsfolder. upload. no need to chmod it's win2k. Bam. It should be there right? I'll give you access to the board if that will help. Let me know. Thanks!!
  

"It is dangerous to be right when the government is wrong." ~Voltaire~
Back to top
ICQYIM  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #193 - Jul 22nd, 2004 at 12:00am
Print Post  
-k, let me have a look - you can IM me the account details.

btw. - there's no buddylist addon - it's standard in 5.02??
  

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
 
milldogg
New Member
*
Offline


United we stand United
we fall

Posts: 33
Joined: Aug 10th, 2002
Re: YaMS 5.02 - Yet another Memberlist SP 1.3.1
Reply #194 - Jul 22nd, 2004 at 3:19am
Print Post  
YAMS 4.03 I want to unistall it so i can put YAMS 5.02 up but it wont uninsall any suggestions???
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 ... 11 12 [13] 14 
Send TopicPrint