[u][b][color=#FF0000]unserialize() [<a href='function.unserialize'>function.unserialize</a>]: Error at offset 1089 of 1195 bytes[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]db_cache.php[/b] in line [b]71[/b]
[ Function: [b]unserialize()[/b] ]
[code]0066 {
0067 $this->_cache_content = array();
0068 if(is_array($content))
0069 $this->_cache_content = $content;
0070 else if($content)
0071 $this->_cache_content = unserialize($content);
0072
0073 $this->_length = count($this->_cache_content);
0074 $this->_cache_content_keys = array_keys($this->_cache_content);
0075 }
0076
0077 /**
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]db_cache.php[/b] in line [b]29[/b]
[ Method: [b]bs_db_cache::set_content()[/b] ]
[code]0024 function BS_db_cache($table_name,$cache_key,$cache_content = '',$array_key = '')
0025 {
0026 $this->_table_name = $table_name;
0027 $this->_cache_key = $cache_key;
0028 $this->_array_key = $array_key;
0029 $this->set_content($cache_content);
0030 }
0031
0032 /**
0033 * @param string $query the SQL-query for the cache
0034 * @access public
0035 */
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]cache_container.php[/b] in line [b]142[/b]
[ Method: [b]bs_db_cache::bs_db_cache()[/b] ]
[code]0137 $this->_cache_obj[$name] = new BS_db_cache($table_name,$name,$this->_cache_data[$name],'id');
0138 break;
0139
0140 // default init
0141 default:
0142 $this->_cache_obj[$name] = new BS_db_cache($table_name,$name,$this->_cache_data[$name]);
0143 break;
0144 }
0145
0146 // do additional things, if required...
0147 switch($name)
0148 {
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]cache_container.php[/b] in line [b]67[/b]
[ Method: [b]bs_cachecontainer::_init_object()[/b] ]
[code]0062
0063 if(!$this->_initialized)
0064 $this->_init_cache();
0065
0066 if(!isset($this->_cache_obj[$name]))
0067 $this->_init_object($name);
0068
0069 $rows = &$this->_cache_obj[$name]->get_rows();
0070 if($name == 'config')
0071 {
0072 if(isset($rows[0]))
0073 $rows = $rows[0];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]21[/b]
[ Method: [b]bs_cachecontainer::get_cache_content()[/b] ]
[code]0016 $DB = new BS_MySQL(MYSQL_HOST,MYSQL_LOGIN,MYSQL_PASSWORD,MYSQL_DATABASE);
0017 $TMP = new BS_template(ROOT_PATH.'acp/templates/');
0018 $INPUT = new BS_input();
0019 $CACHECON = new BS_CacheContainer();
0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]array_keys() [<a href='function.array-keys'>function.array-keys</a>]: The first argument should be an array[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]db_cache.php[/b] in line [b]74[/b]
[ Function: [b]array_keys()[/b] ]
[code]0069 $this->_cache_content = $content;
0070 else if($content)
0071 $this->_cache_content = unserialize($content);
0072
0073 $this->_length = count($this->_cache_content);
0074 $this->_cache_content_keys = array_keys($this->_cache_content);
0075 }
0076
0077 /**
0078 * saves the data in this object or from the db-table to the cache-table
0079 *
0080 * @param boolean $use_database do you want to use the database or this object?
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]db_cache.php[/b] in line [b]29[/b]
[ Method: [b]bs_db_cache::set_content()[/b] ]
[code]0024 function BS_db_cache($table_name,$cache_key,$cache_content = '',$array_key = '')
0025 {
0026 $this->_table_name = $table_name;
0027 $this->_cache_key = $cache_key;
0028 $this->_array_key = $array_key;
0029 $this->set_content($cache_content);
0030 }
0031
0032 /**
0033 * @param string $query the SQL-query for the cache
0034 * @access public
0035 */
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]cache_container.php[/b] in line [b]142[/b]
[ Method: [b]bs_db_cache::bs_db_cache()[/b] ]
[code]0137 $this->_cache_obj[$name] = new BS_db_cache($table_name,$name,$this->_cache_data[$name],'id');
0138 break;
0139
0140 // default init
0141 default:
0142 $this->_cache_obj[$name] = new BS_db_cache($table_name,$name,$this->_cache_data[$name]);
0143 break;
0144 }
0145
0146 // do additional things, if required...
0147 switch($name)
0148 {
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]cache_container.php[/b] in line [b]67[/b]
[ Method: [b]bs_cachecontainer::_init_object()[/b] ]
[code]0062
0063 if(!$this->_initialized)
0064 $this->_init_cache();
0065
0066 if(!isset($this->_cache_obj[$name]))
0067 $this->_init_object($name);
0068
0069 $rows = &$this->_cache_obj[$name]->get_rows();
0070 if($name == 'config')
0071 {
0072 if(isset($rows[0]))
0073 $rows = $rows[0];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]21[/b]
[ Method: [b]bs_cachecontainer::get_cache_content()[/b] ]
[code]0016 $DB = new BS_MySQL(MYSQL_HOST,MYSQL_LOGIN,MYSQL_PASSWORD,MYSQL_DATABASE);
0017 $TMP = new BS_template(ROOT_PATH.'acp/templates/');
0018 $INPUT = new BS_input();
0019 $CACHECON = new BS_CacheContainer();
0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: language[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]cache_container.php[/b] in line [b]80[/b]
[ Method: [b]bs_db_cache::get_cache_content()[/b] ]
[code]0075 $themes = $this->get_cache('themes');
0076 $theme_data = $themes->get_row_data($rows['theme']);
0077 $rows['theme_name'] = $theme_data['theme_folder'];
0078
0079 $langs = $this->get_cache('languages');
0080 $lang_data = $langs->get_row_data($rows['language']);
0081 $rows['language_name'] = $lang_data['lang_folder'];
0082 }
0083
0084 return $rows;
0085 }
0086
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]21[/b]
[ Method: [b]bs_cachecontainer::get_cache_content()[/b] ]
[code]0016 $DB = new BS_MySQL(MYSQL_HOST,MYSQL_LOGIN,MYSQL_PASSWORD,MYSQL_DATABASE);
0017 $TMP = new BS_template(ROOT_PATH.'acp/templates/');
0018 $INPUT = new BS_input();
0019 $CACHECON = new BS_CacheContainer();
0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: daylight_saving[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session.php[/b] in line [b]203[/b]
[ Function: [b]_calculate_timezone()[/b] ]
[code]0198 * @access private
0199 */
0200 function _calculate_timezone()
0201 {
0202 global $CFG;
0203 $cfg_daylight = $CFG['daylight_saving'];
0204 $cfg_timezone = $CFG['timezone'];
0205
0206 $daylight_saving = ($cfg_daylight == 2) ? date('I') : $cfg_daylight;
0207 $this->_adjust_time = $cfg_timezone * 3600 + $daylight_saving * 3600;
0208 }
0209 }
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session.php[/b] in line [b]35[/b]
[ Method: [b]bs_sessionacp::_calculate_timezone()[/b] ]
[code]0030 {
0031 $this->_determine_user_ip();
0032 $this->_user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
0033
0034 // time stuff
0035 $this->_calculate_timezone();
0036
0037 $time = time();
0038 $this->_today = gmdate('dmY',$time + $this->_adjust_time);
0039 $this->_yesterday = gmdate('dmY',$time + $this->_adjust_time - 86400);
0040 $this->_tomorrow = gmdate('dmY',$time + $this->_adjust_time + 86400);
0041 }
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]39[/b]
[ Method: [b]bs_session::bs_session()[/b] ]
[code]0034 *
0035 * @param boolean $adminarea are we in the adminarea?
0036 */
0037 function BS_sessionACP()
0038 {
0039 BS_session::BS_session();
0040
0041 $this->_generate_session_table();
0042 $this->_init_session();
0043 $this->_logout_offline_user();
0044
0045 // fill $userdata if not already done
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]25[/b]
[ Method: [b]bs_sessionacp::bs_sessionacp()[/b] ]
[code]0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: timezone[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session.php[/b] in line [b]204[/b]
[ Function: [b]_calculate_timezone()[/b] ]
[code]0199 */
0200 function _calculate_timezone()
0201 {
0202 global $CFG;
0203 $cfg_daylight = $CFG['daylight_saving'];
0204 $cfg_timezone = $CFG['timezone'];
0205
0206 $daylight_saving = ($cfg_daylight == 2) ? date('I') : $cfg_daylight;
0207 $this->_adjust_time = $cfg_timezone * 3600 + $daylight_saving * 3600;
0208 }
0209 }
0210 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session.php[/b] in line [b]35[/b]
[ Method: [b]bs_sessionacp::_calculate_timezone()[/b] ]
[code]0030 {
0031 $this->_determine_user_ip();
0032 $this->_user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
0033
0034 // time stuff
0035 $this->_calculate_timezone();
0036
0037 $time = time();
0038 $this->_today = gmdate('dmY',$time + $this->_adjust_time);
0039 $this->_yesterday = gmdate('dmY',$time + $this->_adjust_time - 86400);
0040 $this->_tomorrow = gmdate('dmY',$time + $this->_adjust_time + 86400);
0041 }
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]39[/b]
[ Method: [b]bs_session::bs_session()[/b] ]
[code]0034 *
0035 * @param boolean $adminarea are we in the adminarea?
0036 */
0037 function BS_sessionACP()
0038 {
0039 BS_session::BS_session();
0040
0041 $this->_generate_session_table();
0042 $this->_init_session();
0043 $this->_logout_offline_user();
0044
0045 // fill $userdata if not already done
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]25[/b]
[ Method: [b]bs_sessionacp::bs_sessionacp()[/b] ]
[code]0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: cookie_path[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]functions.php[/b] in line [b]482[/b]
[ Function: [b]bs_set_cookie()[/b] ]
[code]0477 function BS_set_cookie($name,$value,$lifetime = COOKIE_LIFETIME)
0478 {
0479 global $CFG,$INPUT;
0480 $INPUT->set_var(COOKIE_PREFIX.$name,'cookie',$value);
0481 setcookie(COOKIE_PREFIX.$name,$value,time() + $lifetime,
0482 $CFG['cookie_path'],$CFG['cookie_domain']);
0483 }
0484
0485 /**
0486 * deletes the cookie with given name
0487 *
0488 * @param string $name the name of the cookie (without COOKIE_PREFIX)
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]195[/b]
[ Function: [b]bs_set_cookie()[/b] ]
[code]0190 // if no session-id exists or the session-id is invalid (not in the online-table)
0191 // we have to generate a new one
0192 if($session_id == '' || !isset($this->_online_table[$session_id]))
0193 {
0194 $session_id = $this->_generate_session_id();
0195 BS_set_cookie('sid',$session_id);
0196 }
0197
0198 $this->_set_session_id($session_id);
0199
0200 $this->_bot_name = $this->_get_bot_name($this->_user_agent);
0201 if(isset($this->_online_table[$this->session_id]))
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]42[/b]
[ Method: [b]bs_sessionacp::_init_session()[/b] ]
[code]0037 function BS_sessionACP()
0038 {
0039 BS_session::BS_session();
0040
0041 $this->_generate_session_table();
0042 $this->_init_session();
0043 $this->_logout_offline_user();
0044
0045 // fill $userdata if not already done
0046 if($this->is_loggedin() && count($this->userdata) == 0)
0047 $this->_set_userdata($this->user_id);
0048
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]25[/b]
[ Method: [b]bs_sessionacp::bs_sessionacp()[/b] ]
[code]0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: cookie_domain[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]functions.php[/b] in line [b]482[/b]
[ Function: [b]bs_set_cookie()[/b] ]
[code]0477 function BS_set_cookie($name,$value,$lifetime = COOKIE_LIFETIME)
0478 {
0479 global $CFG,$INPUT;
0480 $INPUT->set_var(COOKIE_PREFIX.$name,'cookie',$value);
0481 setcookie(COOKIE_PREFIX.$name,$value,time() + $lifetime,
0482 $CFG['cookie_path'],$CFG['cookie_domain']);
0483 }
0484
0485 /**
0486 * deletes the cookie with given name
0487 *
0488 * @param string $name the name of the cookie (without COOKIE_PREFIX)
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]195[/b]
[ Function: [b]bs_set_cookie()[/b] ]
[code]0190 // if no session-id exists or the session-id is invalid (not in the online-table)
0191 // we have to generate a new one
0192 if($session_id == '' || !isset($this->_online_table[$session_id]))
0193 {
0194 $session_id = $this->_generate_session_id();
0195 BS_set_cookie('sid',$session_id);
0196 }
0197
0198 $this->_set_session_id($session_id);
0199
0200 $this->_bot_name = $this->_get_bot_name($this->_user_agent);
0201 if(isset($this->_online_table[$this->session_id]))
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]42[/b]
[ Method: [b]bs_sessionacp::_init_session()[/b] ]
[code]0037 function BS_sessionACP()
0038 {
0039 BS_session::BS_session();
0040
0041 $this->_generate_session_table();
0042 $this->_init_session();
0043 $this->_logout_offline_user();
0044
0045 // fill $userdata if not already done
0046 if($this->is_loggedin() && count($this->userdata) == 0)
0047 $this->_set_userdata($this->user_id);
0048
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]25[/b]
[ Method: [b]bs_sessionacp::bs_sessionacp()[/b] ]
[code]0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Cannot modify header information - headers already sent by (output started at /homepages/40/d251214899/htdocs/gbook4/src/debug.php:62)[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]functions.php[/b] in line [b]482[/b]
[ Function: [b]setcookie()[/b] ]
[code]0477 function BS_set_cookie($name,$value,$lifetime = COOKIE_LIFETIME)
0478 {
0479 global $CFG,$INPUT;
0480 $INPUT->set_var(COOKIE_PREFIX.$name,'cookie',$value);
0481 setcookie(COOKIE_PREFIX.$name,$value,time() + $lifetime,
0482 $CFG['cookie_path'],$CFG['cookie_domain']);
0483 }
0484
0485 /**
0486 * deletes the cookie with given name
0487 *
0488 * @param string $name the name of the cookie (without COOKIE_PREFIX)
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]195[/b]
[ Function: [b]bs_set_cookie()[/b] ]
[code]0190 // if no session-id exists or the session-id is invalid (not in the online-table)
0191 // we have to generate a new one
0192 if($session_id == '' || !isset($this->_online_table[$session_id]))
0193 {
0194 $session_id = $this->_generate_session_id();
0195 BS_set_cookie('sid',$session_id);
0196 }
0197
0198 $this->_set_session_id($session_id);
0199
0200 $this->_bot_name = $this->_get_bot_name($this->_user_agent);
0201 if(isset($this->_online_table[$this->session_id]))
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/src/[b]session_acp.php[/b] in line [b]42[/b]
[ Method: [b]bs_sessionacp::_init_session()[/b] ]
[code]0037 function BS_sessionACP()
0038 {
0039 BS_session::BS_session();
0040
0041 $this->_generate_session_table();
0042 $this->_init_session();
0043 $this->_logout_offline_user();
0044
0045 // fill $userdata if not already done
0046 if($this->is_loggedin() && count($this->userdata) == 0)
0047 $this->_set_userdata($this->user_id);
0048
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]25[/b]
[ Method: [b]bs_sessionacp::bs_sessionacp()[/b] ]
[code]0020
0021 $CFG = &$CACHECON->get_cache_content('config');
0022 $LANGS = &$CACHECON->get_cache('languages');
0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]main(languages//lang_admin.php) [<a href='function.main'>function.main</a>]: failed to open stream: No such file or directory[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]28[/b]
[ Function: [b]include_once()[/b] ]
[code]0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]main() [<a href='function.include'>function.include</a>]: Failed opening 'languages//lang_admin.php' for inclusion (include_path='.:/usr/lib/php4.4')[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]28[/b]
[ Function: [b]include_once()[/b] ]
[code]0023 $THEMES = &$CACHECON->get_cache('themes');
0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]main(languages//lang_index.php) [<a href='function.main'>function.main</a>]: failed to open stream: No such file or directory[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]29[/b]
[ Function: [b]include_once()[/b] ]
[code]0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]main() [<a href='function.include'>function.include</a>]: Failed opening 'languages//lang_index.php' for inclusion (include_path='.:/usr/lib/php4.4')[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]29[/b]
[ Function: [b]include_once()[/b] ]
[code]0024
0025 $SESS = new BS_sessionACP();
0026
0027 $LANG = array();
0028 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_admin.php');
0029 include_once(ROOT_PATH.'languages/'.$CFG['language_name'].'/lang_index.php');
0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: page_title[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]35[/b]
[ Function: [b]unknown()[/b] ]
[code]0030 include_once(ROOT_PATH.'acp/menu/menu.php');
0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: login[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]36[/b]
[ Function: [b]unknown()[/b] ]
[code]0031
0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: username[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]37[/b]
[ Function: [b]unknown()[/b] ]
[code]0032 $TMP->add_array('LANG',$LANG,true);
0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: password[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]38[/b]
[ Function: [b]unknown()[/b] ]
[code]0033 $TMP->add_array('CFG',$CFG,true);
0034
0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: error_login[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]39[/b]
[ Function: [b]unknown()[/b] ]
[code]0034
0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: welcome_message[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]40[/b]
[ Function: [b]unknown()[/b] ]
[code]0035 $lang['title'] = $LANG['page_title'];
0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: page_error[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]41[/b]
[ Function: [b]unknown()[/b] ]
[code]0036 $lang['login'] = $LANG['login'];
0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: access_to_module_denied[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]config.php[/b] in line [b]42[/b]
[ Function: [b]unknown()[/b] ]
[code]0037 $lang['username'] = $LANG['username'];
0038 $lang['password'] = $LANG['password'];
0039 $lang['error_login'] = $LANG['error_login'];
0040 $lang['welcome'] = $LANG['welcome_message'];
0041 $lang['page_not_exists'] = $LANG['page_error'];
0042 $lang['access_to_module_denied'] = $LANG['access_to_module_denied'];
0043 ?>
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/acp/[b]acp.php[/b] in line [b]3[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 define('ROOT_PATH','');
0003 include(ROOT_PATH.'acp/config.php');
0004
0005 class ACP
0006 {
0007 // private
0008 var $_menu = null;
0009 var $_page;
[/code]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]2[/b]
[ Function: [b]include()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
[/code]
[/list]
[u][b][color=#FF0000]Undefined index: enable_gzip[/color][/b][/u]
[b]Call-trace:[/b]
[list]
[*]/homepages/40/d251214899/htdocs/gbook4/[b]admin.php[/b] in line [b]5[/b]
[ Function: [b]unknown()[/b] ]
[code]0001 <?php
0002 include('acp/acp.php');
0003 $ACP = new ACP();
0004
0005 $old = $CFG['enable_gzip'];
0006 $CFG['enable_gzip'] = ENABLE_ADMIN_GZIP;
0007 BS_start_document();
0008 $CFG['enable_gzip'] = $old;
0009
0010 $page = $INPUT->get_var('page','get',INTEGER);
0011 if($page == 1)
[/code]
[/list]