Forums / Install & configuration / Fatal error: Class 'ezcBaseOptions'

Fatal error: Class 'ezcBaseOptions'

Author Message

Jenny Dupuy

Tuesday 10 May 2011 7:12:58 am

Hi,

My configuration is : WINDOWS XP SP3 | WAMP 2.1 | APACHE 2.2.17 | PHP 5.3.5 | MySQL 5.5.8

I've downloaded the package ezpublishcommunity-4.4.0-gpl.zip and unpacked this in c:\wamp\www\ezpublish.

I've created a MySQL database under PhpMyAdmin named ezpublish, with interclassement utf8_general_ci.

When I load the page index.php by the URL : http://localhost/ezpublish/index.php, this error message is diplayed :

Fatal error: Class 'ezcBaseOptions' not found in C:\wamp\www\ezpublish\kernel\private\options\ezpextensionoptions.php on line 58

The file ezpextensionoptions.php is present, and the line 58 and follow are :

{
public function __construct( array $options = array() )
{
$this->iniFile = '';
$this->iniSection = 'HandlerSettings';
$this->iniVariable = 'HandlerClassName';
$this->handlerIndex = null;
$this->callMethod = null;
$this->handlerParams = null;
$this->aliasSection = null;
$this->aliasVariable = null;
$this->aliasOptionalIndex = null;
parent::__construct( $options );
}
public function __set( $name, $value )
{
switch ( $name )
{
case 'iniFile':
case 'iniSection':
case 'iniVariable':
if( !is_string( $value ) )
{
throw new ezcBaseValueException( $name, $value );
}
$this->properties[$name] = $value;
break;
case 'handlerIndex':
case 'callMethod':
case 'aliasSection':
case 'aliasVariable':
case 'aliasOptionalIndex':
if( $value !== null and !is_string( $value ) )
{
throw new ezcBaseValueException( $name, $value );
}
$this->properties[$name] = $value;
break;
case 'handlerParams':
if( $value !== null and !is_array( $value ) and count( $value ) <= 0 )
{
throw new ezcBaseValueException( $name, $value );
}
$this->properties[$name] = $value;
break;
default:
throw new ezcBasePropertyNotFoundException( $name );
}
}
}

How do I the installation ? Could you help me, I'm new user of eZPublish.

Thanks;

JD

Gaetano Giunta

Tuesday 10 May 2011 8:14:22 am

Sometimes this happens because of errors in unzipping the original tarball. Can you try to download and unzip and start again?

Also check if any antivirus is on that might interfere with ezp creating its cache files.

Principal Consultant International Business
Member of the Community Project Board

Edi Modrić

Tuesday 10 May 2011 8:27:06 am

It seems to me like you downloaded a package without eZ Components included, which are required for normal functioning of eZ Publish (packages without eZ Components are provided because eZ Publish can use the ones installed system wide too)

You can fix it by downloading this package: http://share.ez.no/content/download/103523/477755/version/1/file/ezpublishcommunity-4.4.0-with_ezc-gpl.zip

Extract it and copy the lib/ezc folder from the downloaded package to your existing lib folder and regenerate the autoload array.

eZ Publish certified developer

http://ez.no/certification/verify/350658

Jenny Dupuy

Thursday 12 May 2011 8:18:43 am

Hi,

I've used the package http://share.ez.no/content/downlo...lishcommunity-4.4.0-with_ezc-gpl.zip and it's seems to work good.

Thanks.