PDA

View Full Version : errors



Colin-Roberts
04-04-2007, 10:33 PM
Parse error: syntax error, unexpected T_STRING, expecting ')' in /mounted-storage/home10/sub002/sc16051-AGLV/board/sources/ipsclass.php(2039) : eval()'d code on line 553

Fatal error: Cannot instantiate non-existent class: skin_radio_4 in /mounted-storage/home10/sub002/sc16051-AGLV/board/sources/ipsclass.php on line 2051

first error:


//--------------------------------
// APC...
//--------------------------------

else if( function_exists('apc_fetch') AND isset($this->vars['use_apc']) AND $this->vars['use_apc'] == 1 )
{
require KERNEL_PATH.'class_cache_apc.php';
$this->cachelib = new cache_lib( $this->vars['board_url'] );
}

Second:

//-----------------------------------------
// Get template class
//-----------------------------------------

if ( ! is_object( $this->work_classes['class_template_engine'] ) )
{
require_once( KERNEL_PATH . 'class_template_engine.php' );

$this->work_classes['class_template_engine'] = new class_template();
}

if( $other_skin )
{
$other_skin = $this->work_classes['class_template_engine']->convert_cache_to_eval( $other_skin, $name.'_'.$id );
}
}
}

Tomm
05-04-2007, 08:49 AM
Have you been installing and mods?

Blob
05-04-2007, 09:43 AM
First one:


//--------------------------------
// APC...
//--------------------------------

else if( function_exists('apc_fetch') AND isset($this->vars['use_apc']) AND ($this->vars['use_apc'] == 1))
{
require KERNEL_PATH.'class_cache_apc.php';
$this->cachelib = new cache_lib( $this->vars['board_url'] );
}

Colin-Roberts
05-04-2007, 10:40 AM
thanx blob & ye tom i have

Want to hide these adverts? Register an account for free!