Usage Statistics for astracoupe.com.pl

Summary Period: Last 12 Months
Generated 03-Feb-2009 17:10 CET

Usage summary for astracoupe.com.pl

Summary by Month
Month Daily Avg Monthly Totals
Hits Files Pages Visits Sites KBytes Visits Pages Files Hits
Feb 2009 2 0 2 2 2 3 6 6 0 6
Jan 2009 1 0 1 1 7 25 42 45 0 46
Dec 2008 1 0 1 1 7 20 30 31 0 38
Nov 2008 16 12 3 1 17 3404 21 74 253 333
Totals 3452 99 156 253 423


Generated by Webalizer Version 2.01
--------------- // Grab and cache the topic now as we need the 'f' attr for // the skins... //--------------------------------------------------- $DB->simple_construct( array( 'select' => '*', 'from' => 'topics', 'where' => "tid=".$ibforums->input['t'], ) ); $DB->simple_exec(); $ibforums->topic_cache = $DB->fetch_row(); $ibforums->input['f'] = $ibforums->topic_cache['forum_id']; } else if ( $ibforums->input['showuser'] != "") { $ibforums->input['act'] = "profile"; $ibforums->input['MID'] = intval($ibforums->input['showuser']); } else if ( $ibforums->input['automodule'] != "" ) { $ibforums->input['act'] = 'module'; $ibforums->input['module'] = $ibforums->input['automodule']; } else { $ibforums->input['act'] = $ibforums->input['act'] == '' ? "idx" : $ibforums->input['act']; } //=========================================================================== // Get cache... //=========================================================================== $DB->simple_construct( array( 'select' => '*', 'from' => 'cache_store', 'where' => "cs_key IN ( ".$choice[ strtolower($ibforums->input['act']) ][2]."'sbox_colors','banfilters', 'settings', 'group_cache', 'systemvars', 'skin_id_cache', 'forum_cache', 'moderators', 'stats', 'languages' )" ) ); $DB->simple_exec(); while ( $r = $DB->fetch_row() ) { if ( $r['cs_key'] == 'settings' ) { $tmp = unserialize( $std->txt_safeslashes($r['cs_value']) ); if ( is_array( $tmp ) and count( $tmp ) ) { foreach( $tmp as $k => $v ) { $ibforums->vars[ $k ] = stripslashes($v); } } unset( $tmp ); } else { if ( $r['cs_array'] ) { $ibforums->cache[ $r['cs_key'] ] = unserialize(stripslashes($r['cs_value'])); } else { $ibforums->cache[ $r['cs_key'] ] = $r['cs_value']; } } } if ( ! isset( $ibforums->cache['systemvars'] ) ) { $DB->simple_exec_query( array( 'delete' => 'cache_store', 'where' => "cs_key='systemvars'" ) ); $DB->do_insert( 'cache_store', array( 'cs_key' => 'systemvars', 'cs_value' => addslashes(serialize(array())), 'cs_array' => 1 ) ); } //-------------------------------- // Set up cache path //-------------------------------- if ( $ibforums->vars['ipb_cache_path'] ) { define( 'CACHE_PATH', $ibforums->vars['ipb_cache_path'] ); } else { define( 'CACHE_PATH', ROOT_PATH ); } //-------------------------------- // Set debug mode //-------------------------------- $DB->set_debug_mode( $ibforums->vars['sql_debug'] == 1 ? intval($_GET['debug']) : 0 ); //-------------------------------- // Initialize the FUNC //-------------------------------- $std->FUNC_init(); //-------------------------------- // The rest :D //-------------------------------- $ibforums->member = $sess->authorise(); $ibforums->lastclick = $sess->last_click; $ibforums->location = $sess->location; $ibforums->session_id = $sess->session_id; // Used in URLs $ibforums->my_session = $sess->session_id; // Used in code //-------------------------------- // Initialize the forums //-------------------------------- $forums->strip_invisible = 1; $forums->forums_init(); //-------------------------------- // Load the skin //-------------------------------- $std->load_skin(); list($ppu,$tpu) = explode( "&", $ibforums->member['view_prefs'] ); $ibforums->vars['display_max_topics'] = ($tpu > 0) ? $tpu : $ibforums->vars['display_max_topics']; $ibforums->vars['display_max_posts'] = ($ppu > 0) ? $ppu : $ibforums->vars['display_max_posts']; //=========================================================================== // Set up the session ID stuff //=========================================================================== if ( $ibforums->session_type == 'cookie' ) { $ibforums->session_id = ""; $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?'; } else { $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id.'&'; } $ibforums->js_base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id.'&'; //-------------------------------- // Set up the forum_read cookie //-------------------------------- $std->hdl_forum_read_cookie(); //=========================================================================== // Set up defaults //=========================================================================== $ibforums->skin_id = $ibforums->skin['_setid']; $ibforums->vars['img_url'] = 'style_images/' . $ibforums->skin['_imagedir']; $ibforums->vars['AVATARS_URL'] = 'style_avatars'; $ibforums->vars['EMOTICONS_URL'] = 'style_emoticons/<#EMO_DIR#>'; $ibforums->vars['mime_img'] = 'style_images/<#IMG_DIR#>'; //-------------------------------- // Set up our language choice //-------------------------------- if ($ibforums->vars['default_language'] == "") { $ibforums->vars['default_language'] = 'en'; } //-------------------------------- // Did we choose a language? //-------------------------------- If ( $ibforums->input['setlanguage'] and $ibforums->input['langid'] and $ibforums->member['id'] ) { if ( is_array( $ibforums->cache['languages'] ) and count( $ibforums->cache['languages'] ) ) { foreach( $ibforums->cache['languages'] as $idx => $data ) { if ( $data['ldir'] == $ibforums->input['langid'] ) { $DB->do_update( 'members', array( 'language' => $data['ldir'] ), 'id='.$ibforums->member['id'] ); $ibforums->member['language'] = $data['ldir']; } } } } $ibforums->lang_id = $ibforums->member['language'] ? $ibforums->member['language'] : $ibforums->vars['default_language']; if ( ($ibforums->lang_id != $ibforums->vars['default_language']) and (! is_dir( ROOT_PATH."lang/".$ibforums->lang_id ) ) ) { $ibforums->lang_id = $ibforums->vars['default_language']; } $ibforums->lang = $std->load_words($ibforums->lang, 'lang_global', $ibforums->lang_id); //-------------------------------- // Expire subscription? //-------------------------------- if ( $ibforums->member['sub_end'] != 0 AND ( $ibforums->member['sub_end'] < time() ) ) { $std->expire_subscription(); } //-------------------------------- // Upload dir? //-------------------------------- $ibforums->vars['upload_dir'] = $ibforums->vars['upload_dir'] ? $ibforums->vars['upload_dir'] : ROOT_PATH.'uploads'; //=========================================================================== // DECONSTRUCTOR //=========================================================================== if ( USE_SHUTDOWN and $ibforums->input['act'] != 'task' ) { chdir( ROOT_PATH ); $ROOT_PATH = getcwd(); register_shutdown_function( array( &$std, 'my_deconstructor') ); } //=========================================================================== // Force log in / board offline? //=========================================================================== if ($ibforums->input['_low_act'] != 'login' and $ibforums->input['_low_act'] != 'reg' and $ibforums->input['_low_act'] != 'attach' and $ibforums->input['_low_act'] != 'task' and ( $ibforums->input['_low_act'] != 'module' && $ibforums->input['module'] != 'subscription' ) ) { //-------------------------------- // Do we have permission to view // the board? //-------------------------------- if ($ibforums->member['g_view_board'] != 1) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'no_view_board') ); } //-------------------------------- // Is the board offline? //-------------------------------- if ($ibforums->vars['board_offline'] == 1) { if ($ibforums->member['g_access_offline'] != 1) { $ibforums->vars['no_reg'] == 1; $std->board_offline(); } } //-------------------------------- // Is log in enforced? //-------------------------------- if ( (! $ibforums->member['id']) and ($ibforums->vars['force_login'] == 1) ) { require ROOT_PATH."sources/login.php"; $runme = new login(); $runme->auto_run(); } //-------------------------------- // Show PURCHASE screen? // Not enforced //-------------------------------- if ( ! $ibforums->member['sub_end'] ) { //-------------------------------- // 1: No enforce, chosen from reg //-------------------------------- if ( ! $ibforums->vars['subsm_enforce'] and $ibforums->member['subs_pkg_chosen'] ) { $ibforums->input['act'] = 'module'; $ibforums->input['module'] = 'subscription'; $ibforums->input['CODE'] = 'paymentmethod'; $ibforums->input['sub'] = $ibforums->member['subs_pkg_chosen']; $ibforums->input['nocp'] = 1; $ibforums->input['msgtype'] = 'fromreg'; } //-------------------------------- // Show PURCHASE screen? // Enforced //-------------------------------- if ( $ibforums->vars['subsm_enforce'] and $ibforums->member['mgroup'] == $ibforums->vars['subsm_nopkg_group'] ) { $ibforums->input['act'] = 'module'; $ibforums->input['module'] = 'subscription'; $ibforums->input['nocp'] = 1; $ibforums->input['msgtype'] = 'force'; if ( $ibforums->member['subs_pkg_chosen'] ) { $ibforums->input['CODE'] = 'paymentmethod'; $ibforums->input['sub'] = $ibforums->member['subs_pkg_chosen']; } } } } //-------------------------------- // D2-Shoutbox Functions //-------------------------------- require ROOT_PATH."sources/D2mods/Shoutbox/classes/class.sb.php"; $ibforums->sbox = new sbfuncs; //=========================================================================== // REQUIRE AND RUN //=========================================================================== if ( $ibforums->input['act'] == 'home' ) { if ( $ibforums->vars['csite_on'] ) { require ROOT_PATH."sources/ipbportal.php"; $csite = new ipdl(); $csite->auto_run(); } else { require ROOT_PATH."sources/boards.php"; $runme = new boards(); $runme->auto_run(); } } else if ( $ibforums->input['act'] == 'module' ) { if ( USE_MODULES == 1 ) { require ROOT_PATH."modules/module_loader.php"; $loader = new module_loader(); } else { require ROOT_PATH."sources/boards.php"; } } else { // Require and run require_once( ROOT_PATH."sources/".$choice[ strtolower($ibforums->input['act']) ][0].".php" ); $runme = new $choice[ strtolower($ibforums->input['act']) ][1]; $runme->auto_run(); } /*-------------------------------------------------------------------------*/ // GLOBAL ROUTINES /*-------------------------------------------------------------------------*/ function fatal_error($message="", $help="") { echo("$message

$help"); exit; } /*-------------------------------------------------------------------------*/ // Custom error handler /*-------------------------------------------------------------------------*/ function my_error_handler( $errno, $errstr, $errfile, $errline ) { // Did we turn off errors with @? if ( ! error_reporting() ) { return; } $errfile = str_replace( @getcwd(), "", $errfile ); switch ($errno) { case E_ERROR: echo "IPB ERROR [$errno] $errstr (Line: $errline of $errfile)
\n"; exit(1); break; case E_WARNING: if ( strstr( $errstr, 'load_template(./skin_cache/cacheid_' ) ) { echo "
IPB TEMPLATE ERROR: Could not load the required template.

First, try and remove any custom skin settings by clicking here

Then, please visit your Admin Control Panel to repair this template.

Error: $errstr
"; } else { echo "IPB WARNING [$errno] $errstr (Line: $errline of $errfile)
\n"; } break; default: //Do nothing break; } } ?>