Page Index Toggle Pages: 1 [2] 3  Send TopicPrint
Very Hot Topic (More than 25 Replies) YaMMS 4 YaBB 2.4 (final release 1.0) (Read 26408 times)
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.1)
Reply #15 - Sep 25th, 2009 at 11:55am
Print Post  
chillipepper wrote on Sep 25th, 2009 at 6:16am:
i ran all rebuilds etc but the only thing is the members map..every member now dont have an pin on any maps

Did you run the 'Rebuild Members List' before you installed YaMMS? If you did the members map info will be lost, and the members will have to "re-pin" their location.

Ofcourse you could add the map info from your 2.3.1 backup manually (a real drag!). you'll find the info in the members .vars file - something in this format:
Code
Select All
'country',"Denmark"
'state',""
'map',"Europe"
'xcoord',"266"
'ycoord',"174"
'memberlist',"0|0|1|1|0|0|0|0|0|0|0|0|0" 



Edited:
Ok - i've wiped up a small 'Rebuild Tool' for your convinience  Wink
Copy all members files from your old 2.3.1 to the "/Convert/Members" on your 2.4 forum. Then run the attached "MapRebuild.pl" (remember to change the path to perl at the top if needed.

BUT FIRST: BACKUP!!
« Last Edit: Sep 25th, 2009 at 5:12pm by Carsten »  

MapRebuild.zip ( 1 KB | Downloads )

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


I love YaBB 1G - SP1.2!

Posts: 189
Joined: Jul 1st, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.1)
Reply #16 - Sep 26th, 2009 at 6:07am
Print Post  
I was just gettin ready to do them by hand,but i thougt i would just check board mod 1 more time see if there anything new.then i read your edit post about Map Rebuild tool you write..i thougt i will try it before and maybe it will work..well i did and all i can say is WOW It worked very well and only took less than 1 sec.lol thougt did it work at 1st being done  sooo quick..and it did..Big thanks your a star and a very good coder. Wink save me alot of time

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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.2)
Reply #17 - Oct 1st, 2009 at 12:59am
Print Post  
Fixed small bug in Memberlist.pl showing admin and gmod as online even if in stealth mode. All changes are in Memberlist.pl - attached new zip to first post.

If you dont want to re-apply the complete mod here's the fix:

In Memberlist.pl find
Code
Select All
			$onlinemem = qq~<img src="$imagesdir/red1.gif" border="0" alt="$maptxt{'47'}" />~;
			fopen(FILE, "$vardir/log.txt");
			@entries = <FILE>;
			fclose(FILE);
			foreach $curentry (@entries) {
				chomp $curentry;
				($onname, $onvalue, $onip) = split(/\|/, $curentry);
				if($onname eq $user) { $onlinemem = qq~<img src="$imagesdir/green1.gif" border="0" alt="$maptxt{'46'}" />~; }
			} 


and replace it with
Code
Select All
			$onlinemem = qq~<img src="$imagesdir/red1.gif" border="0" alt="$maptxt{'47'}" title="$maptxt{'47'}" />~;
			fopen(FILE, "$vardir/log.txt");
			@entries = <FILE>;
			fclose(FILE);
			foreach $curentry (@entries) {
				chomp $curentry;
				($onname, $onvalue, $onip) = split(/\|/, $curentry);
				if($onname eq $user) {
					if(${$uid.$user}{'stealth'}) { if($iamadmin || $iamgmod) { $onlinemem = qq~<img src="$imagesdir/green0.gif" border="0" alt="$maptxt{'46'}" title="$maptxt{'46'}" />~; } }
					else { $onlinemem = qq~<img src="$imagesdir/green1.gif" border="0" alt="$maptxt{'46'}" title="$maptxt{'46'}" />~; }
					last;
				}
			} 




@Chillipepper - Glad it worked out for you  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
 
Derek Barnstorm
God Member
*****
Offline



Posts: 1146
Location: Warwickshire
Joined: Mar 23rd, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.2)
Reply #18 - Nov 25th, 2009 at 9:06pm
Print Post  
I know this is in final, but I noticed a slight issue with this yesterday while I was making the notepad mod compatible - When modifying member profiles, there's a double breadcrumb for the Buddy List (See the attached image). I think you just need to add a step to remove the highlighted code from the ModifyProfileBuddy sub:

