ecco la prima parte del codice:
codice:
<?php /** **@name index.php * @package phpBB3 * @version $Id$ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** */ /** * @ignore */ define('IN_PHPBB', true); // Users and Bots on Seperate Lines 1.0.0 define('IN_FORUM_INDEX', true); // Users and Bots on Seperate Lines 1.0.0 $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); include($phpbb_root_path . 'includes/functions_calendar.' . $phpEx); // phpBB Arcade Start $scoretype = (strtolower(request_var('act', '')) == 'arcade' && strtolower(request_var('do', '')) == 'newscore') ? 'IBPRO_GAME' : ((strtolower(request_var('autocom', '')) == 'arcade') ? 'IBPROV3_GAME' : false); if ($scoretype) { require($phpbb_root_path . 'includes/arcade/arcade_scoretype.' . $phpEx); } // phpBB Arcade End // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup('viewforum'); // www.phpBB-SEO.com SEO TOOLKIT BEGIN -> Zero dupe if (!empty($phpbb_seo->seo_opt['url_rewrite'])) { $phpbb_seo->seo_path['canonical'] = $phpbb_seo->drop_sid(append_sid("{$phpbb_root_path}index.$phpEx")); }