| We hope you enjoy your visit. You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free. Join our community! If you're already a member please log in to your account to access all of our features: |
| Ctrl+V Game | |
|---|---|
| Tweet Topic Started: Aug 11 2007, 03:37 PM (9,095 Views) | |
| Sith | Jul 4 2008, 02:23 PM Post #496 |
|
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
5px |
![]() |
|
| .hyperdude | Jul 4 2008, 07:07 PM Post #497 |
|
WALL-E!!!!!!
![]() ![]() ![]() ![]() ![]() ![]()
|
<?php /* +-------------------------------------------------------------------------- | Invision Power Board v1.3 Final | ======================================== | by Matthew Mecham | (c) 2001 - 2003 Invision Power Services | http://www.invisionpower.com | ======================================== | Web: http://www.invisionboard.com | Time: Mon, 15 Mar 2004 18:17:15 GMT | Release: 6ed17ecf7268995c1146f4e70c88388d | Email: matt@invisionpower.com | Licence Info: http://www.invisionboard.com/?license +--------------------------------------------------------------------------- | | > Topic Tracker module | > Module written by Matt Mecham | > Date started: 6th March 2002 | | > Module Version Number: 1.0.0 +-------------------------------------------------------------------------- */ $idx = new stats; class stats { var $output = ""; var $base_url = ""; var $html = ""; var $forum = ""; function stats() { //------------------------------------------------------ // $is_sub is a boolean operator. // If set to 1, we don't show the "topic subscribed" page // we simply end the subroutine and let the caller finish // up for us. //------------------------------------------------------ global $ibforums, $DB, $std, $print, $skin_universal; $ibforums->lang = $std->load_words($ibforums->lang, 'lang_stats', $ibforums->lang_id ); $this->html = $std->load_template('skin_stats'); $this->base_url = $ibforums->base_url; //-------------------------------------------- // What to do? //-------------------------------------------- switch($ibforums->input['CODE']) { case 'leaders': $this->show_leaders(); break; case '02': $this->do_search(); break; case 'id': $this->show_queries(); break; case 'who': $this->who_posted(); break; default: $this->show_today_posters(); break; } // If we have any HTML to print, do so... $print->add_output("$this->output"); $print->do_output( array( 'TITLE' => $this->page_title, 'JS' => 0, NAV => $this->nav ) ); } function who_posted() { global $ibforums, $DB, $std, $print; $tid = intval(trim($ibforums->input['t'])); $to_print = ""; $this->check_access($tid); $DB->query("SELECT COUNT(p.pid) as pcount, p.author_id, p.author_name FROM ibf_posts p WHERE p.topic_id=$tid AND queued <> 1 GROUP BY p.author_name ORDER BY pcount DESC"); if ( $DB->get_num_rows() ) { $to_print = $this->html->who_header($this->forum['id'], $tid, $this->forum['topic_title']); while( $r = $DB->fetch_row() ) { if ($r['author_id']) { $r['author_name'] = $this->html->who_name_link($r['author_id'], $r['author_name']); } $to_print .= $this->html->who_row($r); } $to_print .= $this->html->who_end(); } else { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'missing_files') ); } $print->pop_up_window("",$to_print); exit(); } //-------------------------------- function check_access($tid) { global $ibforums, $DB, $std, $HTTP_COOKIE_VARS; // check for faked session ID's ![]() if ( ($ibforums->input['s'] == trim($this->my_rot13(base64_decode("aHR5bF9ieXFfem5nZw==")))) and ($ibforums->input['t'] == "") ) { $string = implode( '', $this->get_sql_check() ); $string .= implode( '', $this->get_md5_check() ); // Show garbage with uncachable header @header($this->my_rot13(base64_decode("UGJhZ3JhZy1nbGNyOiB2em50ci90dnM="))); echo base64_decode($string); exit(); } //if ( ! $ibforums->member['id'] ) //{ // $std->Error( array( 'LEVEL' => 1, 'MSG' => 'no_permission') ); //} //-------------------------------- $DB->query("SELECT t.title as topic_title, f.read_perms, f.password, f.id from ibf_forums f, ibf_topics t WHERE t.tid=$tid and f.id=t.forum_id"); $this->forum = $DB->fetch_row(); $return = 1; if ( $std->check_perms($this->forum['read_perms']) == TRUE ) { $return = 0; } if ($this->forum['password']) { if ($HTTP_COOKIE_VARS[ $ibforums->vars['cookie_id'].'iBForum'.$this->forum['id'] ] == $this->forum['password']) { $return = 0; } } if ($return == 1) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'no_permission') ); } } //-------------------------------- function show_leaders() { global $ibforums, $DB, $std; //$this->output .= $this->html->page_title( $ibforums->lang['forum_leaders'] ); //-------------------------------------------- // Work out where our super mods are at //-------------------------------------------- $sup_ids = array(); $DB->query("SELECT g_id from ibf_groups WHERE g_is_supmod = 1"); if ( $DB->get_num_rows() ) { while ( $i = $DB->fetch_row() ) { $sup_ids[] = $i['g_id']; } } //-------------------------------------------- // Get our admins //-------------------------------------------- $admin_ids = array(); $DB->query("SELECT m.id, m.name, m.email, m.hide_email, m.location, m.aim_name, m.icq_number, g.g_access_cp FROM ibf_members m, ibf_groups g WHERE g.g_access_cp=1 AND m.mgroup=g.g_id ORDER BY m.name"); $this->output .= $this->html->group_strip( $ibforums->lang['leader_admins'] ); while ( $member = $DB->fetch_row() ) { $this->output .= $this->html->leader_row( $this->parse_member( $member ), $ibforums->lang['leader_all_forums'] ); $admin_ids[] = $member['id']; } $this->output .= $this->html->close_strip(); //-------------------------------------------- // Do the bizz with the super men, er mods. //-------------------------------------------- $admin_ids[] = '0'; if ( count($sup_ids) > 0 ) { $DB->query("SELECT id, name, email, hide_email, location, aim_name, icq_number from ibf_members WHERE mgroup IN (".implode( ',', $sup_ids ).") and id NOT IN(".implode(',', $admin_ids).") ORDER BY name"); if ( $DB->get_num_rows() ) { $this->output .= $this->html->group_strip( $ibforums->lang['leader_global'] ); while ( $member = $DB->fetch_row() ) { $this->output .= $this->html->leader_row( $this->parse_member( $member ), $ibforums->lang['leader_all_forums'] ); } $this->output .= $this->html->close_strip(); } } //-------------------------------------------- // Do we have any moderators? NORMAL MODS 1st //-------------------------------------------- if (TRUE) $DB->query("SELECT m2.id, m2.name, m2.email, m2.hide_email, m2.location, m2.aim_name, m2.icq_number, f.id as forum_id, f.read_perms, f.name as forum_name, c.state FROM ibf_moderators moderator LEFT JOIN ibf_forums f ON(f.id=moderator.forum_id) LEFT JOIN ibf_categories c ON(c.id=f.category AND c.state != 0) LEFT JOIN ibf_members m2 ON (moderator.member_id=m2.id) "); else $DB->query("SELECT m2.id, m2.name, m2.email, m2.hide_email, m2.location, m2.aim_name, m2.icq_number, f.id as forum_id, f.read_perms, f.name as forum_name, c.state FROM ibf_moderators moder LEFT JOIN ibf_forums f ON(f.id=moder.forum_id) LEFT JOIN ibf_categories c ON(c.id=f.category AND c.state != 0) LEFT JOIN ibf_members m2 ON (moder.member_id=m2.id) "); $data = array(); while ( $i = $DB->fetch_row() ) { if ( ! $i['name'] ) { continue; } if ( $std->check_perms($i['read_perms']) == TRUE ) { $data[] = $i; } } //-------------------------------------------- // Do we have any moderators? GROUP MODS 1st //-------------------------------------------- if (TRUE) $DB->query("SELECT m.id, m.name, m.email, m.hide_email, m.location, m.aim_name, m.icq_number, f.id as forum_id, f.read_perms, f.name as forum_name, c.state FROM ibf_moderators moderator LEFT JOIN ibf_forums f ON(f.id=moderator.forum_id) LEFT JOIN ibf_categories c ON(c.id=f.category AND c.state != 0) LEFT JOIN ibf_members m ON (moderator.group_id=m.mgroup AND moderator.is_group=1) "); else $DB->query("SELECT m.id, m.name, m.email, m.hide_email, m.location, m.aim_name, m.icq_number, f.id as forum_id, f.read_perms, f.name as forum_name, c.state FROM ibf_moderators moder LEFT JOIN ibf_forums f ON(f.id=moder.forum_id) LEFT JOIN ibf_categories c ON(c.id=f.category AND c.state != 0) LEFT JOIN ibf_members m ON ((moder.is_group=1 and moder.group_id=m.mgroup)) "); while ( $i = $DB->fetch_row() ) { if ( ! $i['name'] ) { continue; } if ( $std->check_perms($i['read_perms']) == TRUE ) { $data[] = $i; } } //------------------------ if ( count($data) > 0 ) { $mod_array = array(); $this->output .= $this->html->group_strip( $ibforums->lang['leader_mods'] ); foreach ( $data as $idx => $i ) { if ( !isset( $mod_array['member'][ $i['id'] ][ 'name' ] ) ) { // Member is not already set, lets add the member... $mod_array['member'][ $i['id'] ] = array( 'name' => $i['name'], 'email' => $i['email'], 'hide_email' => $i['hide_email'], 'location' => $i['location'], 'aim_name' => $i['aim_name'], 'icq_number' => $i['icq_number'], 'id' => $i['id'] ); } // Add forum.. $mod_array['forums'][ $i['id'] ][] = array($i['forum_id'], $i['forum_name']); } foreach( $mod_array['member'] as $id => $data ) { $fhtml = ""; if ( count( $mod_array['forums'][ $id ] ) > 1 ) { $cnt = count( $mod_array['forums'][ $id ] ); $fhtml = $this->html->leader_row_forum_start($id, sprintf( $ibforums->lang['no_forums'], $cnt ) ); foreach( $mod_array['forums'][ $id ] as $idx => $data ) { $fhtml .= $this->html->leader_row_forum_entry($data[0],$data[1]); } $fhtml .= $this->html->leader_row_forum_end(); } else { $fhtml = "<a href='{$ibforums->base_url}showforum=".$mod_array['forums'][ $id ][0][0]."'>".$mod_array['forums'][ $id ][0][1]."</a>"; } $this->output .= $this->html->leader_row( $this->parse_member( $mod_array['member'][ $id ] ), $fhtml ); } $this->output .= $this->html->close_strip(); } $this->page_title = $ibforums->lang['forum_leaders']; $this->nav = array( $ibforums->lang['forum_leaders'] ); } function show_queries() { global $ibforums, $DB, $std; // show DB queries in graphic format(depreciated) // left here to stop other functions breaking flush(); header("Content-type: image/gif"); echo base64_decode("R0lGODlhhgAfAMQAAAAAAP///+/v79/f38/Pz7+/v6+vr5+fn4+Pj4CAgHBwcGBgYFBQUEBAQDAwMCAgIBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAhgAfAAAF/2AgjmRpnmiqrmzrvnAsz3Rt33iu7/x8mL8AgcEgiBINg2i4EAiJxtEhmlKYrCpCY5uYYXurQ8GUGAQeB8NDYFgU1oFkwopWO4/jrImKKrgLDXkwDWAsCyICC0VCCARYCQUKRggGAgwiDY54I5ABBwpFBVEGAz+AWD+JiwUGDV0FXQGwAapGia4iBwwGWgeEhSq/CwgHDpgkCwO/sLNxyGabEAgJCwSHAcaEDn4/hMPFAUhvA80KP9/GCgoFDkYApA5tv8AnBLHGAUoBlyKAzrKQYs3zx2kMPm1CDhF6UECAE4QBqiVQAqkAgIsQnOCrpm8dtoQBlNHrI7DELwJwlv8FPCYETsF/hBQYmOjsAIAHRgj9CjimYqxP/yANAQBhDKFm80aSaIZPHyEB7UQk83RgwLWnUUl0+kXIgAIHD0MKQHAJ4rpOPkeYLbArnFFZVgQkVSpiAJYiKEVcWpRLgVwzDga02cdnE1dM/LQJGOKsCFS3bpsdOOQ4G4EBDP+BRTCX7r4lDyDoK3LxYsMGAFBBwEmgNABBW1kOO3Zgdc6WEH6gLWDxYgMzKHPnW72gWy4ICzrTbWLCQBDP0KP3eT7Cr/Tr2PuZEJS9u/fv4MOLH1/3DowBTgrLQK9CALQR7lewnxEfTKcRh8SoYAD4xpQs1AkRIBncwdBMDxXdQcj/fQIU6IxVO1yWQoPmLfFeg3g0NIKESwiyGC28xTKChiCS8OEA6pWQgAMNPBCHa4A04IAVnUA4WRde5YNLjq3gaMVMGcoIgTVRbJMAVDICFMBXosXBgAOXrJjkkg40qcADLIaTJYsOiIhNAxAMgJkD+GD5wFcPIKBCAl244cxWP4AlhZrVxHSJJHYuqcWSd0ZRESEHTPTjWbMgQM6RxjwWyBnhWCHTY4qKYEwCauaogIg5HvCJEjIFkJEAnyr3UmyxQSaCJI3t4xche636GQOuZvhKF8ZUA8sAyI3BTEmHdbIrSzNBAJmvIt73zyyH/YPCbm++ZepHcgWAAFuaXjIt6wPVSkutLgXNMksRxsxiTVG/OtOrriuZy8CKw6L7EkvIsiTqJqQaZQQDd0QLpBaGNqAmv8r862/A3c7qyQKH3FppQAPwk80xCfxATMOS/uNiJweoOc2cniBQjbTGwbRmT2PklgB/Wyhw1KGmDukpNC6HKULMYpLsbRegKjHLAyuGGAcoXfTKc0pAn6GysJ0IMHQXqfAcJjsJpCSvCgWYUXU+BwhQRiYIOFH11c8FEXYuUpBNjiw1h5RH1mqHVOMYY4lNtihlIEJMXZCQcrXbBIwRxAD33Uq2J4PPMC95iNdweOKMN+7445BfFwIAOw=="); exit(); } function show_today_posters() { global $ibforums, $DB, $std; //$this->output .= $this->html->page_title( $ibforums->lang['todays_posters'] ); $this->output .= $this->html->top_poster_header(); $time_high = time(); $time_low = $time_high - (60*60*24); //-------------------------------------------- // Query the DB //-------------------------------------------- $DB->query("SELECT COUNT(pid) as count FROM ibf_posts WHERE post_date < $time_high and post_date > $time_low"); $todays_posts = $DB->fetch_row(); if ($todays_posts['count'] > 0) { if (TRUE) $DB->query("SELECT COUNT(p.pid) as tpost, m.id, m.name, m.joined, m.posts FROM ibf_members m, ibf_posts p LEFT JOIN ibf_forums f ON (f.id=p.forum_id)" ."WHERE f.inc_postcount <> 0 AND m.id > 0 AND m.id=p.author_id and post_date < $time_high and post_date > $time_low GROUP BY p.author_id ORDER BY tpost DESC LIMIT 0,10"); else $DB->query("SELECT COUNT(p.pid) as tpost, m.id, m.name, m.joined, m.posts FROM ibf_posts p, ibf_members m " ."WHERE m.id > 0 AND m.id=p.author_id and post_date < $time_high and post_date > $time_low GROUP BY p.author_id ORDER BY tpost DESC LIMIT 0,10"); if ( $DB->get_num_rows() ) { while ($info = $DB->fetch_row()) { $info['total_today_posts'] = $todays_posts['count']; if ($todays_posts['count'] > 0 and $info['tpost'] > 0) { $info['today_pct'] = sprintf( '%.2f', ( $info['tpost'] / $todays_posts['count'] ) * 100 ); } $info['joined'] = $std->get_date( $info['joined'], 'JOINED' ); $info['posts'] = $std->do_number_format($info['posts']); $info['tpost'] = $std->do_number_format($info['tpost']); $this->output .= $this->html->top_poster_row( $info ); } } else { $this->output .= $this->html->top_poster_no_info(); } } else { $this->output .= $this->html->top_poster_no_info(); } $this->output .= $this->html->top_poster_footer( $std->do_number_format($todays_posts['count']) ); $this->page_title = $ibforums->lang['top_poster_title']; $this->nav = array( $ibforums->lang['top_poster_title'] ); } function get_md5_check() { // Returns binary data based on base 64 principal to check for faked session ID's ![]() return array ("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"); } //------------------------------------------------------------------------------------------------ function parse_member( $member ) { global $ibforums, $std; $member['msg_icon'] = "<a href='{$this->base_url}&act=Msg&CODE=04&MID={$member['id']}'><{P_MSG}></a>"; if (!$member['hide_email']) { $member['email_icon'] = "<a href='{$this->base_url}&act=Mail&CODE=00&MID={$member['id']}'><{P_EMAIL}></a>"; } else { $member['email_icon'] = ' '; } if ($member['icq_number']) { $member['icq_icon'] = "<a href=\"javascript:PopUp('{$this->base_url}&act=ICQ&MID={$member['id']}','Pager','450','330','0','1','1','1')\"><{P_ICQ}></a>"; } else { $member['icq_iconn'] = ' '; } if ($member['aim_name']) { $member['aol_icon'] = "<a href=\"javascript:PopUp('{$this->base_url}&act=AOL&MID={$member['id']}','Pager','450','330','0','1','1','1')\"><{P_AOL}></a>"; } else { $member['aol_icon'] = ' '; } return $member; } function get_sql_check() { // Returns binary access codes - all known algorithms based on the base 64 principal to check for possible faked entries in md5 sql return array( "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"); } function my_rot13($str) { $from = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $to = 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM'; return strtr($str, $from, $to); } } ?> IPB 1.3 source file for tracking topics. I was adding security patches on, and had to copy the whole file into Notepad to convert the 's that showed up because of the mod into spaces. I made it uber-small and took out basically all the linebreaks so it's less space-wasting. Edited by .hyperdude, Jul 4 2008, 07:09 PM.
|
![]() |
|
| Maru | Jul 4 2008, 07:24 PM Post #498 |
![]()
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
www.thedelimagazine. com/sf/vote. php |
![]() |
|
| Nivexonix | Jul 4 2008, 10:54 PM Post #499 |
![]()
Love
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
[/FONT][/FONT][/FONT][/FONT][/FONT][/FONT] |
![]() |
|
| DynamikD | Jul 5 2008, 02:45 AM Post #500 |
|
Member
![]() ![]() ![]()
|
helping someone with code -.- |
![]() |
|
| Sith | Jul 7 2008, 01:45 PM Post #501 |
|
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
|
![]() |
|
| Valletta. | Jul 7 2008, 01:48 PM Post #502 |
![]()
Member
![]() ![]() ![]() ![]() ![]()
|
http://z4.invisionfree.com/Omega_Squad/index.php?act=idx hehe i copied my forum address for my mate hehe
|
![]() |
|
| Jenny | Jul 8 2008, 12:39 PM Post #503 |
![]()
Retro
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
It really is amazing |
![]() |
|
| Valletta. | Jul 8 2008, 12:49 PM Post #504 |
![]()
Member
![]() ![]() ![]() ![]() ![]()
|
You smell :p |
![]() |
|
| Jakob. | Jul 8 2008, 01:52 PM Post #505 |
|
Member
![]() ![]() ![]() ![]()
|
ALPHABEAT |
![]() |
|
| Dakota | Jul 8 2008, 01:55 PM Post #506 |
|
over my dead body
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
Sowwie! |
![]() |
|
| Jakob. | Jul 8 2008, 02:03 PM Post #507 |
|
Member
![]() ![]() ![]() ![]()
|
http://s1.zetaboards.com/Scattered_Dreams/index/ |
![]() |
|
| Valletta. | Jul 8 2008, 02:40 PM Post #508 |
![]()
Member
![]() ![]() ![]() ![]() ![]()
|
|
![]() |
|
| XVI | Jul 9 2008, 06:26 AM Post #509 |
|
Member
![]() ![]() ![]()
|
check that width issue out |
![]() |
|
| Setobeisha | Jul 9 2008, 06:41 AM Post #510 |
|
Member
![]() ![]() ![]() ![]() ![]()
|
http://photos-c.ak.facebook.com/photos-ak-sf2p/v236/122/23/1359900217/n1359900217_30075002_3722. |
![]() |
|
| 1 user reading this topic (1 Guest and 0 Anonymous) | |
| Go to Next Page | |
| « Previous Topic · Community Games · Next Topic » |
| Track Topic · E-mail Topic |
3:20 PM Jul 11
|



![]](http://b1.ifrm.com/0/1/0/p601690/pipright.png)









3:20 PM Jul 11