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

MultiSite Module Support Thread

Views: 580,149

Results 841 to 860 of 2,247
21 Aug 2009, 03:49
#841
aerografiks avatar

aerografiks

New Zenner

Join Date:
Feb 2009
Posts:
12
Plugin Contributions:
0

MultiSite Module Support Thread

Is there anyone out here that could possibly help me out with this mod? I have 3 different stores running off of one install, with 3 seperate templates, but i'm having a couple of problems. I need all stores to have a centralized cart, so no matter what store u'r in as soon as you add something to the cart a session begins and you can surf through the other stores while still being in the same session. Any help out here with these problems??:dontgetit

26 Aug 2009, 04:56
#842
ajaysingh avatar

ajaysingh

New Zenner

Join Date:
Jul 2009
Posts:
18
Plugin Contributions:
0

Re: MultiSite Module Support Thread

I am working on a drugs(medicines) site using zencart. Now my clients wants a this multi site module for his shop. I've installed this module this is working on my local machine. Here I am little confused.
I've some queries regarding this module -

  1. All sites will use a same products detail or i can set different products for different site(shops) ?
  2. Can I set different layout for different site.
  3. should I've to maintain different site id in all tables ?
  4. Can a registered user can login on all the other partner sites ?
  5. how orders will maintain ?
  6. do I've make copy of my site folder for different site ? means suppose I've three sites. Then should I've to copy the same project folder with different site name ?
30 Aug 2009, 21:13
#843
kaddie avatar

kaddie

New Zenner

Join Date:
Feb 2009
Location:
In the Woods of Texas
Posts:
63
Plugin Contributions:
0

Re: MultiSite Module Support Thread

I am copying and pasting the instruction replacements into each page requested. However, I am stuck at the featured.php page because a line is different.

Per Instructions:
####################################################

FILE includes/modules/sideboxes/featured.php

####################################################
Line 25:
$random_featured_product = zen_random_select($random_featured_products_query);
Replace by:
$random_featured_product = zen_random_select(cat_filter($random_featured_products_query));

My Featured.php Page:

In my includes/modules/sideboxes/featured.php it has:
//$random_featured_product = zen_random_select($random_featured_products_query);

$random_featured_product = $db->ExecuteRandomMulti($random_featured_products_query, MAX_RANDOM_SELECT_FEATURED_PRODUCTS);

The original line is quoted out from I suppose ZenCart, because I have never changed this featured.php page. So how do I copy over the line of code? Should I change it to this:

$random_featured_product = $db->ExecuteRandomMulti(cat_filter($random_featured_products_query));

Thanks for help in advance.
Kaddie

31 Aug 2009, 09:56
#844
karimm avatar

karimm

New Zenner

Join Date:
Nov 2008
Posts:
53
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Hello there,

I don't see the Known Bugs with v1.3.8 been put in to the init_add_crumbs.php file.

you can read about it here.

http://www.zen-cart.com/forum/showpost.php?p=498927&postcount=12

also in the overrides file there is a piece of code:

categories_id!='".CATEGORIES_ROOT."'

Shouldn't it be just categories_id='".CATEGORIES_ROOT."'

This is the code in the /includes/init_includes/overrides/init_add_crumbs.php file:

