They aren't, PunBB uses PHP's date function.

2,677

(4 replies, posted in PunBB 1.2 troubleshooting)

Well, that sounds like two issues: one with viewtopic.php or include/functions.php (the admin tag).
Check the usergroup permissions first

Sounds like a mod_security issue, I would talk to your host

OK.
You just want to add the following code

update_forum(number);

where number is the ID of the forum where the topic is. This assumes you've included include/functions.php somehow (most likely using include/common.php)

No, it needs to be called within your file: include/functions.php simply defines what the function is and does, it doesn't execute it.

2,681

(4 replies, posted in PunBB 1.2 bug reports)

Which has been fixed in 1.3 for some time now wink

2,682

(6 replies, posted in PunBB 1.2 troubleshooting)

http://punbb.org/download/hdiff/hdiff-1 … .2.15.html
Hdiff to update directly. Then run the update PHP file.

connections != queries
Long lasting connections can cause an issue, yes, but the issue is much more likely to be host restrictions to cut down on one person hogging the connections.

It's a PHP function.

2,685

(1 replies, posted in PunBB 1.2 troubleshooting)

include/functions.php, error function

2,686

(10 replies, posted in PunBB 1.2 discussion)

Post your code

2,687

(15 replies, posted in PunBB 1.2 discussion)

As Paul pointed out, PunBB supports both PHP 4 and PHP 5. I can't think of any features we've decided not to implement because of PHP4. So, it doesn't make sense for us to limit PunBB to PHP5 wink

That's a host specific setting, as pedrotuga said.
As for how many, it's 1 per pageview.

Userlist isn't possible without a mod I believe.

Make the first query

update topics set poster="name", last_poster="name" where id=topic_id

and run update_forum

I don't see any of that code being used anywhere in the code you just pasted

Merging can be done, but it isn't the simplest thing to do wink
The simplest way would be to convert the vB forum to PunBB and then try merging the two PunBB forums.

echo '<img style="vertical-align: middle;" src="'.$pun_config['o_base_url'].'/img/'.$pun_user['style'].'/blog_icon_dot.gif">';

There are a couple reasons the code you had wouldn't work. This code should work fine, assuming you're inside a block of PHP

Oh, you want to change the author of a topic?

update topics set poster="name" where id=topic_id

where name is the name you want and topic_id is the ID of the topic.

UPDATE posts SET poster_id=X, poster="name" WHERE id=Y;

Variable use is the same (name is the name you want, X is the user id, Y is the id of the post

mmm, I should probably have mentioned this, but user_id doesn't exist: poster_id is what you're looking for tongue

update table won't work on MySQL I believe, you need just update wink

2,697

(10 replies, posted in PunBB 1.2 discussion)

Both users and topics should be a left join

That would be an update statement, not an alter table statement wink

That's not the reason you can't optimize it, you can't optimize it because it's a HEAP table and thus doesn't require optimization.

From admin_loader.php

if (!defined('PUN_PLUGIN_LOADED'))
    message('Loading of the plugin \''.$plugin.'\' failed.');

Did you edit the plugins?