Parse Error - how to fix?

I received the following parse error below.  How can I fix this? 

Parse error: syntax error, unexpected '.' in /home/litttle/public_html/site/inc/design.inc.php on line 484

Please help.

Thanks,

craig

 

Quote · 26 Oct 2008

can you show us some lines of your design.inc.php so we can check it up :) ?

Regards

Artur

Quote · 27 Oct 2008

 

can you show us some lines of your design.inc.php so we can check it up :) ?

 

Regards

Artur

 

Sorry...here you go.  I started around 477, I believe the error is around 486

 

 

 // reading templates
 $sTemplFile = BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/page_{$_page['name_index']}.html";
 if ( !file_exists($sTemplFile) )
  $sTemplFile = BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/default.html";
 
 $templ = file_get_contents( $sTemplFile );
 
 // process includes (3-level)
 for( $i = 0; $i < 3; $i ++ ) {
  $templ = preg_replace_callback( '/__include (.*)__/', 'TmplInclude', $templ );
  $templ = preg_replace_callback( '/__includebase (.*)__/', 'TmplIncludeBase', $templ );
 }
 
 header( 'Content-type: text/html; charset=utf-8' );
 $echo( $templ );
}

Quote · 27 Oct 2008

well - I don't see any difference with default design.inc.php file - so if it possible - just PM me your FTP access details and link to error message.

Regards

Artur

Quote · 27 Oct 2008
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.