26

(6 replies, posted in PunBB 1.3 troubleshooting)

I registered at your forum, same problem for me. Have you any extensions installed, except official extensions?

This topic should help you.

Add an extension request with a more detailed description of the extension, please.

29

(3 replies, posted in PunBB 1.3 additions)

You can use extern.php file for this. Or you can adapt one of these examples for your needs.

30

(6 replies, posted in PunBB 1.3 troubleshooting)

Could you give the link to your Forum, please?

31

(6 replies, posted in PunBB 1.3 discussion)

maxh wrote:

How can I merge two users in PunBB 1.3? I've seen the user merge admin plugin, but it says to install it in the plugins folder, which doesn't exist. I tried manually creating a plugins folder and putting it there, but it didn't seem to work.

What plugin have you tried to use?

This language key can't be used in extensions until a new release in the PunBB 1.3 branch.

  • Find this user via the administration console on the page <FORUM_URL>/admin/users.php

  • Select the user from the list, and press the "Change group" button

  • Change the user's group.

34

(5 replies, posted in PunBB discussions)

Do you want to use one merged DB for these forums? Provide more details, please.

35

(6 replies, posted in PunBB 1.3 bug reports)

PHP constant doesn't need to be quoted, otherwise it will become a string.

Thanks for reporting this. We will investigate the problem.

consolibyte wrote:

OK, but then I have to do that every time a new user registers, correct?

No, you need to do it only once.

Set the default value of the "auto_notify" column in the "users" table to "1".

Thanks for reporting. Fixed in [1437]

Thanks for the nice idea. Perhaps, we will add this feature to the Forum core.

chovy wrote:

I don't know if it's possible to hook it in with an extension, it should be rather easy as I'm guessing the post object is available given the date of the post is displayed.

You need to use just two hooks:

  • "in_qr_get_cats_and_forums" - to fetch the topic subject

  • "in_normal_row_pre_display" -to replace the HTML code of the last post link with a new one.

Thanks for reporting. Language pack updated in [1434].

Where and when did this message appear? Provide more details, please.

In order for PunBB to function properly, the directory named <em>cache</em> must be writable by PHP. Use chmod to set the appropriate directory permissions. If in doubt, chmod to 0777.

jordi wrote:

PS. PunBB Dev Team, you have a bug report from me...

Could you resend it, please?

Such changes require much change in the code of the core. Perhaps we will use tables instead of divs in the next branch of PunBB. But not in PunBB 1.3.

Whater Soer wrote:

Slavok, in the 1.1.7 version I'm observing bug which I have reported before. And the behavior is absolutely same. Could you have a look, please smile

Thanks! The bug fixed in [1432].
Also the bug repoted here fixed. pun_poll 1.1.8 has been released.

vaska94 wrote:

1. on a attachment Mod i chmoded all folders and files to 777 but
when i upload files all files ar 0 bytes on FTP smile

Is there some records in the attachments table in DB?

vaska94 wrote:

2. on a Poll Mod when i'm posting a topic and 
when poll fields are blank forum gives error
http://img687.imageshack.us/img687/3386/wtfux.jpg

Thanks for reporting! Fixed in pun_poll 1.1.8.

Language pack for pun_poll should be placed in "<FORUM_ROOT>/extensions/pun_poll/lang/de" directory. This directory should contain "pun_poll.php" file with extension translation.

This should work without such error:

<?php ob_start(); ?>
<html>
<body>
<ul>
   <?php

    define('FORUM_ROOT', './');//your own forum_root here!!!!
    $_GET['type']='html';
    require FORUM_ROOT.'extern.php';

?>
</ul>
</body>
</html>
<?php ob_end_flush(); ?>

Comment the 425 line of "<FORUM_ROOT>/viewtopic.php". And add this line after 350 line of "<FORUM_ROOT>/misc.php":

message($lang_common['Bad request']);