Page 174 of 224 FirstFirst ... 74124164172173174175176184 ... LastLast
Results 1,731 to 1,740 of 2240
  1. #1731
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by twi View Post
    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

  2. #1732
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default 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.

  3. #1733
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by twi View Post
    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

  4. #1734
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by Design75 View Post
    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.

  5. #1735
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default 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

  6. #1736
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by Design75 View Post
    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?
    Last edited by twi; 18 Jun 2013 at 11:21 PM.

  7. #1737
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by twi View Post
    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.

  8. #1738
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by Design75 View Post
    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
    Last edited by twi; 18 Jun 2013 at 11:26 PM.

  9. #1739
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: MultiSite Module Support Thread

    No there is no lag, they show up immediately

  10. #1740
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by Design75 View Post
    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.

 

 

Similar Threads

  1. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 115
    Last Post: 20 Jul 2021, 04:00 PM
  2. Bambora/Beanstream Payment Module Support Thread
    By swguy in forum Addon Payment Modules
    Replies: 127
    Last Post: 26 Mar 2021, 04:13 PM
  3. WorldPay Module version 2.0 - Support thread
    By philip_clarke in forum Addon Payment Modules
    Replies: 729
    Last Post: 4 Nov 2017, 08:23 AM
  4. PC Configurator Module [Support Thread]
    By lebrand2006 in forum All Other Contributions/Addons
    Replies: 254
    Last Post: 22 Aug 2012, 03:52 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR