Re: MultiSite Module Support Thread
Quote:
Originally Posted by
twi
No. The original was
www.birthdaysextreme.net
based on what you just said, I have done the following:
<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "robbor_green_BAM";
define('SITE_NAME','robbor_green_BAM');
define('HTTP_SERVER', 'http://www.birthdayandmore.net');
?>
Okay, seems to be working now, since I can access both sites
Re: MultiSite Module Support Thread
actually I have just changed the files to:
<?php
$template_dir = "robbor_red_BEX";
define('SITE_NAME','robbor_red_BEX');
?>
and
<?php
$template_dir = "robbor_green_BAM";
define('SITE_NAME','robbor_green_BAM');
define('HTTP_SERVER', 'http://www.birthdayandmore.net');
?>
is it still working? or should I revert back? I did that is because I didn't see it working at my end.
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
twi
actually I have just changed the files to:
<?php
$template_dir = "robbor_red_BEX";
define('SITE_NAME','robbor_red_BEX');
?>
and
<?php
$template_dir = "robbor_green_BAM";
define('SITE_NAME','robbor_green_BAM');
define('HTTP_SERVER', 'http://www.birthdayandmore.net');
?>
is it still working? or should I revert back? I did that is because I didn't see it working at my end.
Yes, it is still working over here :)
That is about the bare minimum you need to put in the config files
this is what I normally use for the main/first site
PHP Code:
<?php
$template_dir = "template1";
define('SITE_NAME','mysite');
define('HTTP_SERVER', 'http://mysite.nl');
// EOF
And this for the extra domains
PHP Code:
<?php
$template_dir = "template2";
define('SITE_NAME','myseccondsite');
define('HTTP_SERVER', 'http://myseccondsite.nl');
//EOF
That is the minimum, after you can add extra overrides
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
Design75
Yes, it is still working over here :)
That is about the bare minimum you need to put in the config files
this is what I normally use for the main/first site
PHP Code:
<?php
$template_dir = "template1";
define('SITE_NAME','mysite');
define('HTTP_SERVER', 'http://mysite.nl');
// EOF
And this for the extra domains
PHP Code:
<?php
$template_dir = "template2";
define('SITE_NAME','myseccondsite');
define('HTTP_SERVER', 'http://myseccondsite.nl');
//EOF
That is the minimum, after you can add extra overrides
But I still only see the headers and not the rest of the website below the header tabs? do you see it there at your side? I am really confused.
Re: MultiSite Module Support Thread
No I also only see the headers, but the rest not showing is not a config file problem.
You'll probably have some debug files, the page just stops loading after the header part of the site
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
Design75
No I also only see the headers, but the rest not showing is not a config file problem.
You'll probably have some debug files, the page just stops loading after the header part of the site
so the problem is not with the config_site.php files
Yes I do have some debug files.
Could it be a template problem?
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
twi
so the problem is not with the config_site.php files
Yes I do have some debug files.
Could it be a template problem?
Could be anything, but just paste the contents here of the newest file and I will take a look.
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
Design75
Could be anything, but just paste the contents here of the newest file and I will take a look.
log doesn't show anything pertaining to the *.net sites. Is there ususally a lag on error logs files?
here is the last MyDebug File:
[18-Jun-2013 18:13:25] PHP Warning: require(includes/modules/robbor_green_BAM/categories_popup.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /data/htdocs/zencart/includes/templates/robbor_green_BAM/common/tpl_header.php on line 192
[18-Jun-2013 18:13:25] PHP Warning: require(includes/modules/robbor_green_BAM/categories_popup.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /htdocs/zencart/includes/templates/robbor_green_BAM/common/tpl_header.php on line 192
[18-Jun-2013 18:13:25] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/modules/robbor_green_BAM/categories_popup.php' (include_path='.:/usr/services/vux/lib/php') in /htdocs/zencart/includes/templates/robbor_green_BAM/common/tpl_header.php on line 192
Re: MultiSite Module Support Thread
No there is no lag, they show up immediately
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
Design75
No there is no lag, they show up immediately
Thanks. I have attached the logs to the previous post. could it be having something to do with the renaming of the templates? I copied and rename them according to install instructions.