Multiple BBCode MOD

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in here. No new MODs will be accepted into the MOD Database for phpBB2
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.

Rating:

Excellent!
140
59%
Very Good
35
15%
Good
18
8%
Fair
6
3%
Poor
38
16%
 
Total votes: 237

bisonspo
Registered User
Posts: 89
Joined: Thu Dec 07, 2006 2:37 pm

Re: [2.0.19] Multiple BBCode MOD

Post by bisonspo »

With the mod uninstalled I see the threads fine. Anyone? Would really like to get it back to the original working state with the You Tube link in the posting page.
Thanks
bisonspo
Registered User
Posts: 89
Joined: Thu Dec 07, 2006 2:37 pm

Re: [2.0.19] Multiple BBCode MOD

Post by bisonspo »

Please disregard, found the problem after a digging into the code. If I could kick my own butt for causing myself this headache I'd do it. :lol:
f4kiqyabg0na9r8
Registered User
Posts: 1
Joined: Mon Apr 09, 2007 10:50 pm

Re: [2.0.19] Multiple BBCode MOD

Post by f4kiqyabg0na9r8 »

mngstudio wrote: Hi, I am trying to install this Mod Version 1.4.0

here said I have to open the posting.php to find make_jumpbox('viewforum.'.$phpEx);

Code: Select all

# 
#-----[ OPEN ]---------------------------------
# 
posting.php


