Page Index Toggle Pages: 1 2 [3] 4 5 ... 14 Send TopicPrint
Very Hot Topic (More than 25 Replies) [DONE] YaMS 4.02 Yet another Memberlist SP1.1/1.2 (Read 70634 times)
-=Creator=-
Full Member
***
Offline


-=I Plan To live For ever...
So far so good=-

Posts: 192
Joined: Aug 30th, 2001
Gender: Male
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #30 - Aug 20th, 2002 at 9:39pm
Print Post  
This may sound a little retarded but were the hell do you go to change the default color for the new section that yabb makes in the admin prefference and settings????
  
Back to top
WWWICQ  
IP Logged
 
chaospixel
New Member
*
Offline


..:: start.a.riot ::..

Posts: 23
Joined: Aug 12th, 2002
Gender: Male
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #31 - Aug 20th, 2002 at 11:15pm
Print Post  
carsten: mail sent Smiley
  

:: Play the game - gaming is lame ::
Back to top
WWWICQ  
IP Logged
 
rustyduck
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 7
Joined: Jul 29th, 2002
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #32 - Aug 21st, 2002 at 12:30am
Print Post  
I get the following 2 error when I install the mod:

Step 58 ... failed - ERR(1): Search string could not be found

Step 62 ... failed - ERR(1): Search string could not be found

I have updated the setting.pl

Any help?

Thanks
  
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #33 - Aug 21st, 2002 at 3:11am
Print Post  
@rustyduck - my guess is that you have the "Even more advanced registration opptions" mod installed - if this is true you can do this:

In the YaMS .mod file near the bottom find:
Code
Select All
<search for>
      print FILE qq~$membershiptotal|$member{'username'}~;
      fclose(FILE);
</search for>
 



Replace it with:
Code
Select All
<search for>
      my $membershiptotal = @memberlist + 1;
      my $membershiptotalx = @memberlist;
      if($regop != 3) {
            fopen(FILE, "+>$memberdir/members.ttl");
            print FILE qq~$membershiptotal|$member{'username'}~;
            fclose(FILE);
      }else {
            fopen(FILE, "$memberdir/members.ttl");
            $tmpb = <FILE>;
            fclose(FILE);
            ($tmp, $tmpa) = split(/\|/, $tmpb);
            fopen(FILE, "+>$memberdir/members.ttl");
            print FILE qq~$membershiptotalx|$tmpa~;
            fclose(FILE);
      }
</search for>
 



And in your Subs.pl go to the bottom and make a blank line just above the:
1;

Now you should be able to install the mod.
  

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
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #34 - Aug 21st, 2002 at 5:02am
Print Post  
Quote:
This may sound a little retarded but were the hell do you go to change the default color for the new section that yabb makes in the admin prefference and settings????


In AdminEdit.pl - the large HTML part of the sub ModifySettings
  

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


I love YaBB 1G - SP1!

Posts: 7
Joined: Jul 29th, 2002
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #35 - Aug 22nd, 2002 at 10:12pm
Print Post  
I am still getting:

Step 58 ... failed - ERR(10): The search string is empty! However an empty <search for> argument is

not allowed because it would make the mod unremoveable.

Here are the mods that are installed:

YaBB 1 Gold - SP 1.1\mbc2_sp11.mod
YaBB 1 Gold - SP 1.1\file_attachment.mod
YaBB 1 Gold - SP 1.1\newcalendar3_4.mod
YaBB 1 Gold - SP 1.1\advanced_registration_options_sp1.mod
YaBB 1 Gold - SP 1.1\EMARO1.mod
YaBB 1 Gold - SP 1.1\AdvancedLogAnalysis.mod


Thanks
  
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #36 - Aug 22nd, 2002 at 10:30pm
Print Post  
@rustyduck - i guess it must be a problem with the EMARO mod changing the Register.pl
You could try this:
In the YaMS mod near the bottom find:
Code
Select All
<search for>
      print FILE qq~$membershiptotal|$member{'username'}~;
      fclose(FILE);
</search for>
 



