What this extension is supposed to do? Do you mean RSS grabber?
701 2009-06-02 08:12
Re: Extension For AutoPosting From RSS or ATOM Feed (2 replies, posted in PunBB 1.3 extensions)
702 2009-06-02 07:51
Re: Include punbb into my website (4 replies, posted in PunBB 1.3 troubleshooting)
All forum's html elements should be placed in div with id "brd-wrap". As an example, see the HTML code of this page.
703 2009-06-02 07:19
Re: Can I make "Subscribe to this topic" checked by default? (9 replies, posted in PunBB 1.3 discussion)
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 2009-06-01 08:33
Re: Last IP (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.
705 2009-06-01 07:56
Re: Can I make "Subscribe to this topic" checked by default? (9 replies, posted in PunBB 1.3 discussion)
You just need to edit the line 495 of "<FORUM_ROOT>/post.php", it should be:
$subscr_checked = true;
706 2009-06-01 06:27
Re: Hide my IP's users (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 2009-05-29 14:38
Re: Tags (pun_tags) (55 replies, posted in Supported extensions)
Would it be possible to add a word "Tags:" (or something similar) before the items in a cloud?
Could you add an input form in the admin panel for the tags divider because FF3 doesn't break lines if the divider is ?
All requests was added to the wiki page of the extension pun_tags.
708 2009-05-29 14:30
Re: Functions for ext developers (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.
709 2009-05-29 14:20
Re: undefined function get_microtime() (2 replies, posted in PunBB 1.3 troubleshooting)
Function "get_microtime" defined in "<FORUM_ROOT>/include/dblayer/common_db.php" (lines 21-25), if constant FORUM_SHOW_QUERIES was defined.
710 2009-05-29 14:17
Re: Custom Forum Build (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.
711 2009-05-29 10:46
Re: translate "currently used extensions" (5 replies, posted in PunBB 1.3 additions)
Thanks for the suggestion. A new key was added to the common lang file, we will update all official extensions.
712 2009-05-29 10:05
Re: email posts (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 2009-05-28 10:25
Re: Tags (pun_tags) (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.
714 2009-05-28 08:34
Re: Where do I find themes? (if there are any) (2 replies, posted in Discussions)
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 2009-05-28 08:08
Re: Tags (pun_tags) (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 2009-05-28 07:39
Re: [beta release] Informer style (16 replies, posted in PunBB 1.3 additions)
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 2009-05-28 07:30
Re: index.php in url (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".
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 2009-05-28 07:29
Re: need help please (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 2009-05-27 11:38
Re: How to create a portal (1 replies, posted in PunBB 1.3 discussion)
You can use Portal by Daris extension to create a portal.
720 2009-05-27 11:30
Re: Intergration Problems (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.
721 2009-05-27 08:56
Re: Relative path of attachment upload directory? (1 replies, posted in PunBB 1.3 extensions)
Thanks for the suggestion, we will take it into account in the next release of the extension.
722 2009-05-27 08:48
Re: Single Tag BBCode (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 2009-05-27 08:25
Re: (Request) Punbb Pop-up (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.
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 2009-05-27 07:48
Re: index.php in url (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?
725 2009-05-27 07:15
Re: Help about creating new post & reply to post (2 replies, posted in PunBB 1.3 troubleshooting)
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'