Code
Select All
<table cellspacing="1" cellpadding="4" width="100%" align="center" class="bordercolor" border="0">
	<tr>
		<td colspan="2" class="catbg"><img src="$imagesdir/profile.gif" alt="" border="0" /> <b>$profiletitle</b></td>
	</tr>~; 


I am a little puzzled why you did it this way though, and didn't keep the layout how it was?

There also seems to be a break tag missing somewhere (see second attached image), the gender info is on the same line as the location.

I'm really not expecting it to be fixed for this version, I just thought I'd point it out for future reference while it was still fresh in my head.
  

YaMMSBuddyModify.png ( 30 KB | Downloads )
YaMMSBuddyModify.png
YaMMSBR.png ( 6 KB | Downloads )
YaMMSBR.png
Back to top
 
IP Logged
 
Carsten
God Member
*****
Offline


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.2)
Reply #19 - Nov 26th, 2009 at 5:25am
Print Post  
Derek Barnstorm wrote on Nov 25th, 2009 at 9:06pm:
I know this is in final

Nope - i never released this mod as final - look at the version numbers. Why it was moved to the final board i don't have a clue.

Derek Barnstorm wrote on Nov 25th, 2009 at 9:06pm:
When modifying member profiles, there's a double breadcrumb for the Buddy List (See the attached image). I think you just need to add a step to remove the highlighted code from the ModifyProfileBuddy sub:

There's a little more to it than just remove it - anyway, fixed now.

Derek Barnstorm wrote on Nov 25th, 2009 at 9:06pm:
I am a little puzzled why you did it this way though, and didn't keep the layout how it was?

I'm not sure i fully understand that question? The simple answer would be: I like it better this way  Wink
The longer answer is that it's more 'YaMMS consistant' - looks more like the title/menu in View Profile.

Derek Barnstorm wrote on Nov 25th, 2009 at 9:06pm:
There also seems to be a break tag missing somewhere (see second attached image), the gender info is on the same line as the location.

Yep - fixed now.

Small, not so important change: Made expire info under the submit button a little more informative now showing minutes and seconds instead of just seconds.

New zip package attached to first post.
Changes are in Profile.lng, Display.pl, Profile.pl and Yamms.pl
« Last Edit: Nov 26th, 2009 at 9:41am by Carsten »  

yammsexpire.png ( 2 KB | Downloads )
yammsexpire.png

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



Posts: 1146
Location: Warwickshire
Joined: Mar 23rd, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #20 - Nov 26th, 2009 at 7:28pm
Print Post  
Thanks Carsten. All is good now.

Carsten wrote on Nov 26th, 2009 at 5:25am:
I'm not sure i fully understand that question? The simple answer would be: I like it better this way  
The longer answer is that it's more 'YaMMS consistant' - looks more like the title/menu in View Profile.

Ah. Okay, cool. I just wondered why they were totally removed, but I've noticed that you keep the titles in the User CP with this version though. I hope I didn't sound rude in asking. I wasn't complaining, I was just curious.

Carsten wrote on Nov 26th, 2009 at 5:25am:
Small, not so important change: Made expire info under the submit button a little more informative now showing minutes and seconds instead of just seconds.

I like that change. Do you mind if I make that edit to the YaMMS Compatible Notepad Mod so it's consistent for people using both Mods?

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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #21 - Nov 26th, 2009 at 8:15pm
Print Post  
Derek Barnstorm wrote on Nov 26th, 2009 at 7:28pm:
I hope I didn't sound rude in asking. I wasn't complaining, I was just curious.

Rude? No way near - ask away...  Smiley

Derek Barnstorm wrote on Nov 26th, 2009 at 7:28pm:
I like that change. Do you mind if I make that edit to the YaMMS Compatible Notepad Mod so it's consistent for people using both Mods?

Of course i don't mind - but it's always a little tricky to make mods compatible with other beta mods. It would be preferable if you make your mod compatible with this latest (0.3.1) version.
  

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



Posts: 1146
Location: Warwickshire
Joined: Mar 23rd, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #22 - Nov 26th, 2009 at 10:32pm
Print Post  
Thank you!

Okay, I've made it compatible with 0.3.1
  
Back to top
 
IP Logged
 
pyragony
Junior Member
**
Offline


abgeschlafft und ausgebufft

Posts: 85
Location: Eichenau
Joined: Apr 26th, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #23 - Dec 6th, 2009 at 12:45pm
Print Post  
New Germanfiles here
  

yamms_German.mod ( 1 KB | Downloads )