and replace it with:
Code
Select All
<search for>
      my $membershiptotal = @memberlist + 1;
      my $membershiptotalx = @memberlist;
      if($regop != 3) {
            fopen(FILE, "+>$memberdir/members.ttl");
            print FILE qq~$membershiptotal|$member{'username'}~;
            fclose(FILE);
      }else {
            fopen(FILE, "$memberdir/members.ttl");
            $tmpb = <FILE>;
            fclose(FILE);
            ($tmp, $tmpa) = split(/\|/, $tmpb);
            fopen(FILE, "+>$memberdir/members.ttl");
            print FILE qq~$membershiptotalx|$tmpa~;
            fclose(FILE);
      }
</search for>
 


no guaranties as i know there are some incompatibility issues between EMARO and YaMS.
Maybe the best thing to do is to uninstall EMARO - install YaMS - install EMARO for YaMS.
Hope this will be helpfull.
  

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


I love YaBB 1G - SP1!

Posts: 7
Joined: Jul 29th, 2002
Re: [BETA] YaMS 4.0 - Yet another Memberlist SP1/1
Reply #37 - Aug 23rd, 2002 at 5:20am
Print Post  
I uninstalled the EMARO mod and everything works fine. 


Thanks
  
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #38 - Aug 24th, 2002 at 4:48am
Print Post  
I've fixed some minor bugs conserning bgcolor in admin-center, default bar and barsurl/barsdir.

Download ver. 4.02 from first post.

This should be the final version.  Cheesy
  

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


:emotional pulsations:

Posts: 104
Location: København
Joined: May 31st, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #39 - Sep 1st, 2002 at 9:32pm
Print Post  
I tried installing ver. 3.53, but I couldn't. It failed at step 1. So I downloaded this version 4.02, and it fails at step 7, with the same following error message:

[Edit: Error Image deleted]

I have the following mods installed:

Add More Smilies 2.0 SP 1.1
Advanced MemberView Plus (possible error cause, maybe?)
Advanced System EMails
All Mod
More Board And Category Options 2.0
MemberMap
Poll Mod 2.0
Quick Reply Box
Recycle Bin Mod
Report To Moderator 1.3
Speed Boost
Spoiler Mod 2

Smiley
« Last Edit: Sep 4th, 2002 at 10:54pm by x-framez »  
Back to top
WWW  
IP Logged
 
Jake
God Member
*****
Offline



Posts: 1265
Location: asia
Joined: Jun 22nd, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #40 - Sep 2nd, 2002 at 6:43am
Print Post  
Grin it will be great if it's possible to upgrade this mod from v.3.53 to v.4up by no need to uninstall the old version Cheesy Tongue Lips Sealed
bcause i installed over 60 mods on my board manually Cry Cry Cry Cry
i've never used BoardMod Lips Sealed Personally i don't like it

Wink Wink Wink Wink Wink
i hate the word like these Angry Angry
******************
No matching string found
******************

******************
ERROR IN STEP 1 3 4 5 ....
******************
Lips Sealed Lips Sealed Lips Sealed Lips Sealed Lips Sealed Lips Sealed Lips Sealed Lips Sealed
  

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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #41 - Sep 2nd, 2002 at 10:09am
Print Post  
@x-framez - the problem is that the Speed Boost mod replaces that line in YaBB.pl

You can open the YaMS mod file and find:
Code
Select All
&WriteLog;            # Write to the log 



and replace it with:
Code
Select All
if ($action eq "") { &WriteLog; } 



then you should be able to install YaMS.


@Jake - YaMS 4.02 is more or less a total rewrite, so an update would be allmost as large as the mod it self.  Smiley
  

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


:emotional pulsations:

Posts: 104
Location: København
Joined: May 31st, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #42 - Sep 2nd, 2002 at 8:43pm
Print Post  
I tried doing what you said...but it just gave me the same error...but this time with what I replaced it with.

Code
Select All
No matching search string found for if ($action eq "") { &WriteLog; } 

or something like that.
  
Back to top
WWW  
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #43 - Sep 2nd, 2002 at 8:47pm
Print Post  
@x-framez - if you mail me your YaBB.pl i'll have a look and see what i can do.
  

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


:emotional pulsations:

Posts: 104
Location: København
Joined: May 31st, 2002
Gender: Male
Re: [BETA] YaMS 4.02 - Yet another Memberlist SP1/
Reply #44 - Sep 2nd, 2002 at 8:59pm
Print Post  
You've got mail! Wink
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 2 [3] 4 5 ... 14
Send TopicPrint