// might need isset($_GET['cPath']) later ... right now need $cPath or breaks breadcrumb from sidebox etc.
if (isset($cPath_array) && isset($cPath)) {
for ($i=0, $n=sizeof($cPath_array); $i<$n; $i++) {
$categories_query = "select categories_name
from " . TABLE_CATEGORIES_DESCRIPTION . "
where categories_id = '" . (int)$cPath_array[$i] . "'
and categories_id!='".CATEGORIES_ROOT."'
and language_id = '" . (int)$_SESSION['languages_id'] . "'";

Thanks for your suggestions !

02 Sep 2009, 18:05
#845
dannyd avatar

dannyd

Zen Follower

Join Date:
Apr 2005
Posts:
191
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Forgive my ignorance, but after I have this installed this module could I publish a product to multiple sites by adding it once through the admin ?

If I have multiple zen cart stores already running would the admin from the main store be able to pull the products into the main store admin ?

04 Sep 2009, 12:53
#846
kitcorsa avatar

kitcorsa

Totally Zenned

Join Date:
Feb 2007
Posts:
1,724
Plugin Contributions:
0

Re: MultiSite Module Support Thread

hello i hope you can help....

i have 2 sites.. both run the same products.. one zencart is an online sales shop under one name and the other is a zencart store but set to showroom so no sales through this site but displays all the same items.

my problem is that my online price is cheaper than my instore price so both site need different prices. is this possible with this mod to run these site though the same admin page??

15 Sep 2009, 12:08
#847
kitcorsa avatar

kitcorsa

Totally Zenned

Join Date:
Feb 2007
Posts:
1,724
Plugin Contributions:
0

Re: MultiSite Module Support Thread

anyone??

16 Sep 2009, 06:01
#848
bparker avatar

bparker

Zen Follower

Join Date:
Oct 2008
Location:
Rochester, NY
Posts:
232
Plugin Contributions:
0

Re: MultiSite Module Support Thread

I need to allow certain admins access to only certain categories. The best way to do this, I suppose, is to use this module. I want each admin to manage only the items in the category, and no others. I want to create many stores on the same site. Can I do this with this module?

Thanks,
BP

17 Sep 2009, 15:35
#849
buffaloweb avatar

buffaloweb

New Zenner

Join Date:
Sep 2009
Posts:
2
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Ok, this is my first experience with Zen Cart after years of osCommerce. I've installed v1.37 + Multisites from scratch and am still getting this error. I've read every single post in this forum related to this issue (1054 Unknown column 'CATEGORIES_ROOT' in 'where clause') and have followed the install instructions exactly.

Can someone please give a definitive answer as to why this is not working?

I have:

in /public_html/includes/config_sites/www.mysite.org_config.php

define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
$template_dir = "classic";
define('SITE_NAME','MySite');
define('CATEGORIES_ROOT','1');

in /public_html/includes/configure.php

include_once('includes/config_sites/sites_switch.php');

According to instructions and every post I have read on the subject, this is all that should be required to resolve the issue. But the only way I can get past this so far is to alter includes/modules/meta_tags.php from:

cd where c.parent_id = ".CATEGORIES_ROOT." ....

to

cd where c.parent_id = 1 ....

So it seems like the file meta_tags is not picking up the variable "1" from includes/config_sites/www.mysite.org_config.php. How can that be?

17 Sep 2009, 18:41
#850
buffaloweb avatar

buffaloweb

New Zenner

Join Date:
Sep 2009
Posts:
2
Plugin Contributions:
0

Re: MultiSite Module Support Thread

For the record, looks like i misunderstood proper location of one of the config files from the instructions. I think the commentaries given in the instructions are a little hard to follow in places.

26 Sep 2009, 16:32
#851
fats1964 avatar

fats1964

New Zenner

Join Date:
Jan 2007
Posts:
34
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Is Gerome Romey still backing the multisite mod?

I have been waiting to try and do a multisite with more than 10 stores doing the same products.

Is there a set of instructions that are up to date?

Thanks

29 Sep 2009, 01:14
#852
kiddieshop avatar

kiddieshop

New Zenner

Join Date:
Dec 2008
Posts:
26
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Has anyone got this working on localhost using XAMPP apache.

I would like to test this before going live

30 Sep 2009, 20:37
#853
fats1964 avatar

fats1964

New Zenner

Join Date:
Jan 2007
Posts:
34
Plugin Contributions:
0

Re: MultiSite Module Support Thread

I am going to have a practise and crate a 3 in 1 site, ifI have a site called

www.products.com, do all other sites have to be a sub domain? or not

eg
www.forsale.c om or www.products.c om/shop 1 etc

obvioslyit looks better if all sites are independant looking

01 Oct 2009, 01:24
#854
nautis avatar

nautis

New Zenner

Join Date:
Sep 2006
Posts:
2
Plugin Contributions:
0

Re: MultiSite Module Support Thread

(Note: I have not fully tested this method.)
You should be able to get a local install working by editing your hosts file. (ex. c:\windows\system32\drivers\etc\hosts)

In the hosts file put something like this at the end:
127.0.0.1 site1.local
127.0.0.1 site2.local

(Or whatever URLs you would like to type in your address bar in place of site1.local/site2.local.)

Also, make sure your multisites config files are named accordingly. (ex. site1.local_config.php)

01 Oct 2009, 16:15
#855
toriapilar avatar

toriapilar

New Zenner

Join Date:
Dec 2006
Posts:
23
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Hello
has anyone managed to get this mod working recently on a shared server?

05 Oct 2009, 11:25
#856
fleischmann avatar

fleischmann

New Zenner

Join Date:
Sep 2009
Posts:
4
Plugin Contributions:
0

Re: MultiSite Module Support Thread

i have a problem:

1054 Unknown column 'CATEGORIES_ROOT' in 'where clause'
in:
[select cd.categories_name from demo_categories c, demo_categories_description cd where cd.categories_description LIKE '%-SITE_NAME-%' AND cd.language_id=39 AND c.parent_id = CATEGORIES_ROOT and c.categories_id = cd.categories_id and cd.language_id='39' and c.categories_status=1]

i have make this:
http://www.zen-cart.com/forum/showthread.php?t=63997&highlight=1054+Unknown+column+%27CATEGORIES_ROOT%27+%27where+clause%27+multisite&page=26

but the problem not wasnt risolved

can anywhone help me?

23 Oct 2009, 20:22
#857
notobella avatar

notobella

New Zenner

Join Date:
Mar 2009
Posts:
14
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Hi There,

I’ve updated and installed everything from your multisite module and I’m getting this error:

the domain https://www.mystorenamehere.com does not exist.

Any ideas??

Thank you!!!

23 Oct 2009, 22:16
#858
notobella avatar

notobella

New Zenner

Join Date:
Mar 2009
Posts:
14
Plugin Contributions:
0

Re: MultiSite Module Support Thread

Okay. Got the domain working again but now I'm not seeing my store. I need some serious help :(

Thanks!

01 Nov 2009, 20:57
#859
inkey avatar

inkey

New Zenner

Join Date:
Jun 2009
Posts:
3
Plugin Contributions:
0

Re: MultiSite Module Support Thread

I've spent 7 hours reading this thread but did not find my answer so please answer my simple question.

I have setup and installed ZC with MultiSite on domainA.com which works fine. The config_sites folder contains the info for domainB.com.

What do I do on domainB.com to have my products listed there?
Thank you very much for your help!

01 Nov 2009, 22:08
#860
inkey avatar

inkey

New Zenner

Join Date:
Jun 2009
Posts:
3
Plugin Contributions:
0

Re: MultiSite Module Support Thread

After installing the MultiSite I now get an error at the "Google XML Sitemap Admin" stating that the domain does not exist.