Results 1 to 10 of 2247

Hybrid View

  1. #1
    Join Date
    Dec 2009
    Location
    fort wayne, indiana
    Posts
    11
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    @ALL,

    again trying to get things to work. First, I took everything out of the categories descriptions column except for the html comment. Then, set up the config_sites folders thusly:
    ----------------------------

    ZEN APP is in folder --> mydomain.com/folder/shop

    ALL PRODUCTS AND CATS (crafts, foods and books) ARE IN THIS SITE

    CONFIG FILES 1-2
    mydomain.com_config.php, www.mydomain.com_config.php
    Code:
    <?php
     	define('DIR_WS_CATALOG', '/');
    	define('DIR_WS_HTTPS_CATALOG', '/');
    	$template_dir = "mihluna";
    	define('SITE_NAME','FAIR');
    	define('HTTP_SERVER', 'http://www.mydomain.com/folder/shop');
    	define('HTTPS_SERVER', 'https://www.mydomain.com/folder/shop');
    	define('CATEGORIES_ROOT','0'); //root categories is 0 for this site  
    ?>
    CONFIG FILES 3-4 / JUST CRAFTS IN THIS SITE
    crafts.mydomain.com_config.php, www.crafts.mydomain.com_config.php
    Code:
    <?php
    	define('SITE_NAME','CRAFTS');
     	define('DIR_WS_CATALOG', '/');
    	define('DIR_WS_HTTPS_CATALOG', '/');
    	$template_dir = "CRAFTS_mihluna";
    	define('CATEGORIES_ROOT','3'); //root categories is 3 for this site  
    ?>
    CONFIG FILES 5-6 / only FOOD HERE
    foods.mydomain.com_config.php, www.foods.mydomain.com_config.php
    Code:
    <?php
    	define('SITE_NAME','FOODS');
     	define('DIR_WS_CATALOG', '/');
    	define('DIR_WS_HTTPS_CATALOG', '/');
    	$template_dir = "FOODS_mihluna";
    	define('CATEGORIES_ROOT','2'); //root categories is 2 for this site  
    ?>
    CONFIG FILES 7-8 / just BOOKS IN HERE
    books.mydomain.com_config.php, www.books.mydomain.com_config.php
    Code:
    <?php
    	define('SITE_NAME','BOOKS');
     	define('DIR_WS_CATALOG', '/');
    	define('DIR_WS_HTTPS_CATALOG', '/');
    	$template_dir = "BOOKS_mihluna";
    
    	define('CATEGORIES_ROOT','1'); //root categories is 1 for this site 
    ?>
    Now, what is happening is that we have the main mihluna template showing up. have activated the site_links.php file and activated the sidebar box in all the templates.

    changed the header of the 3 other templates so that I could see if it was loading the different site template, but it is not. What am I missing here?

    TIA
    Gargi
    Last edited by glogo; 10 Feb 2010 at 11:06 PM. Reason: fix smiley

  2. #2
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,741
    Plugin Contributions
    22

    Default Re: MultiSite Module Support Thread

    First of all, it would be much easier to answer if we could actually take a look at the live sites.
    About your templates - are your templates really named using capital letters? If you're on a linux server, "Name" is not the same as "name". Just a thought... Did you make your subdomains' root directory point to your zen app installation folder?

  3. #3
    Join Date
    Dec 2009
    Location
    fort wayne, indiana
    Posts
    11
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by balihr View Post
    First of all, it would be much easier to answer if we could actually take a look at the live sites.
    About your templates - are your templates really named using capital letters? If you're on a linux server, "Name" is not the same as "name". Just a thought... Did you make your subdomains' root directory point to your zen app installation folder?

    Fair enough:
    the site is at http://cooperativetrading.com/1port/shoppe2
    but you have to log in over htaccess. It's to keep the bots out for the time being.

    login: mutlisite
    pass: multi

    If you want to log in to the back end, pm me and I will provide a login for any helpful souls, gladly. (or also an ftp login to the folder!)

    it's a lin server. I took care to make sure that the template_info.php files and the folders' names were in sync.

    the subdomains are pointed to the zen app folder through an apache 301 redirect. that seems to be redirecting properly, also.

    Thanks for any help you can offer! Very much appreciated.
    Gargi

    PS: just need a few mins to put the themes back the way they were. I was playing with it some more, testing more themes.
    Actually, I started out with apple_zen and I wanted to stay with that. I will put that back in there, because Mihluna was also not working properly. So, the theme is apple_zen, with apple_zen_B, apple_zen_C and apple_zen_F.

    the subdomains are coop.cooperativetrading.com (foods)
    books.cooperativetrading.com and crafts.cooperativetrading.com
    plain old "cooperativetrading.com" resolves to the live site in a different folder with a different zen app, which does not have multisite installed.

  4. #4
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,741
    Plugin Contributions
    22

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by glogo View Post
    the subdomains are pointed to the zen app folder through an apache 301 redirect. that seems to be redirecting properly, also.
    OK, didn't even need to see your site...
    301 redirects are NOT what you need. You don't want to redirect your subdomains. You want to stay in your subdomain, but it "pulls" data from somewhere else.
    Take a look at my previous post here - cpanel screenshots is what you're after... :)

  5. #5
    Join Date
    Dec 2009
    Location
    fort wayne, indiana
    Posts
    11
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    @bahlir

    Many heartfelt thanks. that was the missing information.

    For the benefit of anyone else who feels confused, this was the whole process for me.

    http://docs.google.com/View?id=ddd8x4x4_117fn26fnfn

    As needed this can be updated. If anyone wants to work on it, change anything still unclear, editing writes are available.

    Love,
    Gargi

  6. #6
    Join Date
    Dec 2009
    Location
    fort wayne, indiana
    Posts
    11
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by glogo View Post
    @bahlir

    Many heartfelt thanks. that was the missing information.

    For the benefit of anyone else who feels confused, this was the whole process for me.

    http://docs.google.com/View?id=ddd8x4x4_117fn26fnfn

    As needed this can be updated. If anyone wants to work on it, change anything still unclear, editing writes are available.

    Love,
    Gargi
    EDITING "RIGHTS" are available!

    GUIDE FOR BEGINNERS

  7. #7
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: MultiSite Module Support Thread

    Thanks glogo, great resource!

    cert only valid vor "*.daylightnutrition.biz." (Errorcode: ssl_error_bad_cert_domain)
    Ok, didn't spot that one, took care of it.

    The complaint I have is (and I think is what you want to accomplish) that the daylightnutrition.biz comes up on the url, and customer doesn't really like the idea. I don't think there's a solution, is there?

    Accessing "https://pclean.biz" leads to a error.
    That's because the SSL is for daylightnutrition, so pclean doesn't have one.
    Last edited by ideasgirl; 11 Feb 2010 at 06:05 PM. Reason: Extra info.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  8. #8
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,741
    Plugin Contributions
    22

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by glogo View Post
    EDITING "RIGHTS" are available!

    GUIDE FOR BEGINNERS
    Good job! I was thinking of writing a guide, you just saved me the trouble...

    One thing, though - i see you thanked me in the tutorial. Well, you might wanna change my name to the one i actually use... I'm not bahlir, i'm balihr - just put a dot before h and you got my domain...

    Glad you got it running! Have fun!

 

 

Similar Threads

  1. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 116
    Last Post: 31 Dec 2025, 11:36 AM
  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

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