Hi, fantasma! It is difficult to correctly delete users and all their posts via SQL-console because you will need to track many changes in DB.
The way to minimize DB changes is to alter posts` author field to Guest for instead of deleted users.
To do so, for the posts written by the users you've just deleted. Your SQL query will look like:
UPDATE <DB_Prefix>_posts SET poster_id = 1 WHERE ID IN (<list of users id>)

1,177

(14 replies, posted in PunBB 1.2 troubleshooting)

Cew27, if you have the same problem as TMuet does just delete file cache_config.php from directory <FORUM_ROOT>/cache/.

scarboy, please insert the code from the file viewtopic.php into the post for me to see it (you can use tag "Code" for this)

Hunglan, are there any messages or errors on the page when you upload the avatar?

1,180

(13 replies, posted in PunBB 1.3 extensions)

New version of Pun BBCode available from SVN repository. Here you can see the changes

1,181

(2 replies, posted in General discussion)

Hi, RuKuZ! Make sure that in the directory "include/dblayer" there is a file named "mysql.php".

Hi, hunglan!
1- Are there any errors on the page or in the log file?
2- This post will help you to install the extension. You don't need to run install_function.php.

1,183

(1 replies, posted in PunBB 1.3 troubleshooting)

We have taken your request into account and added a new hook to add a new type of output. You can see the changes here

Maybe this link will help you

1,185

(4 replies, posted in Feature requests)

Hi! To see user's posts:

  • Go to <FORUM_ROOT>/search.php

  • Write the user's name, whos posts you want to see in  "Author search" field

  • Then select "Posts" in "Show result as" list and click "Submit".

1,186

(6 replies, posted in PunBB 1.2 troubleshooting)

prstech, this post should help you

This problem was discussed here

1,188

(151 replies, posted in PunBB 1.3 extensions)

Johu, why you think that usage ex_start in insecure?
If you need to make checking like this (Line 81-82):

if ($forum_user['g_read_board'] == '0')
    exit($lang_common['No view']);

Just do it (checking) in hook "ex_start". To add new action use hook "ex_new_action"

1,189

(8 replies, posted in Feature requests)

Xavier77, what exactly you can't find?
If you use MySQL you should:

  • Find file <FORUM_URL>/include/dblayer/mysql.php

  • Find code Line 76-79:
    if (defined('PUN_SHOW_QUERIES'))

    $q_start = get_microtime();

    if ($unbuffered)

  • Replace this lines with this:
    if (defined('PUN_SHOW_QUERIES'))

    $q_start = get_microtime();

    $sql = str_replace($this->prefix.'users', <your forum user table> , $sql);

    if ($unbuffered)

Hi!
qdb, to move a forum to other category you should:

  • Log in with administrator privileges and go to <FORUM_URL>/admin_forums.php.

  • Choose forum which category you need to change and click on "Edit"

  • Select the proper category in Category List

  • Press the button "Save Changes"

1,191

(8 replies, posted in Feature requests)

Hi!
Maybe this topic will help you to solve your problem.

1,192

(8 replies, posted in PunBB 1.3 extensions)

Of course, you will

  • Try to execute next SQL:
    UPDATE config SET conf_value = '<url to your forum>' WHERE conf_name = 'o_base_url';
    Alter config to <DB_REFIX>_config if necessary.

  • And delete all .php files in the <FORUM_ROOT>/cache directory.

quaker wrote:

could i do the same line and use my script in that location?

Yes, you could

fantasma, in report you wrote:

add this in the next update of punbb

What exectly would you like us to add to the next update?

1,196

(4 replies, posted in PunBB 1.3 troubleshooting)

This bug appeared after the parameter of group settings was removed from the core. The parameter determined the number of seconds after which a user could change the topic subject - we decided not to use this option any longer. Surely, this bug has been already fixed in SVN. We are also planning to release a test hotfix for PunBB 1.3 RC which would fix this bug.

1,197

(4 replies, posted in PunBB 1.3 troubleshooting)

Yes, it's bug. Soon hotfix will be ready to correct it

Hi, Bowser.
To install extension:

  • Download the extension you need. This is probably a zip file containing a folder.

  • Unzip/copy this folder to directory <FORUM_ROOT>/extensions/.

  • Log in with administrator privileges and go to "Administration" / "Install extensions" (<FORUM_URL>/admin/extensions.php?section=install).

  • Click "Install extension" link for the extension you have just copied.

  • Read installation notices (if any) and press "Install extension" to start installation process.

Hi, miller. If you need to remove Page 1, etc. from all forum pages, you should replace Line 583 from inlclude/functions.php

$crumbs .= (is_array($pun_page['crumbs'][$i]) ? htmlspecialchars($pun_page['crumbs'][$i][0]) : htmlspecialchars($pun_page['crumbs'][$i])).((isset($pun_page['page']) && $i == ($num_crumbs - 1)) ? ' ('.$lang_common['Page'].' '.$pun_page['page'].')' : '').($i > 0 ? $lang_common['Title separator'] : '');

with this

$crumbs .= (is_array($pun_page['crumbs'][$i]) ? htmlspecialchars($pun_page['crumbs'][$i][0]) : htmlspecialchars($pun_page['crumbs'][$i])).($i > 0 ? $lang_common['Title separator'] : '');

1,200

(4 replies, posted in General discussion)

3. Go to "Administration" and choose bookmark "Extensions", than click on "Install extensions".