7,401

(17 replies, posted in PunBB 1.2 troubleshooting)

PunBB has no file called rss.php: extern.php outputs rss. Check out the sourcecode of it.

7,402

(17 replies, posted in PunBB 1.2 troubleshooting)

You mean with extern.php?

Mmm, yeah, almost forgot about this smile

7,404

(17 replies, posted in PunBB 1.2 troubleshooting)

So... what's the issue with the RSS that you're having?

7,405

(28 replies, posted in PunBB 1.2 discussion)

The outage (where we couldn't access the site), not the errors

7,406

(28 replies, posted in PunBB 1.2 discussion)

Well, I found the cause of the outage smile
http://forum.textdrive.com/viewtopic.php?id=2235

7,407

(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

(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

(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.

That might not work, since by default PunBB sets it to E_ALL

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 tongue

Yes, the links weren't meant to be: the banning was made to be done in the forum wink
You can do something like I did with parser.php, which is add PUN_ROOT to the beginning of all the links.

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

(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 wink

Edit: Of course, that's not ONLY an admin plugin, but it would mean you didn't have to modify any existing code

LOL

7,416

(132 replies, posted in General discussion)

Speaking of the Pirate Bay...
http://linuxreviews.org/news/2005/02/10 … den.en.pdf

7,417

(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

(21 replies, posted in PunBB 1.2 discussion)

Simply add something about it into the Forum Rules if you need it?

Azakur4 wrote:

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

(6 replies, posted in General discussion)

Wow, this seemed a lot more important at 6:41 AM when I was half asleep hmm

7,421

(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

(6 replies, posted in General discussion)

http://it.slashdot.org/it/05/02/16/0146 … mp;tid=218

o.O

7,423

(3 replies, posted in PunBB 1.2 bug reports)

Mmm, same thing when editing forums

Change

if (!$toremove)

to

if (!$_POST['toremove'])

The other code only works if you have REGISTER_GLOBALS on tongue

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')