Page Index Toggle Pages: 1 [2] 3  Send TopicPrint
Very Hot Topic (More than 25 Replies) [2.3] YaMMS 4 YaBB 2.3 - beta 0.71 (Read 16178 times)
batchman
Global Moderator
*****
Offline


What's up?!

Posts: 1280
Location: Orlando
Joined: Apr 28th, 2002
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.1
Reply #15 - Dec 28th, 2008 at 11:17pm
Print Post  
So here's an issue I ran into.

I installed Carsten's mod, which modified taborder.txt directly in BoardMod (had to download it first). Member Map then showed up on the main menu on my forum.

I then installed Jet Li's calendar update. It doesn't automatically update taborder.txt. In connection with a discussion I had with Jet Li in the past, I just deleted the taborder.txt file, and let the software recreate it. It added in the quiz mod, and the calendar mod tabs, but did not add in the member map tab. I had to manually add it.

I'll manually add the chat mod (to tabs), once I install it, and any others that don't add to taborder.txt in the mod itself (and I'll edit the quiz mod so it does include the edit automatically ... hoping that, as Carsten suggests, the taborder.txt will be included in the actual package for 2.3.1) ... but should it worry me that when YaBB recreates the file, it doesn't include member map on it? Are there any times or reasons when one would want YaBB to be able to recreate this?
  

Improving my forum, one mod at a time!


Now up and running again, with an accurate link.


Back to top
WWW  
IP Logged
 
laurin31135
New Member
*
Offline


I love YaBB 2.2.3

Posts: 48
Location: vor der Höhe
Joined: Aug 11th, 2008
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.1
Reply #16 - Dec 28th, 2008 at 11:40pm
Print Post  
Now I have got the problem, that since I have installed this mod, The Random-Quote-Mod is not working correct again.

I've been using it in the news fader to show a Quote within the news. Now I can only see "[tagline]" instead of the quote!

And the profile has got less space, so that the text of the Membergroup for example is written across the profile picture.
  
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.3 - beta 0.1
Reply #17 - Dec 29th, 2008 at 12:12am
Print Post  
batchman wrote on Dec 28th, 2008 at 11:17pm:
So here's an issue I ran into.

I installed Carsten's mod, which modified taborder.txt directly in BoardMod (had to download it first). Member Map then showed up on the main menu on my forum.

I then installed Jet Li's calendar update. It doesn't automatically update taborder.txt. In connection with a discussion I had with Jet Li in the past, I just deleted the taborder.txt file, and let the software recreate it. It added in the quiz mod, and the calendar mod tabs, but did not add in the member map tab. I had to manually add it.

I'll manually add the chat mod (to tabs), once I install it, and any others that don't add to taborder.txt in the mod itself (and I'll edit the quiz mod so it does include the edit automatically ... hoping that, as Carsten suggests, the taborder.txt will be included in the actual package for 2.3.1) ... but should it worry me that when YaBB recreates the file, it doesn't include member map on it? Are there any times or reasons when one would want YaBB to be able to recreate this?

Two issues:

1) Deleting the taborder.txt file will make the script recreate the file according to the tabs array, but any additional tabs created by admin will be lost.

2) Having a mod change the tabs array will prevent any other mod to use that as a search string, adding new tabs.

I've added a push command to the YaMMS mod to at least add the membermap tab at the end of the menu should the taborder.txt file be deleted - then it can be moved into its proper position with the edit tabs function.

New zip package in first post - changes are in AdvancedTabs.pl
  

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


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.1
Reply #18 - Dec 29th, 2008 at 11:11am
Print Post  
@Carsten
this can be removed. Is display 2x in Posts.

default/Display.template
Code
Select All
		{yabb location}<br /> 



yabb21/Display.template
Code
Select All
		<yabb location><br /> 

  

greetings
Jeff
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.3 - beta 0.2
Reply #19 - Dec 29th, 2008 at 11:20pm
Print Post  
Instead of removing the location tags i've made the script use them for the "yamms" location info now.

