Administration >> Settings >> Registration >>
Enable checkbox && Enter Rules:
Use rules Users must agree to forum rules before registering.
Compose rules You may use HTML as text is not parsed.
451 2016-02-19 20:30
Re: Create a page (5 replies, posted in PunBB 1.4 troubleshooting)
452 2016-02-16 06:17
Re: Admin settings file? (1 replies, posted in PunBB 1.4 troubleshooting)
Open Data Base SQL on server & Edit options table.
conf_name - o_timeout_visit.
Set seconds.
Clear cashe directory.
453 2016-02-12 22:25
Re: Block cyber attacks (1 replies, posted in Discussions)
put Fansy Stop Spam and forget about spammers
454 2016-02-10 10:29
Re: [Extension] om_images 1.4.2.07 (10 replies, posted in PunBB 1.4 additions)
keeshii. thank you!
it can load multiple images?
455 2016-02-09 11:17
Re: The image mod I can't find anymore. (3 replies, posted in PunBB 1.4 additions)
I know there's a mod for auto uploading external images which are added to post via img tag, I saw this mod for a couple of times but I can't find it now when I need it so bad.
See extension:
http://punbb.informer.com/forums/topic/ … assistant/
456 2016-02-08 18:33
Re: Email all users (6 replies, posted in Discussions)
PunBB version PunBB 1.4.4
Extensions needed to adapt to 144.
Some solutions can be found on the forums.
But unfortunately there is no common repository for which any one would have watched.
457 2016-02-08 18:28
Re: Editing Tools (5 replies, posted in Discussions)
How do I upload an image?
http://punbb.informer.com/forums/topic/ … assistant/
&&
http://punbb.ru/topic4519-testirovanie- … henii.html
458 2016-02-08 08:22
Re: Email all users (6 replies, posted in Discussions)
I missed this one. Does it also work on punBB 1.4.4?
is an extension for 1 3 6. But it can also be adapted by 1 4 4
459 2016-02-08 03:35
Re: Email all users (6 replies, posted in Discussions)
extension pun_admin_broadcast_email
Good luck!
460 2016-02-08 03:26
Re: How to upload images (1 replies, posted in Discussions)
IMG = PunBB тест BBCode - it is ALT atribute
461 2016-02-08 03:23
Re: Editing Tools (5 replies, posted in Discussions)
→ Administration → Settings → Features
Quick post - Add a quick post form at the foot of topics.
462 2016-02-05 12:29
Re: About subcategory (1 replies, posted in PunBB 1.4 troubleshooting)
Yes. Extension om_suforums
Good luck
463 2016-02-04 10:03
Re: Deprecated: preg_replace()... Error (24 replies, posted in PunBB 1.4 troubleshooting)
Your version punbb 144?
464 2016-02-04 04:10
Re: Om Thanks Extension (18 replies, posted in Feature requests)
then upgrade or reinstall the extension hooks .
I checked and I have worked.
Attention! After reinstalling all thanks zeroed!
First , try to update the hooks .
Good luck )
465 2016-02-03 20:50
Re: Can someone help me get my website form to login to forum? (4 replies, posted in Discussions)
1/ create a new file with name login.php in /include/user/login.php.
2/ added it is code. See up.
3/ include file login.php in main.tpl /include/template/main.tpl.
Open main.tpl and paste
<div id="brd-visit" class="gen-content">
<!-- forum_welcome -->
<!-- forum_include "login.php" -->
<!-- forum_visit -->
all )))
See more Widgets For PunBB
466 2016-02-03 08:25
Re: Can someone help me get my website form to login to forum? (4 replies, posted in Discussions)
It is code from extensions Widgets For PunBB:
<div class="main-content">
<?php
global $forum_user, $forum_url, $lang_common;
// If user is logged display some informations about it
if (!$forum_user['is_guest']) {
?>
Привет, <strong><?php echo forum_htmlencode($forum_user['username']) ?></strong><br />
<a href="<?php echo forum_link($forum_url['logout'], array($forum_user['id'], generate_form_token('logout'.$forum_user['id']))) ?>">Выйти</a>
<?php
} else {
require_once FORUM_ROOT.'lang/'.$forum_user['language'].'/login.php';
$form_action = forum_link($forum_url['login']);
?>
<a href="javascript://" rel="nofollow" onclick="location.href = '<?php echo forum_link($forum_url['register']) ?>';"><?php echo $lang_common['Register'] ?></a>
<br />
<form method="post" action="<?php echo $form_action ?>">
<div class="hidden">
<input type="hidden" name="form_sent" value="1" />
<input type="hidden" name="redirect_url" value="<?php echo get_current_url() ?>" />
<input type="hidden" name="csrf_token" value="<?php echo generate_form_token($form_action) ?>" />
</div>
<div class="panel-input">
<br />
<input type="text" name="req_username" size="13" placeholder="<?php echo $lang_login['Username'] ?>" />
</div>
<div class="panel-input">
<br />
<input type="password" name="req_password" size="13" placeholder="<?php echo $lang_login['Password'] ?>" />
</div>
<div>
<label for="fld-remember-me"><span class="fld-label"><?php echo $lang_login['Remember me'] ?></span> <input type="checkbox" id="fld-remember-me" name="save_pass" value="1" /></label>
</div>
<div>
<span class="submit"><input type="submit" name="login" value="Войти" /></span>
</div>
</form>
<?php
}
?>
</div>
467 2016-01-30 23:51
Re: Om Thanks Extension (18 replies, posted in Feature requests)
it is hook
<hook id="vt_row_pre_display"><![CDATA[
// List of thankers
if ($cur_post['om_thanks_cache'] && $forum_config['o_om_thanks_show_post'] == '1')
{
$om_thanks_users = array();
$om_thanks_more = 0;
foreach ($cur_post['om_thanks_cache'] as $user_id => $username) {
$om_thanks_users[] = '<a href='.forum_link($forum_url['user'], $user_id).'>'.$username.'</a>';
$om_thanks_more++;
if ($forum_config['o_om_thanks_max_thanks'] > 0 && $om_thanks_more >= $forum_config['o_om_thanks_max_thanks']) {
break;
}
}
$om_thanks_more = (count($cur_post['om_thanks_cache']) > $om_thanks_more ? count($cur_post['om_thanks_cache']) - $om_thanks_more : 0);
$forum_page['post_options']['om_thanks'] = '<p class="post-om_thanks">'.$lang_om_thanks['Thankers'].': '.implode(', ', $om_thanks_users)
.($om_thanks_more ? ' '.sprintf($lang_om_thanks['and more'], $om_thanks_more) : '').'</p>';
}
]]></hook>
replace to
<hook id="vt_row_pre_post_actions_merge"><![CDATA[
if ($cur_post['poster_id'] > 1 && $cur_post['om_thanks_count'] > 0 && $forum_config['o_om_thanks_show_profile'] == '1')
$forum_page['post_actions']['om_thanks_count'] = '<li><span>'.$lang_om_thanks['Thanks count'].': <strong>'.forum_number_format($cur_post['om_thanks_count']).'</strong></span></li>';
if (!$forum_user['is_guest'] && $cur_post['poster_id'] != $forum_user['id'])
{
if (!array_key_exists($forum_user['id'], $cur_post['om_thanks_cache']))
{
$forum_page['post_actions']['om_thanks'] = '<li><span><a href="'.forum_link($forum_url['om_thanks_add'], array($cur_post['id'], generate_form_token('om_thanks_add'.$cur_post['id'].$forum_user['id']))).'">'.$lang_om_thanks['Give thanks'].'</a></span></li>';
}
else if ($forum_config['o_om_thanks_allow_take'] == '1')
{
$forum_page['post_actions']['om_thanks'] = '<li><span><a href="'.forum_link($forum_url['om_thanks_del'], array($cur_post['id'], generate_form_token('om_thanks_del'.$cur_post['id'].$forum_user['id']))).'">'.$lang_om_thanks['Take thanks'].'</a></span></li>';
}
}
]]></hook>
469 2016-01-23 21:57
Re: Om Thanks Extension (18 replies, posted in Feature requests)
outweigh the need to code on another hook.
that is, the hook is in charge of the output information in the signature.
470 2016-01-19 15:24
Re: punbb or phpbb (23 replies, posted in General discussion)
To be honest, PHPBB 3.1 has extension system.
https://www.phpbb.com/extensions/
Extensions are the natural successor to modifications (sometimes known as MODs), the development and support of which have defined the community's involvement in the phpBB project for over a decade. Unlike modifications, the extensions system for edit-less changes in phpBB 3.1 makes customising phpBB easier than ever.
Oh, wow! 4 years ago I used modifiers. However, optimizing your site does not yield (
Thanks.
471 2016-01-18 23:34
Re: punbb or phpbb (23 replies, posted in General discussion)
Punbb simple forum and fast.
Php - functional, but complex.
PunBB - hook system, phpbb - mod system.
472 2016-01-18 19:10
Re: Mix .Net and php? (3 replies, posted in Discussions)
forum.laaneberegneren.dk
OR
laaneberegneren.dk/forum
473 2015-12-30 19:45
Re: Oxygen.min.css, Minified? (3 replies, posted in PunBB 1.4 bug reports)
I understood.
I had the error code: (in Oxygen.php str.6)
$tpl_main = str_replace('<!-- forum_board_title -->', forum_htmlencode($forum_config['o_board_title']), $tpl_main);
css.min a compressed file for better speed.
474 2015-12-30 19:29
Re: Oxygen.min.css, Minified? (3 replies, posted in PunBB 1.4 bug reports)
Yes it is, on line 6.
But, thanks to the developers at least for it.