daris wrote:

...what do you think about inserting quote content at selected position of quick reply field?

Are you talking about inserting a quote at the cursor position? This feature request was added to Wiki by Anatoly.

952

(6 replies, posted in PunBB 1.3 extensions)

Describe your request at this page.

blinks wrote:

BUT:

http://www.affiliate-marketing.de/forum … mburg.html

and

http://www.affiliate-marketing.de/forum/post12.html#p12

are exactly the same pages with the same content!!

These links led to the same page, because post with id 12 is start post of topic 5.
And what are the advantages, in your opinion, of displaying post-URL with this or that URL?

954

(4 replies, posted in PunBB 1.3 discussion)

We are now installing the PunBB Forum at http://software.informer.com/forum/. We are planning to install it to our other sites in the near future.

If you don't want to overwrite the array, you can just use something like this

$form['xfire'] = $_POST['form']['xfire'];
SuperMAG wrote:

i just updated to latest version, and it doesn't quote anymore. it was quoting before. i use google chrome.

I have tested pun_quote in Google Chrome 1.0.154.48, it seems to work properly.
The latest version of pun_quote 2.0.4 is available for download. In this version fixed bug with quoting text with substitution lines in main.tpl.

New version 1.3 of pun_admin_manage_extensions_improved has been released! Visit the extension page or use pun_repository to get it.

pun_quote 2.0.3 has been released. Bugs appeared because of the changes in user's status (online/offline) are fixed.

959

(4 replies, posted in PunBB 1.3 discussion)

Yes, it is. You should put the following line under a comment, or remove it:

define('FORUM_ALLOW_INDEX', 1);

on those pages, where you want to tell robots not to index the content of a page.

I've tested this extension in  Opera v9.63.  It seems to work properly. Could you please describe how it doesn't work by you in more detailed way?

This is a release of the new version of pun_quote. It is available on the extension page, SVN or you can get it via pun_repository. This version fixes bugs described in wiki, and improves the algorithm of processing selected text.

I am using Denwer, and subscription notification is not empty for me. Notifications also work fine in our forum.

First of all you need to modify array a little (added ","):

           'tournament_field'    => array(
                'datatype'        => 'INT(2)',
                'allow_null'    => true,
                'default'        => '0'
            ),

There is no special method to add many fields in DB. But you can add it one by one:

foreach ($schema['FIELDS'] as $field_name => $field_data)
        $forum_db->add_field('users', $field_name, $field_data['datatype'], $field_data['allow_null'], (isset($field_data['default']) ? $field_data['default'] : null));    
    

964

(8 replies, posted in PunBB 1.3 extensions)

The latest version of pun_poll is 1.1.2. It is available in the pun_repository, press the "Clear cache" link on manage extensions page.

What DB, version are you using? Could you send us the dump of your database, please?

What do you mean by "Test-Installation"? Have you installed it on your local machine?

967

(3 replies, posted in PunBB 1.3 troubleshooting)

First of all, you should ensure that the "Quick post" option is enabled at the "admin/settings.php?section=features" page. What extension have you got installed?

968

(8 replies, posted in PunBB 1.3 extensions)

What is the version number of the extension?

Replace

if (FORUM_PAGE == 'search')

with this code

if (FORUM_PAGE == 'search' || FORUM_PAGE == 'searchposts' || FORUM_PAGE == 'searchtopics')

You can rearrange it in "include/functions.php" at lines 413-469 (function "generate_navlinks").

You should generate csrf-token on every page where you are using forms. You can find and example of generating one in post.php at lines 295-303. Maybe, this extension will also be useful to you to add users quickly.

We have the url of a requested page and csrf_token in the table online (it is generated when user log in). These two strings are concatenated and hashed with sha1-algorithm. Given value is stored on the forum page in a hidden value.
There is an option "Online timeout". It defines the count of seconds idle before a user is removed from the online users list.
Every time a user requests a page of the forum, the list of online users is updated. This means that some information about the current user (logged time and previous url) will be updated, and all users, logged more than online timeout seconds ago, will be removed from the online table.
When a visitor writes his post more than online timeout and other users are browsing forum pages, the posting user will be removed from the online list. When a user presses the "Submit" button, he will be authorized via a cookie and, as he was removed from online table, a new csrf_token will be generated in the online table. So csrf_token in the online table doesn't equal csrf, which was used to generate csfr-token at the requested page.
To increase time frame of the security token, you should increase the online timeout. You can do it on "admin/settings.php" page in the "Default timeouts and redirect delay" section.

This expression

$jchat_query_rows = $forum_db->fetch_row($jchat_query);

should be

$jchat_query_rows = $forum_db->fetch_row($jchat_result);

It works fine if you insert an "img" tag inside the "url" tag, example.

What version of pun_poll are you using? In its latest version, the maximum poll duration is 90 days, and the maximum count of votes is 500.

Reactor wrote:

There should be no max votes number by default.

This restriction will be removed in the next version.