New beta 0.2 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
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.2
Reply #20 - Dec 30th, 2008 at 7:57am
Print Post  
thnx Carsten. Looks Perfect.

Maybe change this step, then no need compatible mod with chat, quiz, etc...

Code
Select All
<edit file>
Sources/AdvancedTabs.pl
</edit file>

<search for>
	fopen(TABFILE, ">$vardir/taborder.txt",1) || &fatal_error('cannot_open', "$vardir/Menuorder.txt", 1);
</search for>

<add before>
	push(@tabs, "membermap");
</add before> 



Can you fix the language issue on Membermap Tab?
  

greetings
Jeff
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.3 - beta 0.2
Reply #21 - Dec 30th, 2008 at 1:25pm
Print Post  
Quote:
thnx Carsten. Looks Perfect.

Maybe change this step, then no need compatible mod with chat, quiz, etc...

Code
Select All
<edit file>
Sources/AdvancedTabs.pl
</edit file>

<search for>
	fopen(TABFILE, ">$vardir/taborder.txt",1) || &fatal_error('cannot_open', "$vardir/Menuorder.txt", 1);
</search for>

<add before>
	push(@tabs, "membermap");
</add before> 


?

Why should i change that - i did it that way to make it more compatible by not changing the tabs array.

Quote:
Can you fix the language issue on Membermap Tab?

Aber natürlich - new beta 0.3 zip attached to first post. Changes are in Menu.lng and TabMenu.pl

German patch for Menu.lng would be nice Jet  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
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.3
Reply #22 - Dec 30th, 2008 at 1:48pm
Print Post  
thnx Works now.

Attached in preview post.

http://www.boardmod.org/yabb/YaBB.pl?board=beta_y23;action=display;num=123049365...

Because I have this in AdvancedTabs.pl

Code
Select All
	@tabs = qw (home help search chatirc ml eventcal birthdaylist admin revalidatesession login register guestpm mycenter logout); 



it could not find it.  Wink
  

greetings
Jeff
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.3 - beta 0.3
Reply #23 - Dec 30th, 2008 at 1:57pm
Print Post  
Quote:
Because I have this in AdvancedTabs.pl

Code
Select All
	@tabs = qw (home help search chatirc ml eventcal birthdaylist admin revalidatesession login register guestpm mycenter logout); 



it could not find it.  Wink

The YaMMS mod does not use the tabs array as a search string so there should not be any problem finding it  Wink

That's exactly my point. No mod should add elements directly to the tabs array - elements should be push'ed into the array as it's done in the YaMMS 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
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.3
Reply #24 - Dec 30th, 2008 at 2:06pm
Print Post  
oki doki, I will do it in my next mod Version to make same way as in your mod.  Smiley Then we have not conflict on install with Boarmod Software.
  

greetings
Jeff
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.3 - beta 0.3
Reply #25 - Dec 30th, 2008 at 6:01pm
Print Post  
And I'll figure the same way to do things for quiz ... then it is easier to install all of them, I hope.
  

Improving my forum, one mod at a time!


Now up and running again, with an accurate link.


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


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.3
Reply #26 - Jan 1st, 2009 at 9:59pm
Print Post  
Hi Carsten
next issue.  Grin On Edit Tabs for other languages.
  

edit-tab-yamms-issue.png ( 27 KB | Downloads )
edit-tab-yamms-issue.png

greetings
Jeff
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.3 - beta 0.3
Reply #27 - Jan 1st, 2009 at 11:06pm
Print Post  
Fixed encryption of username in location links in posts. Fixed language problems in edit tabs. New zip in 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
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.4
Reply #28 - Jan 2nd, 2009 at 9:21am
Print Post  
thnx Carsten. Looks fine now.  Smiley
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: YaMMS 4 YaBB 2.3 - beta 0.4
Reply #29 - Jan 2nd, 2009 at 1:45pm
Print Post  
Bug in Memberlist for Extented Profile? They doesnt show any more. Only blank box.
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 
Send TopicPrint