id, group_id, username, password, email, title, realname, url, jabber, icq, msn, aim, yahoo, location, use_avatar, signature, disp_topics, disp_posts, email_setting, save_pass, notify_with_post, show_smilies, show_img, show_img_sig, show_avatars, show_sig, timezone, language, style, num_posts, last_post, registered, registration_ip, last_visit, admin_note, activate_string, activate_key, last_rating, g_id, g_title, g_user_title, g_read_board, g_post_replies, g_post_topics, g_post_polls, g_edit_posts, g_delete_posts, g_delete_topics, g_set_title, g_search, g_search_users, g_edit_subjects_interval, g_post_flood, g_search_flood, logged, is_guest

977

(21 replies, posted in Programming)

According to the PHP manual, it's for detecting the current text encooding used wink

Disable registrations and use this:
http://www.punres.org/desc.php?pid=226

Your server disabled it tongue
Try using cURL.

980

(2 replies, posted in General discussion)

http://punbb.org/forums/viewtopic.php?id=10518

http://www.punres.org/viewtopic.php?id=1581

982

(4 replies, posted in Feature requests)

I think 1.3 is trying to get rid of JS. Would be a nice extension tho big_smile

983

(21 replies, posted in Programming)

$thingy = mysql_real_escape_string('whatever code, var, thingy in here');

984

(21 replies, posted in Programming)

$thingy = intval('0 union select password from users where id = 2');

$thingy would contain 0.

985

(21 replies, posted in Programming)

Indeed Smartys, but some other database systems might do it otherwise. I think you can do multiple queries when using odbc by default (not sure tho).

986

(109 replies, posted in General discussion)

hcgtv wrote:
Jérémie wrote:

Not ready yet, the dev team is still working on trac.

I've gotten the impression that Trac is unable to handle multiple concurrent users.

Is my source of information wrong?

Depends. It's mostly meant as a front-end for the SVN repo, which can only accept one person to be working on a file at once (well, actually submitting it to the server). But the TRAC system should give no troubles really.

987

(21 replies, posted in Programming)

Err... AFAIK, there are only a couple of possible SQL injects, and those should all be prevented by what you're doing.

// A numeric inject
$string = "5; DROP TABLE users";
// When you don't run intval() on this (which returns the first numeric value in the string or 0) you'll have an inject.
mysql_query("SELECT * FROM hello WHERE id = ".$string);

// A string inject
$string = "hello '; DROP TABLE users";
// When you don't run mysql_real_escape_string() or similar you'll have an inject
mysql_query("SELECT * FROM hello WHERE name = ".$string);

These should be the most important ones tongue
I hope it helps.

Just rename or delete the search page?

Have you installed any mods?

Yeah, read your post after I posted mine >=/ Silly VMWare taking so long to start tongue

They're working in IE7. And in IE6.

992

(10 replies, posted in PunBB 1.2 discussion)

Learn to read please, it's not even certain a 1.2.15 will actually come out.

Looks fine to me in FF2...

994

(10 replies, posted in PunBB 1.2 discussion)

anio wrote:

1/ When will be published new version 1.3?

When it's done.

2/ Will be follow version of 1.2? 1.2.15, 1.2.16... etc?

Not when 1.3 has been released.

995

(4 replies, posted in Feature requests)

There is such a mod already. And I don't believe it's a good idea; you can report a post for several other reasons (make a sure a Moderator sees it and can comment on it for example).

How is it impossible? Set it for guests only to view, and as an administrator you can go post a thread in there telling them to register.

Sure, make a forum that only guests can see wink

Errr... not really, I have no direct idea on how to put that into a nice regex... tongue

It'd be alot easier to make a regex that strips out any of that silly junk that phpBB adds. But that would need testing and won't be for today wink

Oh, and the converter sucks, it would probably be solved if every conversion was written like my search and replace tongue

Right, I see my above regex was a tad off. Anyway, I *think* this _config.php should do:
http://elbekko.pastebin.ca/305496

1,000

(7 replies, posted in General discussion)

I'm wondering on how hard it will be to make a decently functoning extension tongue