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
976 2007-01-12 20:38
Re: Can anyone tell me what values $pun_user has? (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
977 2007-01-12 15:03
Re: How do you clean your variables? (21 replies, posted in Programming)
According to the PHP manual, it's for detecting the current text encooding used
978 2007-01-11 19:35
Re: Allow only admins to add accounts (3 replies, posted in PunBB 1.2 discussion)
Disable registrations and use this:
http://www.punres.org/desc.php?pid=226
979 2007-01-11 16:14
Re: Error with an include script (8 replies, posted in PunBB 1.2 troubleshooting)
Your server disabled it
Try using cURL.
980 2007-01-10 22:06
Re: Posts marked as Read (2 replies, posted in General discussion)
981 2007-01-10 17:42
Re: Custom field (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
982 2007-01-10 15:29
Re: "Select all"... (4 replies, posted in Feature requests)
I think 1.3 is trying to get rid of JS. Would be a nice extension tho
983 2007-01-09 17:20
Re: How do you clean your variables? (21 replies, posted in Programming)
$thingy = mysql_real_escape_string('whatever code, var, thingy in here');
984 2007-01-09 16:24
Re: How do you clean your variables? (21 replies, posted in Programming)
$thingy = intval('0 union select password from users where id = 2');
$thingy would contain 0.
985 2007-01-09 16:05
Re: How do you clean your variables? (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 2007-01-09 16:03
Re: 1.3 coming... (109 replies, posted in General discussion)
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 2007-01-09 11:39
Re: How do you clean your variables? (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
I hope it helps.
988 2007-01-08 19:55
Re: "Disable search all forums" not working (or just hiding the link?) (3 replies, posted in PunBB 1.2 bug reports)
Just rename or delete the search page?
989 2007-01-08 19:53
Re: [HTML output] "<b>" rendering problem (8 replies, posted in PunBB 1.2 troubleshooting)
Have you installed any mods?
990 2007-01-08 18:22
Re: Basic syntax colouring with line numbers (10 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Yeah, read your post after I posted mine >=/ Silly VMWare taking so long to start
991 2007-01-08 17:31
Re: Basic syntax colouring with line numbers (10 replies, posted in PunBB 1.2 modifications, plugins and integrations)
They're working in IE7. And in IE6.
992 2007-01-07 13:06
Re: Question for developers (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.
993 2007-01-06 21:57
Re: Trouble with (my) search action links (12 replies, posted in PunBB 1.2 troubleshooting)
Looks fine to me in FF2...
994 2007-01-06 15:02
Re: Question for developers (10 replies, posted in PunBB 1.2 discussion)
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 2007-01-06 14:29
Re: Post Reporting Idea (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).
996 2007-01-05 23:00
Re: I need some help about viewing forums (7 replies, posted in PunBB 1.2 troubleshooting)
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.
997 2007-01-05 20:04
Re: I need some help about viewing forums (7 replies, posted in PunBB 1.2 troubleshooting)
Sure, make a forum that only guests can see
998 2007-01-04 23:49
Re: Quotes without name after use 'PunBB Migration Tool' (32 replies, posted in PunBB 1.2 troubleshooting)
Errr... not really, I have no direct idea on how to put that into a nice regex...
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
Oh, and the converter sucks, it would probably be solved if every conversion was written like my search and replace
999 2007-01-04 21:07
Re: Quotes without name after use 'PunBB Migration Tool' (32 replies, posted in PunBB 1.2 troubleshooting)
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 2007-01-04 20:57
Re: Back to web development (7 replies, posted in General discussion)
I'm wondering on how hard it will be to make a decently functoning extension