# 
#-----[ FIND ]---------------------------------
#
#  NOTE - the full line to look for is:
# make_jumpbox('viewforum.'.$phpEx);
#
make_jumpbox(


# 
#-----[ AFTER, ADD ]---------------------------------
#
Multi_BBCode();
But in my posting.php I only can find this:

Code: Select all

make_jumpbox_ref('viewforum.'.$phpEx, $forum_id, $all_forums);
and I did try after that just add Multi_BBCode(); But it come up error

I don't know how to do now. Can anyone help please.

THank you very much
Mike

Do you have the Simple Subforum mod? Insert after the

Code: Select all

make_jumpbox_ref(
instead- it appears to have worked for me.
jerryisrockin
Registered User
Posts: 2
Joined: Wed Apr 11, 2007 2:29 am

Re: [2.0.19] Multiple BBCode MOD

Post by jerryisrockin »

OK. Where can I find the multiple bbcode mod for download. Lookked everywhere? 8O
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: [2.0.19] Multiple BBCode MOD

Post by Raimon »

When you read the previous page you find this download link: http://www.phpbb.com/files/mods/multi_bbcode-140c.zip ;)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
Rep
Registered User
Posts: 317
Joined: Sat Jan 15, 2005 11:19 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Rep »

I will be installing this mod and have a question. When I read the mod directions they tell me that the files to edit are:

Files To Edit: posting.php
## templates/subSilver/posting_body.tpl

Yet, as one goes through the mod we are asked to also mod the following files in addition to the ones above:

privmsg.php
includes/bbcode.php
language/lang_english/lang_main.php

I assume the author of the mod simply did not update the mod directions and all additional files need to be modded. Correct?
elimere
Registered User
Posts: 23
Joined: Sat May 13, 2006 3:00 pm

Re: [2.0.19] Multiple BBCode MOD

Post by elimere »

I have just installed this mod and have come up with the following when i try to make a post (it only occurs when using one skin- subsilver):

Parse error: syntax error, unexpected $end in /htdocs/forum/includes/template.php(127) : eval()'d code on line 540

I installed it using easymod. Ive got two other skins and can post fine using them.
Templater
Registered User
Posts: 343
Joined: Wed Aug 31, 2005 5:07 am

Re: [2.0.19] Multiple BBCode MOD

Post by Templater »

Rep wrote: I will be installing this mod and have a question. When I read the mod directions they tell me that the files to edit are:

Files To Edit: posting.php
## templates/subSilver/posting_body.tpl

Yet, as one goes through the mod we are asked to also mod the following files in addition to the ones above:

privmsg.php
includes/bbcode.php
language/lang_english/lang_main.php

I assume the author of the mod simply did not update the mod directions and all additional files need to be modded. Correct?
Correct. ;)
MOD::Pseudo WYSIWIG BBcode Editor.
Latest stable Version: 1.8.8b -> Screenshot: Pseudo WYSIWYG -> Download: Pesudo WYSIWYG 1.8.8b
Rep
Registered User
Posts: 317
Joined: Sat Jan 15, 2005 11:19 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Rep »

Hello
Am running phpBB 2.0.22

Am having trouble with modding "posting.php". I am running into my installed , "Simple Subforums" mod.

The MultiBBCode mod 1.4.0. asks me to find:

NOTE - the full line to look for is:
# make_jumpbox('viewforum.'.$phpEx);
#
make_jumpbox(

I am unable to find the full line, nor am I able to locate just the, "make_jumpbox(".

I can though locate, "make_jumpbox"

But when I do, the following is where it is located:

// Begin Simple Subforums MOD
$all_forums = array();
make_jumpbox_ref('viewforum.'.$phpEx, $forum_id, $all_forums);

$parent_id = 0;
for( $i = 0; $i < count($all_forums); $i++ )
{
if( $all_forums[$i]['forum_id'] == $forum_id )
{
$parent_id = $all_forums[$i]['forum_parent'];
}
}

if( $parent_id )
{
for( $i = 0; $i < count($all_forums); $i++)
{
if( $all_forums[$i]['forum_id'] == $parent_id )
{
$template->assign_vars(array(
'PARENT_FORUM' => 1,
'U_VIEW_PARENT_FORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL .'=' . $all_forums[$i]['forum_id']),
'PARENT_FORUM_NAME' => $all_forums[$i]['forum_name'],
));
}
}
}
// End Simple Subforums MOD

My question then, is where do I place the following to complete the modding of posting.php

#-----[ FIND ]---------------------------------
#
# NOTE - the full line to look for is:
# make_jumpbox('viewforum.'.$phpEx);
#
make_jumpbox(


#
#-----[ AFTER, ADD ]---------------------------------
#
Multi_BBCode();
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: [2.0.19] Multiple BBCode MOD

Post by Raimon »

When i seeing this quickly,

Try this :

Find:

Code: Select all

make_jumpbox_ref('viewforum.'.$phpEx, $forum_id, $all_forums);
After ADD:

Code: Select all

Multi_BBCode();
before you making any changes make a backup please :)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
Rep
Registered User
Posts: 317
Joined: Sat Jan 15, 2005 11:19 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Rep »

Raimon wrote: When i seeing this quickly,

Try this :

Find:

Code: Select all

make_jumpbox_ref('viewforum.'.$phpEx, $forum_id, $all_forums);
After ADD:

Code: Select all

Multi_BBCode();
before you making any changes make a backup please :)


This appears to have done the job. I found no error messages at all.

TY
Rep
Registered User
Posts: 317
Joined: Sat Jan 15, 2005 11:19 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Rep »

Ok

I added this mod to my phpBB latest version.

Now what do I do with it, and how?

I added the mod so I could add the YouTube mod. Do I just go ahead and perform the YouTube mod and bing, I am where I want to be?
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk
Contact:

Re: [2.0.19] Multiple BBCode MOD

Post by Raimon »

New you can just adding the bbcode mods like Gvideo, Youtube , and you name it.
You can just install the bbcode mods with no problem :)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
Rep
Registered User
Posts: 317
Joined: Sat Jan 15, 2005 11:19 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Rep »

Raimon wrote: New you can just adding the bbcode mods like Gvideo, Youtube , and you name it.
You can just install the bbcode mods with no problem :)


I kinda thought that might be it. But, all other mods i have installed there was an ACP piece to it or some other part that one could see.

This is simply a base mod to build others off.

As I recieved no error messages when I loaded the modded files, I assume all is ok. Is that correct?
Vivid-Design
Registered User
Posts: 1
Joined: Thu Apr 26, 2007 7:16 pm

Re: [2.0.19] Multiple BBCode MOD

Post by Vivid-Design »

Hi there,

I am the website designer/programmer for http://www.come-tag-me.co.uk

i have installed the multibbcode mod and i expected the bb code in the forum topic names to go from showing as "[ b: ] " to going bold and the color tags to turn the text to the color but it didnt, i followed the mod instructions once, twice, three times and still no luck

have i used the right mod for what i needed or is it a different mod?

Please help me, the website depends on it!


I have now found the mod i needed, but, i now know where to come and how to download while you update the mods area along with the rest of the site, and i must add that the new version of the forum looks very nice, i will look forward to a stable release so i can upgrade! :D
Post Reply

Return to “[2.0.x] MOD Database Releases”