Nope. Talk to your host. That's a MySQL issue.
77 2008-05-05 01:30
Re: extension display order? (5 replies, posted in PunBB 1.3 extensions)
Yeah, we've discussed a priority system in the past and it just hasn't had a whole lot of support and has been forgotten. We'll see.
79 2008-05-04 12:19
Re: What does this mean? (6 replies, posted in PunBB 1.2 troubleshooting)
It sounds like you haven't uploaded all of the files.
80 2008-05-04 10:57
Re: extension display order? (5 replies, posted in PunBB 1.3 extensions)
Currently it's determined by installation order.
81 2008-05-04 10:57
Re: Importing Users/Posts/Forums From 1.2.x (4 replies, posted in PunBB 1.3 troubleshooting)
The db_update.php script exists. However, again, 1.3 is a beta and should not be run in production.
82 2008-05-04 00:23
Re: Guest gets admin rank?! (1 replies, posted in PunBB 1.2 troubleshooting)
This sounds like a very old problem that was fixed a while ago with conversions.
Try seeing if the group ID for user ID 1 (the guest user) is set incorrectly.
83 2008-05-03 21:23
Re: Seemingly random "Unable to create..." errors (6 replies, posted in PunBB 1.2 troubleshooting)
The problem is that PunBB 1.2 doesn't have full UTF-8 support. If you can, you should avoid using any UTF-8 related stuff at all.
84 2008-05-03 21:01
Re: Seemingly random "Unable to create..." errors (6 replies, posted in PunBB 1.2 troubleshooting)
Enable debug mode, paste the full errro
85 2008-05-02 18:55
Re: How to know if the current user is banned ? (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
check_cookie is already run when you load include/common.php.
You'll need to fix the paths to styles, etc to use PUN_ROOT at the beginning.
86 2008-05-02 18:54
Re: Group permissions by category (2 replies, posted in PunBB 1.2 discussion)
You want to change all of the forum permissions to category permissions? If so, you'll need to rewrite all of the queries that reference the forum_perms table (and admin_forums.php).
87 2008-05-02 10:59
Re: How to know if the current user is banned ? (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
If you're including common.php, shouldn't check_bans be called, showing the message if the user is banned?
88 2008-05-02 00:23
Re: Hosting problems, I need help bad. PunnBB problem? (21 replies, posted in PunBB 1.2 troubleshooting)
Yes, by editing viewforum.php to have the query only return topics with last post times in the last x days. You would also want to add an index to the topics table on that column.
89 2008-04-30 20:29
Re: One user in a few g roups ... - Easiest way? (5 replies, posted in PunBB 1.2 troubleshooting)
If it works, yes. Otherwise, I would suggest just creating a "super group" for that user with all the correct permissions.
The only case that doesn't work for is moderator groups, in which case I would suggest using the mod or waiting for 1.3.
90 2008-04-30 18:34
Re: PostgreSQL warnings in log (17 replies, posted in PunBB 1.2 troubleshooting)
And again, that doesn't make sense. I don't know about the whole "nonstandard" thing, I know MySQL and SQLite do it. However, it doesn't address the issue of how to escape a character if there are no longer escape sequences. For example:
foo="this is a string"
lets say that string is created by user input. Without an escape character, how do I prevent this?
foo="this is a string" or 1=1 or foo=""
91 2008-04-30 18:30
Re: Problems after moving forum (5 replies, posted in PunBB 1.2 troubleshooting)
- I can't post. It says: "* At least 0 seconds have to pass between posts. Please wait a little while and try posting again."
That's due to the timestamps in the database being "in the future" with respect to the current time. Likely due to an incorrectly set clock on one of the two servers.
- I had a few unread topics before the move, these are not marked "unread" now. They always stay on top of the other topics.
Probably the same deal, their last post times are in the future.
92 2008-04-30 18:29
Re: Logout Problem (12 replies, posted in PunBB 1.2 troubleshooting)
That's probably correct
93 2008-04-30 13:50
Re: Update extension? (6 replies, posted in PunBB 1.3 extensions)
SuperMAG: Not the same thing at all. He's talking about upgrading extensions when a new version comes out, not about rapidly refreshing hooks for development purposes.
94 2008-04-30 13:50
Re: change e-mail address (2 replies, posted in PunBB 1.3 troubleshooting)
That is what happens for normal users in general, I believe.
95 2008-04-30 10:23
Re: Date Validations in PHP (3 replies, posted in Programming)
Huh? There's no need to do that validation when you have check_date...
96 2008-04-30 10:21
Re: Is it possible? (2 replies, posted in PunBB 1.2 discussion)
Yes. Disable registration and use the User Management plugin to manually create accounts.
97 2008-04-30 02:45
Re: How does the extension system handle the same variable name (5 replies, posted in PunBB 1.3 troubleshooting)
Yes, there's a define in include/essentials.php that disables hooks that is commented out by default.
98 2008-04-30 02:03
Re: How does the extension system handle the same variable name (5 replies, posted in PunBB 1.3 troubleshooting)
As Vovochka said, if extension authors want to use variables for storage, they can create variables with their own names based on extension ID. There will be developer documentation at some point that explains more of these kinds of things. Essentially, there is no way to keep extension authors from stepping on each others toes deliberately. The method we use here for extensions is good in that it gives access to variables that you can't necessarily get otherwise (eg: a hook like what we have in a function lets you globalize a variable and use it: other systems would have to resort to using $_GLOBALS because of scope issues). On the other hand, it also means that your code is executed like regular code, which means it can overwrite variables unintentionally if you don't follow naming standards, etc. No different than a modification.
In the words of Spiderman: "With great power comes great responsibility."
99 2008-04-29 21:15
Re: PostgreSQL warnings in log (17 replies, posted in PunBB 1.2 troubleshooting)
This isn't making much sense to me. Either backslashes can be used as an escape character or they can't. If they can't, we need another escape character, since we need them to prevent SQL injects.
Unless someone can shed more light on this (and provide a solution other than "add E before every time you escape something properly", which isn't cross database compatible), I'm afraid there's nothing much we can do.
100 2008-04-29 10:39
Re: 2 Domains single login (2 replies, posted in PunBB 1.2 discussion)
I would research how Microsoft's Passport and other similar systems work. I believe you can do something similar/more secure using iframes (of course, some browsers may reject the cookies).