Sorry, I forgot to warn that the word should be in lower case:
SELECT id
FROM search_words
WHERE word = 'belinda'
You are not logged in. Please login or register.
PunBB Forums → Posts by Slavok
Sorry, I forgot to warn that the word should be in lower case:
SELECT id
FROM search_words
WHERE word = 'belinda'
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.
Perhaps, this extension will help you.
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?
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?
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].
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?
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.
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.
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.
Thanks for the bug report! Fixed in pun_poll 1.1.7.
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.
PunBB Forums → Posts by Slavok
Powered by PunBB, supported by Informer Technologies, Inc.