if so then do not initialize session for larger search engines if(!$IS_A_BOT && !empty($phpwcms['SESSION_FEinit'])) { _initSession(); } // some initial actions cleanupPOSTandGET(); buildGlobalGET(); define('FE_CURRENT_URL', abs_url(array(),array('phpwcms_output_action')) ); // init some special rights and also frontend edit init_frontend_edit(); // buffer everything ob_start(); $content['page_end'] = ''; require_once PHPWCMS_ROOT.'/config/phpwcms/conf.template_default.inc.php'; require_once PHPWCMS_ROOT.'/config/phpwcms/conf.indexpage.inc.php'; require_once PHPWCMS_ROOT.'/include/inc_lib/general.inc.php'; require_once PHPWCMS_ROOT.'/include/inc_front/cnt.lang.inc.php'; require_once PHPWCMS_ROOT.'/include/inc_lib/modules.check.inc.php'; require_once PHPWCMS_ROOT.'/include/inc_lib/article.contenttype.inc.php'; require PHPWCMS_ROOT.'/include/inc_lib/imagick.convert.inc.php'; require PHPWCMS_ROOT.'/include/inc_front/front.func.inc.php'; require PHPWCMS_ROOT.'/include/inc_front/ext.func.inc.php'; require PHPWCMS_ROOT.'/include/inc_front/content.func.inc.php'; // SEO logging if(!empty($phpwcms['enable_seolog']) && !empty($_SERVER['HTTP_REFERER']) && strpos($_SERVER['HTTP_REFERER'], $_SERVER['SERVER_NAME']) === false) { $phpwcms['seo_referrer_data'] = seReferrer( $_SERVER['HTTP_REFERER'] ); if( is_array( $phpwcms['seo_referrer_data'] ) ) { @_dbInsert('phpwcms_log_seo', $phpwcms['seo_referrer_data'], 'DELAYED'); } } if(!empty($phpwcms['Bad_Behavior'])) { require PHPWCMS_ROOT.'/include/inc_module/mod_bad-behavior/bad-behavior-phpwcms.php'; } $phpwcms["templates"] = TEMPLATE_PATH; $phpwcms['DOCTYPE_LANG'] = str_replace( '{DOCTYPE_LANG}', $phpwcms['DOCTYPE_LANG'], PHPWCMS_DOCTYPE_LANG ); $content['page_start'] = str_replace( '{DOCTYPE_LANG}', $phpwcms['DOCTYPE_LANG'], PHPWCMS_DOCTYPE ); $content['page_start'] .= ''.LF; $content['page_start'] .= ''.html_specialchars($content["pagetitle"]).''.LF; $content['page_start'] .= ' '.LF; // this regex's inits rewrite if($phpwcms["rewrite_url"]) { $content["all"] = preg_replace("/( href=\"index.php?)(([a-zA-Z0-9@,\.\+&\-_=\*#\/%\?])*)(\")/e", "url_search('$2')", $content["all"]); $content["all"] = preg_replace("/(onclick=\"location.href='index.php?)(([a-zA-Z0-9@,\.\+&\-_=\*#\/%\?])*)(\')/e", "js_url_search('$2')", $content["all"]); } if(FE_EDIT_LINK) { $content['page_end'] .= ' '; } // real page ending $content['page_end'] .= LF.''.LF.''; // return rendered content echo $content['page_start']; echo $content["all"]; echo $content['page_end']; // phpwcms Default header settings if($phpwcms['cache_timeout']) { header('Expires: '.gmdate('D, d M Y H:i:s', time() + $phpwcms['cache_timeout']) .' GMT'); header('Last-Modified: '.gmdate('D, d M Y H:i:s', empty($row['article_date']) ? time() : $row['article_date']) .' GMT'); header('Cache-Control: public, max-age='.$phpwcms['cache_timeout']); header('Pragma: public'); } // write phpwcms release information in a custom HTTP header header('X-phpwcms-Release: ' . $phpwcms["release"] . ' ('.$phpwcms["release_date"].')'); // retrieve complete processing time list($usec, $sec) = explode(' ', microtime()); header('X-phpwcms-Page-Processed-In: ' . number_format(1000*($usec + $sec - $phpwcms_rendering_start), 3) .' ms'); // print PDF if($aktion[2] === 1 && defined('PRINT_PDF') && PRINT_PDF) { require_once (PHPWCMS_ROOT.'/include/inc_front/pdf.inc.php'); // handle output action and section } elseif($phpwcms['output_action']) { if(empty($phpwcms['output_function_filter']) || !is_array($phpwcms['output_function_filter'])) { $phpwcms['output_function_filter'] = array('trim', 'strip_tags'); } $phpwcms['output_function'] = array_intersect($phpwcms['output_function_filter'], $phpwcms['output_function']); $content = ob_get_contents(); ob_end_clean(); $sections = ''; foreach($phpwcms['output_section'] as $section) { $section = get_tmpl_section($section, $content); foreach($phpwcms['output_function'] as $function) { $section = $function($section); } $sections .= $section; } echo trim($sections) == '' ? $content : $sections; exit(); } // send buffer to browser ob_end_flush(); ?>