Zen Cart Logo
Forums / All Other Contributions/Addons / MultiSite Module Support Thread

MultiSite Module Support Thread

Views: 580,169

Results 1,681 to 1,700 of 2,247
22 Mar 2013, 2:09 AM
#1681
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

MultiSite Module Support Thread

lidlchris:

did you ever get an answer to this.. i have 5 multi sites set up and they are working perfectly.. EXCEPT the index settings in the _config files don't work for any of the sites.. I had to hard code my main site to get what i wanted but don't like to do things that way.. anybody know why these settings dont work?

these are the fields that don't seem to be doing anything

define('SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS','0'); //Show New Products on Main Page
define('SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','1'); //Show Featured Products on Main Page
define('SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS','2'); //Show Special Products on Main Page
define('SHOW_PRODUCT_INFO_MAIN_UPCOMING','0'); //Show Upcoming Products on Main Page

can anyone help me with this?? not matter what i put in those fields, new, featured, and specials show up on all the home pages of my multi sites..

22 Mar 2013, 6:45 AM
#1682
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: MultiSite Module Support Thread

lidlchris:

anyone??? i can't figure this out..

I don't think this feature was ever really worked out. the complete code is not in the module, only the preparation for the pull down. Maybe if I have time I will take a look at it to complete the code

22 Mar 2013, 7:32 PM
#1683
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Design75:

I don't think this feature was ever really worked out. the complete code is not in the module, only the preparation for the pull down. Maybe if I have time I will take a look at it to complete the code

thank you... i can't imagine with all the people using this that no one else needs this functionality?? how do they dtermine which website their orders come from?

25 Mar 2013, 9:24 PM
#1684
muttly avatar

muttly

New Zenner

Join Date:
Mar 2011
Posts:
5
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Muttly:

I've gone through the install procedure best I can and I can get my products to display individually by using a direct link however I have no categories even though they have been applied to both sites and because of this my sites look like they have no products. Help please.Anyone? I'm getting close toditching the whole lot and starting over with 2 sites.

25 Mar 2013, 9:33 PM
#1685
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: MultiSite Module Support Thread

Muttly:

Anyone? I'm getting close toditching the whole lot and starting over with 2 sites.

I don't know what went wrong, but you probably missed something during install, or are configuring something wrong.

What version of Zencart are you using? and which multisite version

25 Mar 2013, 11:10 PM
#1686
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Here is the process that i used to install multi sites and add new sites to the main one. This process has taken over 2 months because the lack of good documentation targeted to newbies and the overall lack of support in this forum (SOME people have been very helpful for some parts). So i'm posting this so maybe i can help one person who is struggling.

First of all, here are my facts:
Hosting on a Hostgator VPS.
One main site and 7 add on sites.
Installed about 6 mods to the basic 1.5.1 version of Zen Cart.

Here are the steps i used:

  1. installed zen cart 1.5.1 for the main site (maindomain.com) and uploaded a new template for it and got it working the way i wanted.
    2a. install the multi site module just as stated in the documentation.
    2b. create a _config.php file for the main site at includes/config_sites/maindomain.com_config.php.. you will also have to create another one for the www version - includes/config_sites/www.maindomain.com_config.php. Here are the basic contents of that file:
