I am honestly surprised you are even in high school. Seriously, learn how to spell and grow up. They did not rip you off.

2

(5 replies, posted in General discussion)

Sounds like an interesting site. Thanks for the information, and hopefully an invite smile

3

(2 replies, posted in PunBB 1.2 discussion)

What about editing the user group Members so that they are not be to post new topics? You could do that under User Groups, Edit Members. And just select no for Post topics.

Or, if you want it specifc to one forum, such as an Administrators forum, just click Forums and edit the permissions for that specific forum to not allow that usergroup to post new topics. Then it will just be specific to that forum, and not others.

4

(34 replies, posted in Feature requests)

Just saw this on cafepress.com: http://img293.imageshack.us/img293/1817/mainpagepromoblack23ck.gif

Looking forward to the black shirts, maybe wink

5

(69 replies, posted in News)

Rickard wrote:

Just grab the diff or hdiff that takes you from 1.2.7 directly to 1.2.10. You can find them if you look around in the download archive. Then run the upgrade script 12_to_1210_update.php. That will bump up your version number in the database.

Sounds like just what I need. Thanks smile

6

(69 replies, posted in News)

Thanks a lot for the new version. I have one question though. I haven't kept up on updates, and my version is 1.27. I have many mods installed, and would have to upgrade using the patch, then the hdiff if needed. What I am wondering is, would I need to do the patch for 1.28, then 1.29, then 1.2.10, or if I did the newest 1.2.10 patch and probably hdiff would it cover everything? Thank you for everything you do.

What about a post icon mod? I would be willing to pay $5 or around there for a mod like that. If interested could you contact me through the forum email link? I have a few screenshots of what I am thinking about.

8

(34 replies, posted in Feature requests)

This sounds like a great idea. I would definitely like to buy a tee shirt. I was wondering though, could they possibly make them in a black tee shirt sort of like the one in this image?

http://img428.imageshack.us/img428/1186/punbb9xv.png

EDIT: I just read a few posts up.

We do not currently offer the ability to sell dark colored garments or apparel, however, we are actively working on fulfilling this popular request.

Hopefully they will soon.

sPuD wrote:

I'll release my modded pages for other people to do what they wish with, however I'm not releasing an official mod, so it'll be up to you to add the other features. I'll post the modded pages in a few.

If anyone else wants to make the post icons/point system into official mods, feel free.

Cool, looking forward to being able to have post icons. Thanks smile

sPuD wrote:

I could give you the code to do it, but I probably won't release an official mod. You'd just have to modify an array pretty much, and make your icons (mine are being made specifically for my forum by someone else, who's not yet done as you may of noticed from that screenshot above). Also I can't guarantee that it'll be secure, as I'm not too experienced in PHP. I'll get back to you with the code if you're interested.

That would be great, I'd definitely be interested. Thank you.

11

(6 replies, posted in General discussion)

Here are a few coupons:

SETUPFEEWAIVED (Takes off the $50 setup fee for monthly hosting)

75OFFYEARLY  (Takes $75 off any yearly plan.)

I have had Dreamhost since December 2004 and it has been great.

Could you possibly make a mod for the post icons? I have always wanted post icons on punbb, but I have no clue on how to write the mod. Also, your forum looks really nice.

This has been a great mod. Thanks Connorhd cool

Paul wrote:

Line 425 of parser.php. Just remove all the height stuff from the scrollbox div so it looks like
<div class="scrollbox">

Thank You

Paul wrote:

You can remove the scrollbars but then the code would simply be chopped of at the right edge and you would have no way of seeing it.

The vertical scrollbar can be removed so the code stretches the full height of the content but that requires parser.php to be edited.

I now see what you mean about the code getting chopped off on some coputers running at low resolutions. Would you or anyone else happen to know the code to just remove the vertical scrollbar so the code stretches the full height of the content like you said, while keeping the horizontal bars? Thanks for your time.

Very nice. Thank you. smile

17

(76 replies, posted in News)

Just upgraded. Thanks smile

zaher wrote:

open \include\parser.php

Worked great. Thank you all. smile

I am using the Cobalt theme. Would that mean to edit some of the text in Cobalt.css? For example, maybe some of these?

/* 4.1 By default borders are 1px solid */

DIV.box, .pun TD, .pun TH, .pun BLOCKQUOTE, DIV.codebox, DIV.forminfo, DIV.blockpost LABEL {
    BORDER-STYLE: solid;
    BORDER-WIDTH: 1px
/* 8.4 Spacing for code and quote boxes */

DIV.postmsg H4 {MARGIN-BOTTOM: 10px}
.pun BLOCKQUOTE, DIV.codebox {MARGIN: 5px 15px 15px 15px; PADDING: 8px}

If so, would you happen to know which text I should change? Thank you for helping me.

I was wondering if in PunBB 1.2 if it is possible to remove the scroll bars that appear when there are many lines of text formated with the code tags. Thanks in advance.

Thanks a lot. I will give that a try. I also wanted to say thank you for the great forum software. smile

EDIT: Worked perfectly. Thanks

I changed 65535 to 80000 but it still gives me "Posts cannot be longer that 65535 characters (64 KB)."

I tried editing it hear in post.php.

    if ($message == '')
        message($lang_post['No message']);
    else if (strlen($message) > 80000)
        message($lang_post['Too long message']);
    else if ($pun_config['p_message_all_caps'] == '0' && strtoupper($message) == $message && $cur_user['status'] < PUN_MOD)
        message($lang_post['No caps message']);

I am not good with php, so I am probably doing this completely wrong.

Connorhd wrote:

why would you want to? 65535 is massive

For a large music list.

mark36ph wrote:

try changing it to something a little lower than 9999999 but higher than what it is at now.

I will try that. Thank you.

I was wondering if it is possible to change the maximum amount of characters in a post. I tried changing the number 65535  in post.php to a number like 9999999 which would almost be unlimited. By doing this though, I screwed things up. Now I have a clean install and was wondering if it is possible to change the limit.

Thanks in advance for any help.

The following errors need to be corrected before the message can be posted:
    * Posts cannot be longer that 65535 characters (64 KB).