The upload could have been rejected for being too large.
The DB Management tool does work, but it's limited by PHP, among other things. You're better off using mysqldump to generate backups and importing a database dump directly back into MySQL.

Have you modified the online table in some way? Because that's the only thing I can think of: the results of that query don't depend on the user, so there's some reason we're only getting one current row.

2,528

(2 replies, posted in PunBB 1.2 troubleshooting)

check_bans, include/functions.php

2,529

(1 replies, posted in PunBB 1.2 troubleshooting)

Without code we can't tell anything wink

2,530

(38 replies, posted in PunBB 1.2 bug reports)

Did you run the database update script?

2,531

(19 replies, posted in PunBB 1.2 troubleshooting)

Just put it where you had it and call exit after it

2,532

(19 replies, posted in PunBB 1.2 troubleshooting)

Aha, that's why (and it's a good reason too)! big_smile
So just add a call to exit at the end of PunBB's footer.php and insert your code in the middle.

You're right, it isn't a bug wink
The reasoning (in my mind) is that you're giving moderators the power to moderate a forum, not the power to moderate a forum except for admin posts. That would be a policy issue and not something that should necessarily be enforced by the forum software, since under certain circumstances it may be prudent for a moderator to delete an admin's post (eg: if the admin inadvertently exposed some private information on a user).

Moved to Modifications

2,535

(5 replies, posted in Programming)

Moved to Programming

2,536

(26 replies, posted in General discussion)

MattF wrote:
Jérémie wrote:

Yup, way too much useless non breaking spaces. These have very specific meaning, and should be use only when necessary (i.e. never for graphic or layout issue).

That I can understand, even though it does seem a tad naff if the validator can't parse it properly. big_smile For simple indentation and such though, what preferable method is there? Trying to do that via css would be an absolute nightmare, if possible at all. Is there another indentation technique that can be used?

Edit: I'll rephrase that slightly. big_smile What valid methods are available, which will work across as many browsers as possible, other than using spaces? From what I've been able to gather, just about every other technique is possibly open to various amounts of interpretation by various browsers. Or am I incorrect in that regard? Any advice would be greatly appreciated. smile


Cheers,

Matt

http://www.w3schools.com/css/pr_text_text-indent.asp
Is that what you're talking about?

Done

I haven't gotten any email hmm

2,539

(26 replies, posted in General discussion)

XHTML requires that tags either have closing tags or be self-closing: without the space I'm not sure if it's really self-closing.
But yeah, it does look like there's something funky with the Validator.

I tested with LiveHTTPHeaders too: as you pointed out, there's no cookie being set there.
Without FTP access or something to check out the actual code being run, there isn't much more I can do.

2,541

(26 replies, posted in General discussion)

Link? I might be able to help wink

Well, looking at the headers your script sends, it doesn't even try to send a cookie.
And the post variables login.html sends don't match your script above.

$cookie_domain = '.bouzouks.net';

Try that wink

Well $_COOKIE isn't modified when you call pun_setcookie, so I'm not sure exactly what you're seeing there wink
Could you provide a link?

I'm not sure if what you put in that searchbox is the name of the site or the name of the cookie. wink

Closed, not a bug: query_build has not yet been implemented for DB systems other than MySQL(i).
Thanks for the report, but we're really not accepting bug reports for 1.3 at this point for just this reason wink

Well, in 1.3 we do send charset via the header smile

Fair point (in my mind the meta tag should override the header to allow for more fine-grained control of page content, but the header information does supersede all else).

2,549

(19 replies, posted in PunBB 1.2 troubleshooting)

I don't know: to be honest, that doesn't make sense to me at all tongue

2,550

(19 replies, posted in PunBB 1.2 troubleshooting)

OK, then paste a copy of your footer.php code, since that seems to be the issue wink