PunBB has no file called rss.php: extern.php outputs rss. Check out the sourcecode of it.
7,402 2005-02-23 00:19
Re: rss.php problems (17 replies, posted in PunBB 1.2 troubleshooting)
You mean with extern.php?
7,403 2005-02-23 00:07
Re: Attachment Mod 1.0.1 by Frank H (150 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Mmm, yeah, almost forgot about this
7,404 2005-02-23 00:06
Re: rss.php problems (17 replies, posted in PunBB 1.2 troubleshooting)
So... what's the issue with the RSS that you're having?
7,405 2005-02-22 20:28
Re: Timeout troubles (28 replies, posted in PunBB 1.2 discussion)
The outage (where we couldn't access the site), not the errors
7,406 2005-02-22 20:13
Re: Timeout troubles (28 replies, posted in PunBB 1.2 discussion)
Well, I found the cause of the outage
http://forum.textdrive.com/viewtopic.php?id=2235
7,407 2005-02-22 19:44
Re: Timeout troubles (28 replies, posted in PunBB 1.2 discussion)
An error was encountered
Error: Unable to connect to MySQL server. MySQL reported: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61).
Just got this
7,408 2005-02-22 19:08
Re: Timeout troubles (28 replies, posted in PunBB 1.2 discussion)
Yeah, same with me (I didn't time it)
Textdrive was down then as well
7,409 2005-02-22 16:37
Re: Timeout troubles (28 replies, posted in PunBB 1.2 discussion)
I got a "Could not fetch post data" or something like that when trying to open a thread just now. A refresh made it go away, but it's still odd...
Edit: Just got this
An error was encountered
Error: Unable to connect to MySQL server. MySQL reported: Lost connection to MySQL server during query.
7,410 2005-02-22 16:36
Re: PunPoll v1.2.3 (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
That might not work, since by default PunBB sets it to E_ALL
7,411 2005-02-22 15:56
Re: Unified converter! (InvPB, miniBB, PhpBB, vBulletin & YabbSE) (105 replies, posted in PunBB 1.2 discussion)
LOL, interesting.
I looked up his name and did an author search: the only time he posted in Feature Requests was to disagree with an idea
7,412 2005-02-21 14:33
Re: Wrong paths and such when banning outside of site.com/forums (3 replies, posted in PunBB 1.2 bug reports)
Yes, the links weren't meant to be: the banning was made to be done in the forum
You can do something like I did with parser.php, which is add PUN_ROOT to the beginning of all the links.
7,413 2005-02-21 14:23
Re: Wrong paths and such when banning outside of site.com/forums (3 replies, posted in PunBB 1.2 bug reports)
Well, the links aren't absolute paths. So, the way it's behaving is how it should (it assumes it's in the forum directory). You could always alter the banning feature in functions.php so it doesn't work outside of the forum folder...
7,414 2005-02-17 19:29
Re: Is Voting possible on PunBB??? (11 replies, posted in Feature requests)
Well, if you didn't need to make it so you could create a poll as a thread (so polls would be seperate) it would be possible in 1.2.1
Make a seperate page for displaying a list of polls, a page for displaying the poll, etc
Then make an admin plugin for permissions settings etc.
Then use the Navlinks adding option in Admin Options to make a link to the list
Edit: Of course, that's not ONLY an admin plugin, but it would mean you didn't have to modify any existing code
7,415 2005-02-17 16:57
Re: Calendar 2.0 (296 replies, posted in PunBB 1.2 modifications, plugins and integrations)
LOL
7,416 2005-02-17 01:41
Re: Funny ;) (132 replies, posted in General discussion)
Speaking of the Pirate Bay...
http://linuxreviews.org/news/2005/02/10 … den.en.pdf
7,417 2005-02-17 00:32
Re: PHP Help (7 replies, posted in Programming)
Not really sure...
Perhaps because you use a short tag after </form>? Try using the full <?php tag
7,418 2005-02-16 21:35
Re: COPPA Rules (21 replies, posted in PunBB 1.2 discussion)
Simply add something about it into the Forum Rules if you need it?
7,419 2005-02-16 18:00
Re: [Release] Easy Smilies (72 replies, posted in PunBB 1.2 modifications, plugins and integrations)
don't work for me
show me this error when i want delete
Notice: Undefined variable: toremove in c:\appserv\www\foro\plugins\AP_Easy_Smiles.php on line 20
LMAO
Missed this one:
Change
$toremove = stripslashes($toremove);
To
$toremove = stripslashes($_POST['toremove']);
7,420 2005-02-16 16:34
Re: SHA-1 Broken (6 replies, posted in General discussion)
Wow, this seemed a lot more important at 6:41 AM when I was half asleep
7,421 2005-02-16 11:44
Re: SHA-1 Broken (6 replies, posted in General discussion)
Mmm, it should be noted that as far as I can see, it hasn't actually been broken: this simply "allows an attacker to generate two streams of data which hash to the same value"
7,422 2005-02-16 11:41
Topic: SHA-1 Broken (6 replies, posted in General discussion)
7,423 2005-02-16 01:55
Re: Missing check in admin_groups.php (3 replies, posted in PunBB 1.2 bug reports)
Mmm, same thing when editing forums
7,424 2005-02-16 00:47
Re: [Release] Easy Smilies (72 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Change
if (!$toremove)
to
if (!$_POST['toremove'])
The other code only works if you have REGISTER_GLOBALS on
7,425 2005-02-15 16:58
Re: Private Messaging for 1.2.x BETA (47 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Mmm
You can manually run that SQL (replace prefix_ with the prefix of your install, or delete it if you don't have one):
INSERT INTO prefix_config (conf_name, conf_value) VALUES('o_pms_enabled', '1')
INSERT INTO prefix_config (conf_name, conf_value) VALUES('o_pms_messages', '50')
INSERT INTO prefix_config (conf_name, conf_value) VALUES('o_pms_mess_per_page', '10')