Sorry, I forgot to warn that the word should be in lower case:

SELECT id
FROM search_words
WHERE word = 'belinda'

352

(1 replies, posted in PunBB 1.3 additions)

The forum title is obligatory for filling. While the forum description it is not.

When unbuffered variable is true the SQL query sends to MySQL without automatically fetching and buffering the result rows. In the Forum core this parameter is false.

354

(2 replies, posted in Feature requests)

Perhaps, this extension will help you.

355

(1 replies, posted in Feature requests)

Here is an example of request, which collect all new topics from all forums, except "Test forum", at our Forums:

http://punbb.informer.com/forums/extern.php?nfid=28

Will it be enough for you?

Slavok wrote:

Did you try to manually find the problem word in the "search_words" table and the link to this word in the "search_matches" table?

To do this

  • Select the "search_words" table

  • Go to the tab "SQL"

  • Post this query in the field :

SELECT id
FROM search_words
WHERE word = 'Belinda'
  • Remember word id

  • Select the "search_matches" table

  • Go to the tab "SQL"

  • Post this query in the field :

SELECT *
FROM search_matches
WHERE word_id = <word_id>

Post here results of these queries.

Have you tried to search similar mod at punres.org?

358

(1 replies, posted in PunBB 1.3 discussion)

There is no such functionality in Forum core. Also there is no extension to solve this problem. Add an extension request to the Wiki.

To change the board title, edit the 154 line of header.php. It will look like:

$tpl_main = str_replace('<pun_title>', '<img src="http://img.informer.com/images/logo_si.png">', $tpl_main);

The board description can be changed in a similar manner.

Good work! I have an error at the "New posts" page:
Notice: Undefined index: subscribed_times in S:\home\localhost\www\pun13_RC2\search.php(375) : eval()'d code on line 11

Could you post the link to your forum, please? It is needed to examine your CSS.

What is the encoding of your DB?
Did you try to manually find the problem word in the "search_words" table and the link to this word in the "search_matches" table? What is the word?

Thanks for the extension. I found a bug. When you select two groups on the edit forum page and press the "Save changes" button, these error messages appear:
Notice: Undefined index: 2 in S:\home\localhost\www\pun13_RC2\admin\forums.php(337) : eval()'d code on line 11
Notice: Undefined index: 3 in S:\home\localhost\www\pun13_RC2\admin\forums.php(337) : eval()'d code on line 11
Notice: Undefined index: 7 in S:\home\localhost\www\pun13_RC2\admin\forums.php(337) : eval()'d code on line 11

Works fine for me. Nice job!

Where do you want to add it? At the board title, description, in the navigate menu?

Thanks for reporting. Fixed in [1427].

367

(5 replies, posted in PunBB 1.3 extensions)

jtd wrote:

After migration from other forum system all old topic have first_post_id and this is the problem.

All topics should have first_post_id. Why do you think it is the problem?

368

(2 replies, posted in PunBB 1.2 troubleshooting)

Firebug shows me that the footer has floated away to the top of the page.

I can't reproduce the bug. Describe it in more details, please.

370

(5 replies, posted in PunBB 1.3 extensions)

You need to replace the constant FORUM_ADMIN with '4' in maxnifest.xml. This worked for me.
Also I've updated the extension a bit. You can get the latest version in SVN.

371

(5 replies, posted in PunBB 1.3 extensions)

Moderator's functions are related with editing posts, forums, users profiles, etc, not with adding new users. That is why copy/pasting didn't work.
It can be a special permission for user groups.

372

(115 replies, posted in Supported extensions)

Thanks for the bug report! Fixed in pun_poll 1.1.7.

373

(115 replies, posted in Supported extensions)

rajuru wrote:

i am also confirming the problem. admin can edit the thread (first post). user gets this error when tries to edit the first post. i had to disabled the ext.

Fixed in pun_poll 1.1.6.

You can add a dependency of your extension on pun_antispam to manifiest.xml with this code after maxtestedon tag:

    <dependencies>
        <dependency>pun_antispam</dependency>
    </dependencies>

Here the description of structure of online table.