No, it is not. There is an extension request for this feature already.
652 2009-06-23 08:33
Re: Putting a password on a forum or category. How to? (5 replies, posted in PunBB 1.3 extensions)
No, there is not functionality for this in the forum core. Will it be enough for you just to hide some forums from a user?
653 2009-06-23 07:52
Re: Where do I go to set who will moderate the categories? (3 replies, posted in PunBB 1.3 troubleshooting)
Go to the administration section of the profile of the user who is intended to moderate some forums
Assign user to the administrators or the moderators group
Select the forums, the user will moderate, and press "Update moderator assignment" button.
654 2009-06-23 07:27
Re: typo in admin_settings.php (3 replies, posted in PunBB 1.3 bug reports)
Yes, you're right. Thanks.
655 2009-06-23 07:25
Re: Installation trouble (3 replies, posted in PunBB 1.3 troubleshooting)
Contact with your web-hoster. Or, if you have MySQL administrator account, use Grant sql-statement to allow access from another ip.
656 2009-06-23 06:48
Re: Profile (2 replies, posted in PunBB 1.2 troubleshooting)
What editing have you done?
657 2009-06-23 06:42
Re: Email setting validation (1 replies, posted in PunBB 1.3 bug reports)
Thanks, fixed
658 2009-06-22 12:32
Re: Mark as read after large interval of innactivity (3 replies, posted in PunBB 1.3 bug reports)
Thanks, I will try to reproduce it.
659 2009-06-22 12:32
Re: RSS Feed (extern.php) - partially wrong content (4 replies, posted in PunBB 1.3 bug reports)
- The <author> field contains "dummy@example.com" as mail address..
If only the post's author was a guest. You can edit the author field at the 131 line of "<FORUM_ROOT>/extern.php".
- The author name is somethimes completely wrong (seen with the "main" freed of all forums/threads).
Could you post an example, please?
660 2009-06-22 12:31
Re: Installation trouble (3 replies, posted in PunBB 1.3 troubleshooting)
Check $db_username and $db_password variables in "<FORUM_ROOT>/config.php".
My webhosting service told me to use a file called php_to_mysql and put in my username and password in that file.
For what purposes this file is used?
661 2009-06-22 11:45
Re: karma mod? (4 replies, posted in PunBB 1.3 extensions)
It is in unofficial repository.
662 2009-06-22 11:10
Re: Multi-paged threads in one page (1 replies, posted in PunBB 1.3 extensions)
No, it is not. But you can create an extension based on the mod for 1.2, if you have enough knowledge of PHP.
663 2009-06-22 10:33
Re: Show recent posts (5 replies, posted in PunBB 1.3 discussion)
In PunBB 1.3, the "show recent posts" link is "<FORUM_URL>/search.php?action=show_recent". To display the link in a header, study the code of "<FORUM_ROOT>/header.php" (lines 197-206). If you need some help, post your questions here.
664 2009-06-22 09:59
Re: How Do I Prevent Auto-logout??? (4 replies, posted in PunBB 1.3 troubleshooting)
Go to <FORUM_URL>/admin/settings.php?section=setup and increase visit timeout
665 2009-06-22 09:00
Re: How Do I Prevent Auto-logout??? (4 replies, posted in PunBB 1.3 troubleshooting)
This line is affecting the expiry time of the forum's cookie. If a user checks "Remember me", the cookie will expire after 14 days, otherwise it will expire after the visit's timeout.
666 2009-06-22 08:31
Re: Possible to have a co-admin user group? (2 replies, posted in PunBB 1.3 discussion)
What permission will be given to users from this group? Maybe, it will be enough to create a group based on the moderators group?
667 2009-06-22 07:40
Re: typo in admin_settings.php (3 replies, posted in PunBB 1.3 bug reports)
There is "be" in the lang file.
668 2009-06-22 07:28
Re: admin/maintenance uses wrong string (2 replies, posted in PunBB 1.3 bug reports)
Thanks for reporting, fixed.
669 2009-06-17 07:40
Re: Mark as read after large interval of innactivity (3 replies, posted in PunBB 1.3 bug reports)
I can't reproduce this bug. Сan you post instructions to get this error?
670 2009-06-17 07:05
Re: RSS Feed (extern.php) - partially wrong content (4 replies, posted in PunBB 1.3 bug reports)
There are several ways how you can use extern.php. How do you use it? Please, describe the problem in more detailed way.
671 2009-06-16 09:55
Re: email all new or unanswered topics periodically? (2 replies, posted in PunBB 1.3 discussion)
The features you have described can be implemented in an extension.
672 2009-06-16 08:37
Re: How to change style and add stars rank? (7 replies, posted in PunBB 1.3 discussion)
In the archive with PunBB forum, there is only Oxygen style. Now we have another official style - Informer. Also, you can get other styles from the unofficial repository or from this forum. All styles should be placed in the directory "<FORUM_ROOT>/style"
673 2009-06-15 14:53
Re: Unable to confirm security token (9 replies, posted in PunBB 1.3 troubleshooting)
...I was unable to figure out how to successfully create csrf tokens for forms that exist outside of my punbb directory.
You need to add hidden value to your form:
<input type="hidden" name="csrf_token" value="'.generate_form_token('http://site/form_handler.php').'" />
674 2009-06-15 14:16
Re: change background color in Oxygen style??? (1 replies, posted in General discussion)
All CSS rules for colors are placed in "<FORUM_ROOT>/style/<STYLE_NAME>/STYLE_NAME_cs.css".
The background of html body is specified in the first rule of this file.
675 2009-06-15 13:58
Re: Slow SQL requests (1 replies, posted in PunBB 1.3 troubleshooting)
First query runs after editing/deleting posts or topics in the function "strip_search_index" (FORUM_ROOT/include/search_idx.php).