PHP constant doesn't need to be quoted, otherwise it will become a string.
327 2009-11-16 08:48
Re: Some posts being ignored when rebuilding the search index? (17 replies, posted in PunBB 1.2 bug reports)
Thanks for reporting this. We will investigate the problem.
328 2009-11-13 12:57
Re: How can I automatically subscribe users whenever they post a topic? (3 replies, posted in PunBB 1.3 discussion)
OK, but then I have to do that every time a new user registers, correct?
No, you need to do it only once.
329 2009-11-13 08:05
Re: How can I automatically subscribe users whenever they post a topic? (3 replies, posted in PunBB 1.3 discussion)
Set the default value of the "auto_notify" column in the "users" table to "1".
330 2009-11-11 10:59
Re: Incorrect topics sort order when moderating a forum (1 replies, posted in PunBB 1.3 bug reports)
Thanks for reporting. Fixed in [1437]
331 2009-11-11 09:55
Re: feature request: enable a tooltip for the "last post" column (1 replies, posted in PunBB 1.3 additions)
Thanks for the nice idea. Perhaps, we will add this feature to the Forum core.
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.
332 2009-11-10 08:55
Re: pun_admin_broadcast_email (31 replies, posted in Supported extensions)
Thanks for reporting. Language pack updated in [1434].
333 2009-11-10 07:26
Re: Server too busy problem (1 replies, posted in PunBB 1.3 troubleshooting)
Where and when did this message appear? Provide more details, please.
334 2009-11-10 07:18
Re: Unable to write updates cache file to cache directory. (8 replies, posted in PunBB 1.3 troubleshooting)
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.
335 2009-11-09 09:56
Re: PunBB 1.3 Template Based Edition!? (3 replies, posted in PunBB 1.3 discussion)
PS. PunBB Dev Team, you have a bug report from me...
Could you resend it, please?
336 2009-11-09 09:42
Re: PunBB 1.3 Template Based Edition!? (3 replies, posted in PunBB 1.3 discussion)
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.
338 2009-11-09 09:31
Re: Bug With Attachments Mod and Poll Mod (1 replies, posted in PunBB 1.3 bug reports)
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?
2. on a Poll Mod when i'm posting a topic and
when poll fields are blank forum gives error
Thanks for reporting! Fixed in pun_poll 1.1.8.
339 2009-11-06 08:07
Re: [Solved] Trying to change the language of new extension (2 replies, posted in PunBB 1.3 troubleshooting)
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.
340 2009-11-06 07:38
Re: header modification warning in extern.php (ver 1.3.2) (1 replies, posted in PunBB 1.3 troubleshooting)
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(); ?>
341 2009-11-05 09:27
Re: How to remove "Report" link from the posts footer? (2 replies, posted in PunBB 1.3 troubleshooting)
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']);
342 2009-11-05 09:14
Re: Using PHP in Template... (9 replies, posted in PunBB 1.2 troubleshooting)
It seems that problem was solved. I can see the banner at the header.
343 2009-11-05 09:10
Re: Spam! (22 replies, posted in Discussions)
Just install latest version of pun_antispam via pun_repository or manually download it from our site.
344 2009-11-05 09:05
Re: Some posts being ignored when rebuilding the search index? (17 replies, posted in PunBB 1.2 bug reports)
I don't like that all words have id=1. I think it's wrong. Have you installed any mods, which can affected on the search mechanism?
345 2009-11-03 11:43
Re: Log-in implementation (3 replies, posted in PunBB 1.3 discussion)
Could you describe in more detail what exactly you want to add, please?
346 2009-11-03 11:28
Re: Move from PHP 4 to PHP 5 (1 replies, posted in PunBB 1.3 discussion)
And is there a recommended procedure for moving a forum to a new server?
There are no special recommendations. If you use a custom URL scheme, check that mod_rewrite is installed on your new server.
347 2009-11-03 09:55
Re: Too long title on topic posts page (5 replies, posted in PunBB 1.3 discussion)
The page title is generated based on the page breadcrumbs. Setting breadcrumbs for a viewtopic page is done at 231-235 lines of "viewtopic.php". The function "generate_crumbs" (502 line of "<FORUM_ROOT>/include/functions.php") generates the resulting string. Will this information be enough for you?
348 2009-11-03 08:26
Re: Log-in implementation (3 replies, posted in PunBB 1.3 discussion)
After including the "include/common.php" file, $forum_user variable will be available in code. It is store all information about user.
349 2009-11-03 08:20
Re: PunBB sitemap generator (2 replies, posted in PunBB 1.3 discussion)
350 2009-11-03 08:12
Re: Some posts being ignored when rebuilding the search index? (17 replies, posted in PunBB 1.2 bug reports)
Remove the index for "search_matches" table with "word_id" keyname.
What is the first column in "search_words" table? Post here the structure of "search_words" table, please.