<?php $template_dir = "template_name"; define('SITE_NAME','your store name'); define('HTTP_SERVER', 'http://www.maindomain.com'); define('HTTPS_SERVER', 'http://www.maindomain.com'); (more on SSL later) ?>
  1. create your 2nd site by creating an 'addon domain' in your Cpanel of your main site (this can also be done by creating a subdomain but i won't cover that here). if you don't know how to do this contact your hosting company. you can test this site using addondomain.maindomain.com until you are ready to have your site go live and point your DNS to your live site.
  2. pick a template for this 2nd site and install in your maindomain folders just like you installed the template for the main site. you will then need to go into the admin section of your main site and click on tools/template selection and then click the 'edit' button, pull down the new template and click update. then you have to go to tools/layout boxes controller and click the 'reset' button at the bottom of that page.
  3. install the multi site module AGAIN but for the 2nd template. this ones a bit tricky but what it means it replace the template folder name with the 2nd template folder names and then install. you will have to do this with every site you have. it allows the multi site to correctly show products in sidebars, searches, and home page on your sites.
  4. create a _config.php file for the 2nd site at includes/config_sites/addondomain.com_config.php.. you will also have to create another one for the www version - includes/config_sites/www.addondomain.com_config.php. Here are the basic contents of that file:
<?php $template_dir = "template_name"; define('SITE_NAME','your site name'); define('HTTP_SERVER', 'http://www.addondomain.com'); define('HTTPS_SERVER', 'http://www.addondomain.com'); (more on SSL later) ?>

now go to addondomain.maindomain.com or addondomain.com (depending on if you propagated your DNS) and you should see your site.
You will now probably need to customize/modify the template of your 2nd site and you can do that through the _config.php file you just set up and SOME settings can be modified through the admin section of the main site (Layout boxes controller settings can be changed this way). Still not sure of all the variances here but when in doubt, don't change the main site settings because it may change your main site and break it.

if you've gotten this far and have a site you can see, then you might get into deeper issues - some of which i've resolved and some that others have seem to resolved. things like banners, e-z pages, and SSL all require some extra effort.

here is how i resolved the SSL issues. I bought a godaddy multi domain SSL and set it up with 5 domains. I then had my hosting company install this SSL on the server. i then had to go into each of the _config.php files and change this:
define('HTTPS_SERVER', 'http://www.addondomain.com'); to this:
define('HTTPS_SERVER', 'https://www.addondomain.com');

sounds simple but it took a week to get this working and now works great..

if anyone has any questions, they can message me and hopefully i can help.. i'm not a Guru or a tech wizard just a Doctorate in banging my head because of this module for over 2 months.

27 Mar 2013, 3:04 AM
#1687
topwebnames avatar

topwebnames

New Zenner

Join Date:
Mar 2013
Posts:
7
Plugin Contributions:
0

Re: MultiSite Module Support Thread

How much does this MultiSite Module cost?

27 Mar 2013, 5:36 AM
#1688
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: MultiSite Module Support Thread

TopWebNames:

How much does this MultiSite Module cost?
It is FREE as a community contributed module

27 Mar 2013, 10:28 AM
#1689
muttly avatar

muttly

New Zenner

Join Date:
Mar 2011
Posts:
5
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Design75:

I don't know what went wrong, but you probably missed something during install, or are configuring something wrong.

What version of Zencart are you using? and which multisite versionAfter stripping everything back it looks like it a theme issue more so than the plugin itself.
FYI its 1.5.0 I'm using.

I am having another issue though, if I go to https://www.site.com/shop it works fine (albeit looks terrible, but that will get sorted shortly). If I go to site.com/shop I get "the domain site.com does not exist."

27 Mar 2013, 3:03 PM
#1690
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: MultiSite Module Support Thread

Muttly:

After stripping everything back it looks like it a theme issue more so than the plugin itself.
FYI its 1.5.0 I'm using.

I am having another issue though, if I go to www.site.com/shop it works fine (albeit looks terrible, but that will get sorted shortly). If I go to site.com/shop I get "the domain site.com does not exist."

This happens if the sitename is not defined in a configfile in the includes/config_sites folder. Or if you removed the Multi site module you forgot to remove the line ```php
include_once('includes/config_sites/sites_switch.php');

28 Mar 2013, 9:40 AM
#1691
topwebnames avatar

topwebnames

New Zenner

Join Date:
Mar 2013
Posts:
7
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Thanks for this information, kobra!

kobra:

It is FREE as a community contributed module

28 Mar 2013, 9:53 AM
#1692
topwebnames avatar

topwebnames

New Zenner

Join Date:
Mar 2013
Posts:
7
Plugin Contributions:
0

Re: MultiSite Module Support Thread

To lidlchris: Thank you very much for the thorough process information that you posted a couple of days ago on 3/25/13, re: "Here is the process that i used to install multi sites and add new sites to the main one. This process has taken over 2 months because the lack of good documentation targeted to newbies and the overall lack of support in this forum (SOME people have been very helpful for some parts). So i'm posting this so maybe i can help one person who is struggling."

I'm not just a newbie to ZenCart, I'm a newbie to shopping carts completely. I haven't even decided which one to use yet, and I need to decide two weeks ago! Since I only know a very tiny bit of coding, just enough to find and fix little things; your detailed explanation is VERY helpful and illuminating. With all that you've been through getting this MultiSite module to work for you, what made you stick with it, and ZenCart, with the many other carts that are available? Which others did you try, and why didn't you use them instead?

Thanks again VERY much!

TopWebNames

28 Mar 2013, 10:07 AM
#1693
topwebnames avatar

topwebnames

New Zenner

Join Date:
Mar 2013
Posts:
7
Plugin Contributions:
0

Re: MultiSite Module Support Thread

How many others here are successfully managing multiple stores from one Admin utilizing this MultiSite module, and how many other stores are you managing?

Thanks!

TopWebNames

1 Apr 2013, 9:38 PM
#1694
twi avatar

twi

Zen Follower

Join Date:
Aug 2007
Posts:
277
Plugin Contributions:
0

Re: MultiSite Module Support Thread

ZC 1.39h

I am trying to understand how to implement Multisite 0.4.1 to my existing version ZC1.39h with two urls using one database without much luck.

What do I have to do?

Do I install another new zc 1.3.9h (site2) for other url and then implement the changes to both, the existing ZC site1 and then site2?

Any input is greatly appreciated.:(

3 Apr 2013, 9:38 PM
#1695
pearcestephens avatar

pearcestephens

New Zenner

Join Date:
Nov 2012
Posts:
69
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Hi, I am successfully running Multi Site module on my shopping cart. It is a great module however, I would prefer one day to get it working on sub directories and use under one SSL certificate, as of currently it is using sub domains.

http://www.shopping.franktonmodels.co.nz/

TopWebNames:

How many others here are successfully managing multiple stores from one Admin utilizing this MultiSite module, and how many other stores are you managing?

Thanks!

TopWebNames

3 Apr 2013, 11:24 PM
#1696
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

i'm having a problem integrating 'paypal express checkout' with multi sites. The paypal checkout is set up correctly because it worked perfectly with the main site. but when you click on the paypal checkout for ANY of the add-on sites, it tries to go to domainname.com/ipn_main_handler.php?type=ec and just brings up a blank page. I'm sure i must just have a setting off??

4 Apr 2013, 4:38 AM
#1697
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

TopWebNames:

To lidlchris: Thank you very much for the thorough process information that you posted a couple of days ago on 3/25/13, re: "Here is the process that i used to install multi sites and add new sites to the main one. This process has taken over 2 months because the lack of good documentation targeted to newbies and the overall lack of support in this forum (SOME people have been very helpful for some parts). So i'm posting this so maybe i can help one person who is struggling."

I'm not just a newbie to ZenCart, I'm a newbie to shopping carts completely. I haven't even decided which one to use yet, and I need to decide two weeks ago! Since I only know a very tiny bit of coding, just enough to find and fix little things; your detailed explanation is VERY helpful and illuminating. With all that you've been through getting this MultiSite module to work for you, what made you stick with it, and ZenCart, with the many other carts that are available? Which others did you try, and why didn't you use them instead?

Thanks again VERY much!

TopWebNames

I've tried Yahoo Stores, Sunshop, OSCommerce, and every Wordpress Shopping cart out there and for my taste they all had way too many missing parts or flaws. I know there are more expensive ones out there that probably do almost everything i need but for the price (free) Zen Cart is not too hard to manage or modify and there are a lot of users and programmers who know it. Also many shopping carts are 'encoded' so you can't modify them very easily to what you want.

4 Apr 2013, 4:39 AM
#1698
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

PearceStephens:

Hi, I am successfully running Multi Site module on my shopping cart. It is a great module however, I would prefer one day to get it working on sub directories and use under one SSL certificate, as of currently it is using sub domains.

http://www.shopping.franktonmodels.co.nz/

my sites are all using add-on domains and all using ONE SSL for all the sites.

4 Apr 2013, 4:39 AM
#1699
lidlchris avatar

lidlchris

Zen Follower

Join Date:
Feb 2013
Posts:
345
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Design75:

I don't think this feature was ever really worked out. the complete code is not in the module, only the preparation for the pull down. Maybe if I have time I will take a look at it to complete the code

anything further on this??

4 Apr 2013, 6:37 AM
#1700
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: MultiSite Module Support Thread

lidlchris:

anything further on this??

No sorry, I have about a 6 paid projects to finish, so there is not much time to do other things.
Besides that I am working an a new multisite module, which will be easier to manage, and it uses the database rather than the comment system that is used now. Any eta on this project is unknown