It's probably the way two of the extensions interact
851 2008-02-23 03:00
Re: include/common_admin.php(89) : eval()'d code on line 4 (9 replies, posted in PunBB 1.3 troubleshooting)
852 2008-02-23 01:16
Re: Problems with installation (8 replies, posted in PunBB 1.2 troubleshooting)
http://punbb.org/docs/video_tutorials/v … punbb.html
Does that help?
853 2008-02-23 01:07
Re: Profile > Identity (3 replies, posted in PunBB 1.3 troubleshooting)
Off the top of my head, it looks like you could do some output buffering, close the buffer as if nothing ever happened, and output the correct code.
854 2008-02-23 00:58
Re: URL is not censored in viewtopic (1 replies, posted in PunBB 1.3 troubleshooting)
Fixed
855 2008-02-22 21:37
Re: UTF-8 Language Packs - Done! (10 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Solovey: It's more than that or you're likely to have issues
856 2008-02-22 16:43
Re: Can I email all of my registered members? (13 replies, posted in PunBB 1.2 troubleshooting)
If you didn't put in any information, it uses PHP's mail function, just like the rest of PunBB.
857 2008-02-22 16:05
Re: include/common_admin.php(89) : eval()'d code on line 4 (9 replies, posted in PunBB 1.3 troubleshooting)
Well, one of the three (or a combination) of them has caused an error, that's what the line means
858 2008-02-22 15:54
Re: include/common_admin.php(89) : eval()'d code on line 4 (9 replies, posted in PunBB 1.3 troubleshooting)
What extension did you try installing?
859 2008-02-22 15:18
Re: I get and error when i don maintaince ... (9 replies, posted in PunBB 1.2 troubleshooting)
Have you modified your database tables/language files to try to be UTF-8 compatible?
860 2008-02-22 14:15
Re: I get and error when i don maintaince ... (9 replies, posted in PunBB 1.2 troubleshooting)
Did you choose to empty the search index when rebuilding?
861 2008-02-22 14:14
Re: Profile > Administration - Moderators (5 replies, posted in PunBB 1.3 troubleshooting)
Gizzmo: That's not the same bug, it's another issue that we're dealing with.
qubertman: You don't see any of the tabs, since you're not allowed to edit any user data. It doesn't affect the ability to actually ban users. I'm not sure we want to change that.
862 2008-02-22 11:52
Re: Install 1.2.16 on a UTF8 DB (18 replies, posted in PunBB 1.2 troubleshooting)
LHT: It's a little more complicated than that. You have to edit the dblayer file for MySQL to add SET NAMES UTF8 and you need to edit the language file to serve up stuff in UTF-8. If you do that and change the database collation from the start, I think you're fine.
863 2008-02-22 11:46
Re: Profile > Administration - Moderators (5 replies, posted in PunBB 1.3 troubleshooting)
It doesn't appear when the two of those are CHECKED?
865 2008-02-22 03:36
Re: PunBB as the main frontend for a website (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
The forum section is easily accomplished via forum permissions.
The news generator plugin should be able to handle the homepage stuff.
866 2008-02-22 00:34
Re: PunBB 1.2.17 (69 replies, posted in News)
You need to run the database update script to change the version number
867 2008-02-22 00:12
Re: Feedback on the update process (81 replies, posted in PunBB 1.3 troubleshooting)
I was referring to your old config file, not the one that was generated.
868 2008-02-22 00:05
Re: Can't log in, can't log out (14 replies, posted in PunBB 1.2 troubleshooting)
Have you changed your cookie settings in config.php recently?
869 2008-02-21 22:33
Re: [Extension release] Gallery (37 replies, posted in PunBB 1.3 extensions)
You need to use the latest SVN, that was a known issue with the beta that was fixed a while back
873 2008-02-21 22:06
Re: Can't log in, can't log out (14 replies, posted in PunBB 1.2 troubleshooting)
Ahmed: Could you provide a link to your forum?
874 2008-02-21 13:57
Re: This Might be a solution For Dublicate Urls in 1.3 .. i mean SEF urls (11 replies, posted in PunBB 1.3 troubleshooting)
So why does PunBB still support PHP4, a discontinued product?
Because we can. We don't use any PHP 5 only features, so there's no reason to drop support.
One of the devs answered that "PunBB does not require any features of PHP5." But what about the future of PunBB?
When we want/need those features, we can raise the version requirement. There's no reason to arbitrarily raise the version required. We have no problem doing so when necessary (eg: PunBB 1.3 requires at least PHP 4.3, which is a higher requirement than 1.2, and also requires a newer version of MySQL).
There are many great new classes and functions that come with PHP5, like filter_* and PDO.
Filter:
http://www.php-security.org/MOPB/PMOPB-45-2007.html
"This vulnerability is also one of the reasons why we do not recommend using ext/filter for user input filtering/validation. Whenever there is a fault in the code the application might be open for attacks and only the admin of the server is able to fix this. This is especially bad in shared hosting environments."
PDO:
We have our own DB layer set up, I don't see why we need another abstraction layer.
SimpleXMLElement and XMLWriter will allow you to easily parse extension info and syndicate feeds.
Seems to me like we're already doing fine parsing extension info, and that code could be used to syndicate feeds as well (I think). What's the problem?
And SPL will be great once (if) PunBB becomes OO.
Super. But it isn't. So it's irrelevant
There is absolutely no reason to not discontinue PHP4 support, and move on to PHP5.
Except for the fact that we neither want nor need the features given to us only in PHP5. We don't want to stop support for the sake of stopping support. If there are compelling reasons (like there were in 1.3), then we raise the version number.
875 2008-02-21 12:01
Re: & in username (6 replies, posted in PunBB 1.3 troubleshooting)
whatrevolution is right, the issue is data being run through htmlspecialchars twice.
qubertman: Could you tell me what files you're seeing this in so I make sure I don't miss anything?