Page 7 of 7 FirstFirst ... 567
Results 61 to 67 of 67
  1. #61
    Join Date
    Dec 2006
    Posts
    79
    Plugin Contributions
    0

    Default Re: Multi-Site Module...

    Hi,

    I have two web addresses that I would like to use the same cart for i.e. I want the front pages to be separate but the products and stock etc are from the same admin source.....is this what this module can do for me?

    Cheers,
    Neil

  2. #62
    Join Date
    Sep 2005
    Location
    Malmö, Sweden
    Posts
    120
    Plugin Contributions
    4

    Default Re: Multi-Site Module...

    Hi neilg!

    This is the mod for you! It does just that: Different store fronts, one admin and the ability to share product catalog.

    Good Luck!

  3. #63
    Join Date
    Dec 2006
    Posts
    79
    Plugin Contributions
    0

    Default Re: Multi-Site Module...

    Cool...thanks Beez!

  4. #64
    Join Date
    Dec 2006
    Posts
    79
    Plugin Contributions
    0

    Default Re: Multi-Site Module...

    Actually...I do have another question. I have a lot of mods in my store and run a different template.....do you think this could have any impact on installing this module??

    Cheers,
    Neil

  5. #65
    Join Date
    Jul 2007
    Location
    Minneapolis, MN, United States
    Posts
    71
    Plugin Contributions
    0

    Default Re: Multi-Site Module...

    It shouldnt In some situations you may need to modify a file or two to do the proper category filtering and such but I have had no compatibility issues with multisite
    I dont care what it says next to my name. I've been Zenned!

  6. #66
    Join Date
    Apr 2005
    Location
    Louny, Czech Republic
    Posts
    51
    Plugin Contributions
    1

    Default Re: Multi-Site Module...

    Hi Breeze,

    I have question about linked products. Your code from post http://www.zen-cart.com/forum/showpo...4&postcount=58 not working.
    You have
    Code:
    if ($str_pos_p2c!==false) {
    but from post by Lenny is

    Code:
    if ($str_pos_p2c!=true) {
    and without error.

    Is good this in file catalog/includes/functions/extra_functions/cat_filter.php?

    around line 15 replace
    Code:
    $str_pos_products = strpos($sql_lower,TABLE_PRODUCTS . ' p');
    with
    Code:
    $str_pos_products = strpos($sql_lower,TABLE_PRODUCTS . ' p');
    $str_pos_p2c = strpos($sql_lower,TABLE_PRODUCTS_TO_CATEGORIES . ' p2c');
    around line 91 replace
    Code:
    $sql = substr($sql,0,$add_pos).
    				" INNER JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd
    	  			ON (p.master_categories_id = cd.categories_id
    	  			AND cd.language_id=".$_SESSION['languages_id']."
    	  			AND cd.categories_description LIKE '%-".SITE_NAME."-%') ".
    				substr($sql,$add_pos);
    with:
    Code:
    if ($str_pos_p2c!=true) {
    
             $sql = substr($sql,0,$add_pos).
                                   " INNER JOIN ".TABLE_PRODUCTS_TO_CATEGORIES." p2c ON (p2c.products_id=p.products_id)
                                   INNER JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd
                                   ON (p2c.categories_id = cd.categories_id
                                   AND cd.language_id=".$_SESSION['languages_id']."
                                   AND cd.categories_description LIKE '%-".SITE_NAME."-%') ".
                                   substr($sql,$add_pos);
             } else {
             $sql = substr($sql,0,$add_pos).
                                   " INNER JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd
                                   ON (p.master_categories_id = cd.categories_id
                                   AND cd.language_id=".$_SESSION['languages_id']."
                                   AND cd.categories_description LIKE '%-".SITE_NAME."-%') ".
                                   substr($sql,$add_pos);  
             }
    !!!!! or with !!!!!
    Code:
    if ($str_pos_p2c!==false) {
    	        		$sql = substr($sql,0,$add_pos). 
    				" INNER JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd
    				ON (p2c.categories_id = cd.categories_id
    				AND cd.language_id=".$_SESSION['languages_id']."
    				AND cd.categories_description LIKE '%-".SITE_NAME."-%') ".
    				substr($sql,$add_pos);
    	 } else { 
    				$sql = substr($sql,0,$add_pos).
    				" INNER JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd
    				ON (p.master_categories_id = cd.categories_id
    				AND cd.language_id=".$_SESSION['languages_id']."
    				AND cd.categories_description LIKE '%-".SITE_NAME."-%') ".
    				substr($sql,$add_pos);
    	 }
    Work this patch?
    Last edited by ryska; 14 Jul 2008 at 08:54 PM.
    JardaR

  7. #67
    Join Date
    Jul 2008
    Location
    Early, TX
    Posts
    5
    Plugin Contributions
    0

    Default Re: Multi-Site Module...

    Quote Originally Posted by Gerome View Post
    This thread is related to this one:
    http://www.zen-cart.com/forum/showth...9&goto=newpost

    Test shops are running on these addresses:

    http://bigdepot.bigdepot.co.uk/
    http://pressit.bigdepot.co.uk/
    http://medea.bigdepot.co.uk/
    http://lightscribe.bigdepot.co.uk/
    http://inkrite.bigdepot.co.uk/
    http://infiniti.bigdepot.co.uk/
    http://scratchlessdisc.bigdepot.co.uk/



    All these shops are running from the same zen cart, there is a filter that only display some categories in some shops and not in other. medea.bigdepot.co.uk and bigdepot.bigdepot.co.uk have all the categories since they are "main websites..." the others only contain subproduct.

    These sites are still "test servers" so please so please don't buy things from there.

    An account created on a shop works on all the other shop. When you click on the link in Partner, it keep the same session when you go in a different site. It means, you can buy products from different website in the same cart.

    These are test shops as I'll write the Multi-Site Module shortly.

    PS: You can buy the product from the test shop on this site: http://www.medea.co.uk/buy/
    Hi Gerome,
    I have been lurking in the zen cart forums frantically searching to a solution to a problem when I ran across your post. Where do you stand on this project as of today?

    Warm Regards,
    Brent Thomas
    Thomasco Media
    Thomasco Media Blog

 

 
Page 7 of 7 FirstFirst ... 567

Similar Threads

  1. Best Place For Multi-Site module Support?
    By bcannon007 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 24 May 2012, 08:02 PM
  2. No domain found - using multi-site module
    By maperr55 in forum All Other Contributions/Addons
    Replies: 15
    Last Post: 13 Jun 2011, 04:31 PM
  3. Multi-Site Module
    By VASTMAN in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Apr 2009, 05:27 AM
  4. Multi Site Module
    By eaxpdt in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 1 Aug 2008, 10:56 PM
  5. Multi-Site Module Beta Release !
    By Gerome in forum All Other Contributions/Addons
    Replies: 26
    Last Post: 25 Apr 2007, 09:37 AM

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