What this extension is supposed to do? Do you mean RSS grabber?

All forum's html elements should be placed in div with id "brd-wrap". As an example, see the HTML code of this page.

You need to edit file "<FORUM_ROOT>viewtopic.php". Add this code

if (isset($forum_page['hidden_fields']['subscribe']))
    unset($forum_page['hidden_fields']['subscribe']);
// Load the post.php language file
require FORUM_ROOT.'lang/'.$forum_user['language'].'/post.php';

$forum_page['fld_count'] = 0;
$forum_page['checkboxes'] = array();
if ($forum_config['o_smilies'] == '1')
    $forum_page['checkboxes']['hide_smilies'] = '<div class="mf-item"><span class="fld-input"><input type="checkbox" id="fld'.(++$forum_page['fld_count']).'" name="hide_smilies" value="1" /></span> <label for="fld'.$forum_page['fld_count'].'">'.$lang_post['Hide smilies'].'</label></div>';

// Check/uncheck the checkbox for subscriptions depending on scenario
if (!$forum_user['is_guest'] && $forum_config['o_subscriptions'] == '1')
{
    $subscr_checked = true;

    // If auto subscribed
    if ($forum_user['auto_notify'])
        $subscr_checked = true;
    // If already subscribed to the topic
    else if ($cur_topic['is_subscribed'])
        $subscr_checked = true;

    $forum_page['checkboxes']['subscribe'] = '<div class="mf-item"><span class="fld-input"><input type="checkbox" id="fld'.(++$forum_page['fld_count']).'" name="subscribe" value="1"'.($subscr_checked ? ' checked="checked"' : '').' /></span> <label for="fld'.$forum_page['fld_count'].'">'.($cur_topic['is_subscribed'] ? $lang_post['Stay subscribed'] : $lang_post['Subscribe']).'</label></div>';
}

after hook "vt_quickpost_pre_display". And this

<?php
if (!empty($forum_page['checkboxes']))
{

?>
            <fieldset class="mf-set set<?php echo ++$forum_page['item_count'] ?>">
                <legend><span><?php echo $lang_post['Post settings'] ?></span></legend>
                <div class="mf-box checkbox">
                    <?php echo implode("\n\t\t\t\t\t", $forum_page['checkboxes'])."\n"; ?>
                </div>
            </fieldset>
<?php

}?>

after hook "vt_quickpost_pre_fieldset_end". Or you can create an extension based on this code. There is also an option "Subscribe to topics by default when posting" in user's profile. Another solution of your first problem can be setting this option as checked by default.

704

(2 replies, posted in Feature requests)

The forum stores registration IP and the IP of the machine, which was used to write a post. It is required to store the last-visit IP address separately. The feature that you've described can be implement via extension.

You just need to edit the line 495 of "<FORUM_ROOT>/post.php", it should be:

$subscr_checked = true;

706

(7 replies, posted in PunBB 1.3 troubleshooting)

To hide IP from moderators you can use this code in hook "vt_row_pre_display":

if (isset($forum_page['author_info']['ip']) && $forum_user['g_id'] != FORUM_ADMIN)
    unset($forum_page['author_info']['ip']);

707

(55 replies, posted in Supported extensions)

Rask wrote:

Would it be possible to add a word "Tags:" (or something similar) before the items in a cloud?

DaClown wrote:

Could you add an input form in the admin panel for the tags divider because FF3 doesn't break lines if the divider is &nbsp; ?

All requests was added to the wiki page of the extension pun_tags.

708

(2 replies, posted in PunBB 1.3 discussion)

The config values are added only once, on the installation of some extensions, so I don't think that it is needed to create a special function for this.

Function "get_microtime" defined in "<FORUM_ROOT>/include/dblayer/common_db.php" (lines 21-25), if constant FORUM_SHOW_QUERIES was defined.

710

(1 replies, posted in Discussions)

I think you can use PunBB 1.3 for this. It is completely fit for building a forum. You can see the list of most significant changes from 1.2 here.

Thanks for the suggestion. A new key was added to the common lang file, we will update all official extensions.

712

(8 replies, posted in Discussions)

There is no off-the-shelf solution for this, but, yes, it can be done via extension. Add an extension request, please.

713

(55 replies, posted in Supported extensions)

The new version of pun_tags 1.3 has been released. It is available at the extension repository page, SVN or you can get it via pun_repository.

Now we have one additional theme for PunBB, it has been tested now.
You can find it in SVN, and some additional themes are placed in our unofficial repository. Also, you can find additional styles in the Directory created by KeyDog.

715

(55 replies, posted in Supported extensions)

It will not be searching by tag only, search results will contain topics marked with tags, written in keywords.

716

(16 replies, posted in PunBB 1.3 additions)

deathcubek wrote:

Guys, I don't think he's going to release it to the public when it's still in a beta stage.

As Parpalak posted above, the theme was added for testing, it is not released yet.

717

(6 replies, posted in PunBB 1.3 troubleshooting)

To edit the location of the forum you need to change $base_url variable in "<FORUM_ROOT>/config.php".

emirie wrote:

My problem now is when I access mydomain.com the page only shows index/ and link to the forum:

Index of /

    * forum/

Help again.  What should I do next to have a page appear on my main domain?

Is there an index page at mydomain.com?

718

(3 replies, posted in PunBB 1.3 troubleshooting)

You need to replace the line

'o_maintenance' => '1',

with

'o_maintenance' => '0',

in "<FORUM_ROOT>/cache/cache_config.php". But after this, when forum regenerates the config cache, the maintenance mode will be turned on again. To avoid this, you need to click on the "Save changes" button at "<FORUM_URL>/admin/settings.php?section=maintenance" and deselect the checkbox "Put board into maintenance mode".

719

(1 replies, posted in PunBB 1.3 discussion)

You can use Portal by Daris extension to create a portal.

720

(1 replies, posted in PunBB 1.3 discussion)

You can generate a valid csrf-token on pages of your site. Perhaps, this topic will be useful for you.

Thanks for the suggestion, we will take it into account in the next release of the extension.

722

(1 replies, posted in PunBB 1.3 troubleshooting)

This code should be work:

$pattern[] = '#\[line\/\]#i';
$replace[] = '<br/>';

Add it to "do_bbcode" function in "<FORUM_ROOT>/include/parser.php".

723

(5 replies, posted in PunBB 1.3 extensions)

I think it should be some parameter in BBCode-tag "url", "target", for example or whatever. Add an extension request, please.

SuperMAG wrote:

about popups, it would be nice to see a popup JUST LIKE VBULLETIN, which ask for registration.

I have registered in some forums, powered by vBulletin, but I have not seen any popup at registration pages.

724

(6 replies, posted in PunBB 1.3 troubleshooting)

The Index link is a link to the Base URL of the forum, which you write on the installation page. So it can't be "mydomain.com/index.php". Have you changed any code in the forum's core?

1) Replace PUN_ROOT constant with FORUM_ROOT.
2) You missed "." between PUN_ROOT and "include/parser.php", should be: FORUM_ROOT.'include/parser.php'