Maybe it will be more useful to configure it for forums? Or maybe you mean "forum" saying "sub-category"? smile Not every forum of the category needs to be supported.

802

(98 replies, posted in PunBB 1.3 extensions)

Okeanos wrote:

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

(2 replies, posted in PunBB 1.3 discussion)

After what actions did this error appear?

804

(98 replies, posted in PunBB 1.3 extensions)

Arimus, what is the version of your forum?

Arimus wrote:

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

Arimus wrote:

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

(4 replies, posted in PunBB show off)

I like your style, nothing superfluous, and looks very nice.

806

(9 replies, posted in PunBB 1.3 troubleshooting)

Zodiac wrote:

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

Utchin wrote:

Why is debug still turned on in core?

We will turn it off

807

(6 replies, posted in PunBB 1.3 additions)

Try playing with "padding" property.

808

(2 replies, posted in PunBB 1.3 additions)

You can add it directly to template file (<FORUM_ROOT>/include/template/main.tpl)

809

(2 replies, posted in Discussions)

This article will familiarize you with PunBB. Also, you can read this.

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

(7 replies, posted in PunBB 1.3 troubleshooting)

qie wrote:

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',

This thread should help you.

Make a backup of the forum directory and replace all forum files with new files from the archive.

You can redifine this mehtod. JavaScript code will look like:

Forum.validateForm = function(form)
{
    tinyMCE.triggerSave();
        ...
}

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.

What version of Forum do you use? What extensions have you got installed? What actions led to this error?

817

(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

(7 replies, posted in PunBB 1.3 troubleshooting)

Is it a fresh install? Or you update your forum?

819

(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.

It seems that it is a bug of some extension. What extensions have you got installed?

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

(7 replies, posted in PunBB 1.3 troubleshooting)

What is the version of your forum?

823

(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

(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

(4 replies, posted in PunBB 1.2 bug reports)

Thanks for reporting. Fixed.