626

(4 replies, posted in PunBB 1.3 additions)

Add to a new line after Line 607:

    else if ($forum_user['is_guest'])
        return 'Please register/login to view links.'; //Replace by your own message

627

(3 replies, posted in PunBB 1.3 extensions)

It's still under development, if it doesn't work like other extensions (download, unzip, install), then you'll just have to wait.

628

(16 replies, posted in Discussions)

No, on 2009 it'll cost 10$.

... just jokin smile Now, seriously it'll be $9.99. wink

629

(21 replies, posted in PunBB 1.3 extensions)

Yeah, something like:

<script type="text/javascript">
document.write(quick_quote_link);
</script>
<noscript>{normal_quote_link}</noscript>

I can make it next week.

Yep, rename it to '.htaccess'.

I'm bored anyways...

Yeah, I think that warning message is kinda outdated. The '.htaccess' you're look for is named '.htaccess.dist' and is on your forum's root.

I think I found where the bug possibly is: around lines 338 and 367.

First, the "Closed" and "Sticky" part of the title are being placed AFTER the actual title, making it look like this:

Test Topic Closed : by Garciat

Second, I think

            if (empty($forum_page['item_status']))
                $forum_page['item_status']['normal'] = 'normal';

should be:

            if (empty($forum_page['item_status']))
            {
                unset($forum_page['item_subject_status']);
                $forum_page['item_status']['normal'] = 'normal';
            }

and be placed after:

            if ($cur_set['sticky'] == '1')
            {
                $forum_page['item_subject_status']['sticky'] = $lang_forum['Sticky'];
                $forum_page['item_status']['sticky'] = 'sticky';
            }

            if ($cur_set['closed'] != '0')
            {
                $forum_page['item_subject_status']['closed'] = $lang_forum['Closed'];
                $forum_page['item_status']['closed'] = 'closed';
            }

I'm not sure if this will work since I'm not on my home's PC (no access to web server).

I'm not 100% sure, but your server probably can't fully extract the .zip file.

Anatoly wrote:

Garciat: maybe it is easier just simply port this mod to 1.3 as an extension.

Good idea.

Edit: I just noticed underline is working as italics, and quick quote is including the user's signature into the quote.

esupergood wrote:

3) I agree with every word that came out of mike's mouth.

Keyboard? But, yeah, Mike did open our eyes.

Anyways, I don't see a big difference from punbb.org and punbb.informer.com (except that it's longer), but, if that's what it takes to reunite FluxBB and PunBB, so be it.

esupergood, are you using PunBB 1.2 or 1.3? If you're using 1.2, you should use that feed aggregator hcgtv posted.

Not a stupid question at all. I could make this into an extension OR, if the dev team agrees, it could be added to the core. This is really a nice feature that I also noticed was missing.

Yeah, I'll be making it for 1.3.

640

(23 replies, posted in PunBB 1.3 extensions)

Note that I'll start working on it (and 3 other extensions) on Monday.

641

(14 replies, posted in General discussion)

I think not, but it could be done with an extension. I could make one next week, if you want.

I can work on this next week. I'll make an extensions that will add a "Quick Links" drop menu with all or part of those options to your nav bar.

Oh... so... /forum/2 isn't a physical path? It's being redirected by mod_rewrite?

smile Thanks

Oh, I get it now. You want the server to get an RSS feed and import it to PunBB as a topic? I think this can be done... I'll be back from my trip next monday and I can probably work on this.

Like "Search" or "Quick Links"? How would you organize the nav bar?

Huh? It looks good to me.

Take a screenshot and point what's wrong.

Apply this patch to your PunBB installation:
http://punbb.informer.com/trac/changeset/895

or replace your 'include/functions.php' with this one http://punbb.informer.com/trac/export/8 … tions.php.

Let me know if this fixed the bug.

649

(2 replies, posted in Archive)

Troubleshooting forum?

If the forum is brand new, you could simply delete all the MySQL tables and move the PunBB files to /forum/ on your server. Also, remember to delete 'config.php'.