Maybe it will be more useful to configure it for forums? Or maybe you mean "forum" saying "sub-category"? Not every forum of the category needs to be supported.
801 2009-04-28 11:25
Re: [Request] Support Forum Extension (2 replies, posted in PunBB 1.3 extensions)
802 2009-04-28 10:48
Re: Attachment extension (98 replies, posted in PunBB 1.3 extensions)
After having read this topic I am not exactly sure whether this extension works with 1.3.3. at all and (more or less) faultlessly on top. As I will need this extension for a forum in near future (<3 Weeks), I'd like to know whether there is any use in waiting or whether I should just go and see about a different forum software.
Adaptation for 1.3.3 and fixing bugs of the extension is in process now. The release of pun_attachment will take place in 2,5-3 weeks.
803 2009-04-28 10:42
Re: i can't install in iis6 (2 replies, posted in PunBB 1.3 discussion)
After what actions did this error appear?
804 2009-04-28 10:41
Re: Attachment extension (98 replies, posted in PunBB 1.3 extensions)
Arimus, what is the version of your forum?
1. Where is the list of allowed file types defined
There is a list of files that are always denied now. To change it, go to <FORUM_URL>/admin/settings.php?section=pun_attach
2. Where is the maximum size defined
There is no option for limiting the size of a file. It is limited by an option in PHP.
805 2009-04-28 09:42
Re: New site - Feedback plzzzz (4 replies, posted in PunBB show off)
I like your style, nothing superfluous, and looks very nice.
806 2009-04-28 06:20
Re: Removing footer (9 replies, posted in PunBB 1.3 troubleshooting)
I would also like to know how to turn off the retarded extension list in the footer. As far as I'm concerned its nothing but a potential security hole...
Read this post
Why is debug still turned on in core?
We will turn it off
807 2009-04-27 12:05
Re: Help needed with the Style (6 replies, posted in PunBB 1.3 additions)
Try playing with "padding" property.
808 2009-04-27 11:39
Re: Board title (2 replies, posted in PunBB 1.3 additions)
You can add it directly to template file (<FORUM_ROOT>/include/template/main.tpl)
809 2009-04-27 11:14
Re: Punbb (2 replies, posted in Discussions)
810 2009-04-27 11:05
Re: how to send mail via gmail? (5 replies, posted in PunBB 1.3 troubleshooting)
You don't need to change the code like you have posted above. To use SSL, you need to check the option "Encrypt SMTP using SSL" at "<FORUM_ROOT>/admin/settings.php?section=email"
811 2009-04-27 10:54
Re: click active topics (7 replies, posted in PunBB 1.3 troubleshooting)
i'm using another language than english
You should add to the file "<FORUM_ROOT>/lang/<language>/search.php" the key "Posted in":
'Posted in' => 'TRANSLATION',
812 2009-04-27 08:34
Re: Trouble viewing extensions page (2 replies, posted in PunBB 1.3 troubleshooting)
This thread should help you.
813 2009-04-23 07:36
Re: how do we update PunBB 1.3.2 to PunBB 1.3.3? (2 replies, posted in PunBB 1.3 troubleshooting)
Make a backup of the forum directory and replace all forum files with new files from the archive.
814 2009-04-23 07:13
Re: Add a call inside the validateForm javascript function (1 replies, posted in PunBB 1.3 extensions)
You can redifine this mehtod. JavaScript code will look like:
Forum.validateForm = function(form)
{
tinyMCE.triggerSave();
...
}
815 2009-04-23 07:04
Re: Trouble with migrating database from 1.2 to 1.3.2 (9 replies, posted in PunBB 1.3 troubleshooting)
Follow these instructions:
Make a backup of your existing database.
Restore all forum tables in the new DB, which you want to use for 1.3.3.
In config.php of the installed forum replace the value of $db_name to the new DB for 1.3.3. Change $db_username and $db_password if needed.
Follow these instructions.
Report here the results of your attempt.
816 2009-04-21 07:23
Re: Trouble with migrating database from 1.2 to 1.3.2 (9 replies, posted in PunBB 1.3 troubleshooting)
What version of Forum do you use? What extensions have you got installed? What actions led to this error?
817 2009-04-21 07:07
Re: reCaptcha form garbled (5 replies, posted in PunBB 1.3 troubleshooting)
This warning means that there is no file "<FORUM_ROOT>/extensions/recaptchaextensions/recaptcha/lang/English/recaptcha.php". Check it up.
818 2009-04-21 07:01
Re: click active topics (7 replies, posted in PunBB 1.3 troubleshooting)
Is it a fresh install? Or you update your forum?
819 2009-04-21 06:49
Re: Running latest version?? (4 replies, posted in PunBB 1.2 bug reports)
This fix is not for a certain version. This fix is for the SVN version 1.2.
You can manually fix this file.
820 2009-04-20 10:25
Re: Errors after Upgrade to 1.3.3 (12 replies, posted in PunBB 1.3 troubleshooting)
It seems that it is a bug of some extension. What extensions have you got installed?
821 2009-04-20 09:29
Re: Show the real name at the userinfo (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
1) Replace 187 line of viewtopic.php with this:
$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online, u.realname FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
2) Go to 223 line of viewtopic.php and replace it with this peace of code:
if ($pun_config['o_show_user_info'] == '1')
{
if (!empty($cur_post['realname']))
$user_info[] = '<dd>Realname: '.$cur_post['realname'];
822 2009-04-20 09:01
Re: click active topics (7 replies, posted in PunBB 1.3 troubleshooting)
What is the version of your forum?
823 2009-04-20 08:53
Re: Deleted my config.php (4 replies, posted in PunBB 1.3 troubleshooting)
You can manually create config.php. Here is an example of it:
<?php
$db_type = 'mysqli';
$db_host = 'localhost';
$db_name = 'pun13';
$db_username = 'root';
$db_password = '1234567';
$db_prefix = 'punbb_';
$p_connect = false;
$base_url = 'http://localhost/forum';
$cookie_name = 'forum_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;
define('FORUM', 1);
$db_type is a type of your DB, possible values: "mysqli" (MySQL Improved), "mysql" (MySQL), "pgsql" (PostgreSQL), "sqlite" (SQLite). If you have questions about other variables in config.php, feel free to ask.
824 2009-04-20 08:07
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
Where exactly do you want us to add the hook? As I understand from your topic, you need the hook in post.php. But there are two hooks before ("po_pre_post_contents") and after ("po_pre_optional_fieldset") the output of the textarea field already.
825 2009-04-20 07:48
Re: Running latest version?? (4 replies, posted in PunBB 1.2 bug reports)
Thanks for reporting. Fixed.