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.
2,526 2007-08-08 21:10
Re: DB Management plugin not working. (1 replies, posted in PunBB 1.2 troubleshooting)
2,527 2007-08-08 20:33
Re: Online list just me? help me out (3 replies, posted in PunBB 1.2 troubleshooting)
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 2007-08-08 20:23
Re: Ban page? (2 replies, posted in PunBB 1.2 troubleshooting)
check_bans, include/functions.php
2,529 2007-08-07 20:43
Re: Link problem (1 replies, posted in PunBB 1.2 troubleshooting)
Without code we can't tell anything
2,530 2007-08-07 20:43
Re: Double posts and online users (38 replies, posted in PunBB 1.2 bug reports)
Did you run the database update script?
2,531 2007-08-06 22:48
Re: No "Database reported" message (19 replies, posted in PunBB 1.2 troubleshooting)
Just put it where you had it and call exit after it
2,532 2007-08-06 22:45
Re: No "Database reported" message (19 replies, posted in PunBB 1.2 troubleshooting)
Aha, that's why (and it's a good reason too)!
So just add a call to exit at the end of PunBB's footer.php and insert your code in the middle.
2,533 2007-08-06 21:57
Re: Moderator permissions on administrator posts (2 replies, posted in PunBB 1.2 discussion)
You're right, it isn't a bug
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).
2,534 2007-08-06 12:00
Re: How to export contents into HTML? (13 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to Modifications
2,535 2007-08-06 02:42
Re: [ANN] El Dorado - another forum in Rails (5 replies, posted in Programming)
Moved to Programming
2,536 2007-08-05 21:41
Re: W3C validation (26 replies, posted in General discussion)
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.
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.
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.
Cheers,
Matt
http://www.w3schools.com/css/pr_text_text-indent.asp
Is that what you're talking about?
2,537 2007-08-05 20:51
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
Done
2,538 2007-08-05 19:41
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
I haven't gotten any email
2,539 2007-08-05 17:22
Re: W3C validation (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.
2,540 2007-08-05 17:18
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
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 2007-08-05 16:05
Re: W3C validation (26 replies, posted in General discussion)
Link? I might be able to help
2,542 2007-08-05 13:18
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
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.
2,543 2007-08-05 13:08
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
$cookie_domain = '.bouzouks.net';
Try that
2,544 2007-08-05 11:39
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
Well $_COOKIE isn't modified when you call pun_setcookie, so I'm not sure exactly what you're seeing there
Could you provide a link?
2,545 2007-08-05 00:49
Re: [solved] Modification of the login system (13 replies, posted in PunBB 1.2 troubleshooting)
I'm not sure if what you put in that searchbox is the name of the site or the name of the cookie.
2,546 2007-08-04 17:06
Re: missing DBLayer::query_build() for sqlite in current SVN (1 replies, posted in PunBB 1.2 bug reports)
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
2,547 2007-08-04 10:50
Re: lang_char_encoding missing in http header ! (6 replies, posted in PunBB 1.2 troubleshooting)
Well, in 1.3 we do send charset via the header
2,548 2007-08-03 23:50
Re: lang_char_encoding missing in http header ! (6 replies, posted in PunBB 1.2 troubleshooting)
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 2007-08-03 23:04
Re: No "Database reported" message (19 replies, posted in PunBB 1.2 troubleshooting)
I don't know: to be honest, that doesn't make sense to me at all
2,550 2007-08-03 22:50
Re: No "Database reported" message (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