Looking for a phpBB MOD I have made?

All web design discussion, including Ultimate Quiz MOD support.

Moderator: CricketMX Forum Moderators

Post Reply
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

I have written many MOD's for phpBB, here are some of the more current ones (there are about 5 or 6 others, which are quite old however).
  • Ultimate Quiz MOD
  • User Website MOD
  • Jury MOD
  • Shoutbox MOD
  • Autologin Upon Registration
  • SQL-MOD
  • Add phpBB Functions To Notepad++ PHP API
  • Standard Subject MOD
  • Coin Toss
  • Average Posts Per Topic
  • IP's Only Visible To Admins
  • Centre bbCode
  • Usernames Begin With Capital Letter
  • Topic Titles Begin With Capital Letter
If you are looking for support for any of these MOD's, feel free to post the request in this forum. Support for the Ultimate Quiz MOD, belongs in http://forums.cricketmx.com/viewforum.php?f=63 however.

Support can also be obtained at http://www.cmxmods.net/demo_board/index.php

If you wish to download any of the MOD's above, please visit http://www.cmxmods.net

Thanks :)
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
Leon
Know-It-All
Know-It-All
Posts: 282
Joined: Tue Feb 07, 2006 11:09 am
Contact:

Topic Titles Begin With Capital Letter


#
#-----[ OPEN ]------------------------------------------
#
functions_post.php

#
#-----[ FIND ]------------------------------------------
#
global $userdata, $user_ip;


#
#-----[ AFTER, ADD ]------------------------------------------
#
$post_subject = ucfirst($post_subject);


#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM




Well i can find the line:
global $userdata, $user_ip;
At 3 places. i wonder who the right one is :?
Talk, discuss or debate everything about Volunteer 'ing at this forum!
Volunteer Forum Community
Leon
Know-It-All
Know-It-All
Posts: 282
Joined: Tue Feb 07, 2006 11:09 am
Contact:

Centre bbCode


#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php

#
#-----[ FIND ]------------------------------------------
#

// size
$text = preg_replace("/\[size=([1-2]?[0-9]):$uid\]/si", $bbcode_tpl['size_open'], $text);
$text = str_replace("[/size:$uid]", $bbcode_tpl['size_close'], $text);

#
#-----[ AFTER, ADD ]------------------------------------------
#

// [center] and [/center] for center text.
$text = str_replace("[center]", "<center>", $text);
$text = str_replace("[/center]", "</center>", $text);

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM







With this only the admin know that it exists,
how should members be able to see that they can do this ?
Talk, discuss or debate everything about Volunteer 'ing at this forum!
Volunteer Forum Community
Leon
Know-It-All
Know-It-All
Posts: 282
Joined: Tue Feb 07, 2006 11:09 am
Contact:

Usernames Begin With Capital Letter
http://www.cmxmods.net

Link:
http://www.cmxmods.net/ubwcl.php

"Page can not be displayed"

= Non working link
Talk, discuss or debate everything about Volunteer 'ing at this forum!
Volunteer Forum Community
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

Username Begins With Capital:
http://www.cmxmods.net/usernames_begin_ ... letter.php

Centre bbCode
That was a MOD I made in about 5 minutes and never really released :P
It is a bit like the [you] bbCode at this forum which makes the forum say your username whenever you say it. The members don't really know about it unless you tell them :)

Topic titles:

I've had a look through the files and I'm pretty sure it is where it says:

Code: Select all

//
// Post a new topic/reply/poll or edit existing post/poll
//
function submit_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_id, &$post_id, &$poll_id, &$topic_type, &$bbcode_on, &$html_on, &$smilies_on, &$attach_sig, &$bbcode_uid, $post_username, $post_subject, $post_message, $poll_title, &$poll_options, &$poll_length)
{
	global $board_config, $lang, $db, $phpbb_root_path, $phpEx;
	global $userdata, $user_ip;
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
Post Reply