Hello, Drbyte,

many thanks for your great mould.

May I ask for your suggestion on my problem?

my site is www.example.com, located at the root directory, i.e. /, and and my blog site http://blog.example.com located at sub-dir, i.e. /blog/

on my blog site http://blog.example.com, i want to call out a sidebox , say whats_new.php,
my setting is as folows:
<?php $zcSBmodule = 'whats_new.php';
$zcSBlayout = 'left';
require ("/MYHOSTDIR/html/includes/modules/sideboxes/single_sidebox.php");?>
but error says:
HTML Code:
Warning: require(/includes/application_top.php) [function.require]: failed to open stream: No such file or directory in /MYHOSTDIR/html/includes/modules/sideboxes/single_sidebox.php on line 41
then i found the problem and fixed it by edit singel_sidebox.php as follows:
change require('/includes/application_top.php');
to require('/MYHOSTDIR/html/includes/single_sidebox.php');

however, more errors occured:
HTML Code:
Warning: require(includes/templates/template_default/templates/tpl_zc_install_suggested_default.php) [function.require]: failed to open stream: No such file or directory in /MYHOSTDIR/html/includes/application_top.php on line 68

Fatal error: require() [function.require]: Failed opening required 'includes/templates/template_default/templates/tpl_zc_install_suggested_default.php' (include_path='.:/usr/local/php5/lib/php') in /MYHOSTDIR/html/includes/application_top.php on line 68
could you please advise your suggestion? thanks.