Back to top
WWW  
IP Logged
 
batchman
Global Moderator
*****
Offline


What's up?!

Posts: 1280
Location: Orlando
Joined: Apr 28th, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #24 - Dec 15th, 2009 at 2:30am
Print Post  
I have a problem. OK, I have several problems ... but most of them are beyond help. I have a YaMMS problem.

A few months ago, I got a nasty virus, had to wipe my system, and start from scratch. In the process, I lost my old test boards, which is why I haven't been doing anything with new mods for the last few months. Today I finally downloaded everything, and started in again.

I did a brand new install, and got the board working smoothly. Then I added the Calendar mod, tested, and made sure everything still worked. It did. Then I added YaMMS, uploaded everything I can think of, CHMODed everything, and then went to my forum. And suddenly all the graphics are gone, and I can't do anything. I seem to recall problems such as this in the older version, due to not following a step regarding the bars folder, but all folders and images are in the right place. All images are CHMODed to 755, and were uploaded in binary.

I realise I have to have made some tiny, stupid error to cause this, but I can't for the life of me figure out what it was.

(If I remove the mod, the forum goes back to being accessible, and it installed without any problems.)
  

Improving my forum, one mod at a time!


Now up and running again, with an accurate link.


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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #25 - Dec 15th, 2009 at 6:48am
Print Post  
@ batchman - I just now set up a brand new test board (just to make sure) and installed EventCal and then YaMMS (beta 0.3.1) - no problems at all. In other words - i don't have a clue what could have gone wrong for you.

batchman wrote on Dec 15th, 2009 at 2:30am:
I seem to recall problems such as this in the older version, due to not following a step regarding the bars folder

I guess you are recalling a very old problem with y 1.3.x and earlier where the 'Save' button dissapeared if the path to the bars folder was not correct. That's ancient history  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
 
batchman
Global Moderator
*****
Offline


What's up?!

Posts: 1280
Location: Orlando
Joined: Apr 28th, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #26 - Dec 16th, 2009 at 2:32am
Print Post  
I figured it probably was, since there were no longer warnings about it.

I don't know what's wrong ... I guess I will have to try once more, then just scrap the entire installation, and begin from scratch again.

But I had to check, just in case there was a problem introduced in the last upgrade. (You're terrific, but not even you are absolutely perfect.)  Cheesy

Edited:
Tried again. Downloaded a new pod package in case corruption somehow crept in on the first one ... but when I install the mod and upload all the files, somehow it breaks YaBB attempting to use my paths. Suddenly all my graphics paths look like this: http://www.jonbatchelor.com/tabfill.gif and nothing works.

I guess I will have to wipe out the entire installation and start from scratch. Darn! More time before I can test all the new stuff!
« Last Edit: Dec 16th, 2009 at 7:35am by batchman »  

Improving my forum, one mod at a time!


Now up and running again, with an accurate link.


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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #27 - Dec 16th, 2009 at 1:19pm
Print Post  
That's strange batchman. I've done another new install - this time i downloaded the package from here to check for any sort of corruption - still no problems at all. I now have this version on 6 different test boards - installed and running smoothly.

Btw. the link in your 'Edited' box gives a 404 not found error.
  

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
 
batchman
Global Moderator
*****
Offline


What's up?!

Posts: 1280
Location: Orlando
Joined: Apr 28th, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (beta 0.3.1)
Reply #28 - Dec 31st, 2009 at 8:52pm
Print Post  
All right, I don't know what the problem was, but I wiped the slate clean, then downloaded new YaBB, new BoardMod, new YaMMS mod, and started from scratch. This time everything went smoothly. Must have just been a bad download of -something-, though I don't know what.

Since I now have the first (main) two mods installed, later tonight I'll start adding more and testing new stuff.

Sorry for the hassles, Carsten ... you're still the best!
  

Improving my forum, one mod at a time!


Now up and running again, with an accurate link.


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


...to much YaMS

Posts: 3281
Location: Langå
Joined: Aug 2nd, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.4 (final release 1.0)
Reply #29 - Feb 10th, 2010 at 2:50am
Print Post  
This mod has been in the final mods board for quite a while - so i thought it was about time i got around and released it as final - done now!

Cleaned out some non valid inline css (cursor: hand) - all in Yamms.pl  Embarrassed

New zip package attached to first post.
  

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
 
Page Index Toggle Pages: 1 [2] 3 
Send TopicPrint