Sounds like the upload is failing: beyond that I couldn't say

Moved to Troubleshooting, because this isn't a bug
Enable debug mode, paste the full error

How big was your backup?

3,154

(7 replies, posted in PunBB 1.2 troubleshooting)

$result = $db->query("SELECT p.poster, p.poster_id, p.message, p.topic_id, t.subject FROM ".$db->prefix."posts AS p INNER JOIN ".$db->prefix."topics AS t ON t.id=p.topic_id WHERE p.deleted=1");

3,155

(3 replies, posted in PunBB 1.2 troubleshooting)

That sounds like a caching issue with your browser

3,156

(3 replies, posted in PunBB 1.2 troubleshooting)

Sounds like you're making a mistake in the code you're adding wink

Moved to Modifications

That's a modification, not a plugin.
I haven't looked at the code, but I have no reason to think it won't work

Moved to Modifications

Why not just use the plugin then? tongue

There's a Language and Styles plugin that lets you do that smile

Automatic? Write a cron job to run an update statement tongue

Yeah, moving the topics to a forum where people don't have permissions was a suggestion tongue

3,163

(6 replies, posted in PunBB 1.2 troubleshooting)

preparse_bbcode is called before posts are added to the database.
So, lets say you create a list BBCode. If preparse turns [LIST] into [list], then any pre-existing posts with [LIST] might not be parsed properly (because do_bbcode is looking for [list], not [LIST])

3,164

(6 replies, posted in PunBB 1.2 troubleshooting)

There's no caching being done, the only thing that is called is preparse_bbcode

3,165

(6 replies, posted in PunBB 1.2 troubleshooting)

All posts are parsed when displayed, there is no caching. Make sure the tags are all in the correct case?

Moved to Modifications

Try

if ($pun_config['o_chatbox'] == '1')
                $links[] = '<li id="navchat"><a href="#" onClick="toggleChat(\'modchat\');">'.$lang_common['Chat'].'</a>';
 $links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';

I think that's what you meant wink

3,167

(2 replies, posted in PunBB 1.2 bug reports)

Closed, not bugs (well, not 1.2 bugs) wink
For 1.2, the hardcoded strings were most likely added after the release of 1.2. They were hardcoded because it's much easier to do that than to get all of the language packs up to date. wink
For 1.3, we're not accepting reports at this time (although hardcoded strings should be dealt with before the final release).

3,168

(9 replies, posted in PunBB 1.2 bug reports)

Was I right? wink

Mmm, I didn't do anything: nice big_smile

3,170

(9 replies, posted in PunBB 1.2 bug reports)

My guess: you upgraded to 1.2.15 from an older version and didn't run the database update script wink

I can't seem to replicate the issue wink

Forums? Just change their positions so they're in alphabetical order...

k, which means I can't access it wink
I'm not sure what the issue is, if I were you I would check the error log for Apache and see if anything seems relevant. If not, make sure config.php isn't giving parse errors.

3,174

(4 replies, posted in PunBB 1.2 troubleshooting)

What would the point of it be though? I think most bots process forms like a human would, which means the hidden field would be sent. I also would think that cookies (especially session cookies) are handled properly, since they're used so often for anti-spam measures

Email validation would deal with that anyway