1

(61 replies, posted in PunBB 1.3 extensions)

Information on the index page (Today (3) name, name) disappears when you uncheck "Adjust for DST Daylight savings is in effect (advance times by 1 hour)" in profile.

What happened?

Thanks

Edit: need to wait before posting on some things, its fine now, guessing it has something to do with cache.

2

(0 replies, posted in PunBB 1.3 discussion)

Dropdown menu not updating URL's correctly. No matter what URL scheme I use, it always remains as example forum1-name-of-forum.html

Found nothing during a search.

Thanks, curious as to why.

Edit: nevermind, must of been a cache thing.

3

(6 replies, posted in PunBB 1.3 extensions)

Very nice, added to my board.

Thank you, this define('PUN_EXTENSIONS_USED', true); worked just fine in the config.php file.

But does the copyright need to be there.

5

(85 replies, posted in Supported extensions)

alexp wrote:

Thank you for your idea. We will think about it.

Your welcome, current extension is quite good as it is, that idea would make even better (if considered for addition).

May be this helps http://punbb.informer.com/forums/topic/ … right-fix/ will see.

Did search and found http://punbb.informer.com/forums/topic/ … ng-footer/ doesn't work. Search was a quick one.

Reason I posted. But will search again.

Thanks for responding Slavok.

PunBB code is different then what I'm used too.

Would below be correct way rearranging location, registered, post count topic view order.

From (location, registered, post count)

// Generate author information
        if ($cur_post['poster_id'] > 1)
        {
            if ($forum_config['o_show_user_info'] == '1')
            {
                if ($cur_post['location'] != '')
                {
                    if ($forum_config['o_censoring'] == '1')
                        $cur_post['location'] = censor_words($cur_post['location']);

                    $forum_page['author_info']['from'] = '<li><span>'.$lang_topic['From'].' <strong>'.forum_htmlencode($cur_post['location']).'</strong></span></li>';
                }

                $forum_page['author_info']['registered'] = '<li><span>'.$lang_topic['Registered'].' <strong>'.format_time($cur_post['registered'], 1).'</strong></span></li>';

                if ($forum_config['o_show_post_count'] == '1' || $forum_user['is_admmod'])
                    $forum_page['author_info']['posts'] = '<li><span>'.$lang_topic['Posts info'].' <strong>'.forum_number_format($cur_post['num_posts']).'</strong></span></li>';
            }

            if ($forum_user['is_admmod'])
            {
                if ($cur_post['admin_note'] != '')
                    $forum_page['author_info']['note'] = '<li><span>'.$lang_topic['Note'].' <strong>'.forum_htmlencode($cur_post['admin_note']).'</strong></span></li>';
            }
        }
    }

To (where now its post count, registered, location)

// Generate author information
        if ($cur_post['poster_id'] > 1)
        {
            if ($forum_config['o_show_user_info'] == '1')
            {
                if ($cur_post['location'] != '')
                {
                    if ($forum_config['o_censoring'] == '1')
                        $cur_post['location'] = censor_words($cur_post['location']);
                        
                    if ($forum_config['o_show_post_count'] == '1' || $forum_user['is_admmod'])
                    $forum_page['author_info']['posts'] = '<li><span>'.$lang_topic['Posts info'].' <strong>'.forum_number_format($cur_post['num_posts']).'</strong></span></li>';
                    }

                $forum_page['author_info']['registered'] = '<li><span>'.$lang_topic['Registered'].' <strong>'.format_time($cur_post['registered'], 1).'</strong></span></li>';

                $forum_page['author_info']['from'] = '<li><span>'.$lang_topic['From'].' <strong>'.forum_htmlencode($cur_post['location']).'</strong></span></li>';
                }

            if ($forum_user['is_admmod'])
            {
                if ($cur_post['admin_note'] != '')
                    $forum_page['author_info']['note'] = '<li><span>'.$lang_topic['Note'].' <strong>'.forum_htmlencode($cur_post['admin_note']).'</strong></span></li>';
            }
        }
    }

Never messed with PunBB code before and I wanted to make sure I did that right... appears to work.
View http://www.genmb.com/topic/1/test-post/

Would appreciate something, thanks.

Not removing copyright or powered by. Just like to hide or remove "Currently installed x official extensions." on my board, I don't really want to see that, when I know what is installed already in the Admin section.

As for Copyright © 2003–2009 PunBB, is it possible to align that underneath powered by line, while keeping the dropdown menu left.

Thank you

11

(85 replies, posted in Supported extensions)

alexp wrote:

Are you talking about some kind of internediate state between approved and unapproved? And what happens to a post if i unapprove it the way you describe? Is it added to the topic or not? In current version a post can stay unapproved as long as you need, and if you want to approve it later, you can do it any time you want. I hope i understood everything you said right. If not, please explain in more details.

Yes. Goes hidden till approved again or removed. Spammers would be able to post garbage posts/topics, unapprove till I can delete it later. Unruly or flamers posts/topics would be the same, except edited if needed, then approved again when there is time.

In order of posts/topics added, hidden till approved again, just for members. Guests posts/topics are fine with current approval system.

Basically... (if at all possible doing so)
1. in forum view have unapprove or approve certain topic.
2. in topic view have unapprove or approve certain post.

Hope i cleared my reasoning, sometimes not my best suite. lol

12

(85 replies, posted in Supported extensions)

What about unapproving a topic or post till you're absolutely sure its worthy to have.

What I mean is, when a spammer registers, you see the topic/post then unapprove till you clean it or decide to remove it. Have the simple option in topic and post view to unapprove, if its there don't see it.

If mentioned somewhere in this topic, sorry, didn't read all posts.

Love this extension, thanks.

13

(3 replies, posted in PunBB 1.3 discussion)

Not a big thing and it won't stop from using the forum software, just a wee bit curious anyway.

So, nevermind, getting ready to setup PunBB. smile

14

(3 replies, posted in PunBB 1.3 discussion)

Change

// Insert guest and first admin user
    $query = array(
        'INSERT'    => 'group_id, username, password, email',
        'INTO'        => 'users',
        'VALUES'    => '2, \'Guest\', \'Guest\', \'Guest\''
    );

To

// Insert guest and first admin user
    $query = array(
        'INSERT'    => 'group_id, username, password, email',
        'INTO'        => 'users',
        'VALUES'    => '1, \'Guest\', \'Guest\', \'Guest\''
    );

If so, tried that and it still went to 2.

15

(3 replies, posted in PunBB 1.3 discussion)

Anyway to change admin on install to 1 instead of 2.

As this forum is /user/2/ there is no /user/1/

Thanks