Page 202 of 224 FirstFirst ... 102152192200201202203204212 ... LastLast
Results 2,011 to 2,020 of 2237
  1. #2011
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    251
    Plugin Contributions
    4

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by delia View Post
    yep, know but client wont'
    This may not be desirable but there is code or an option (I've seen it on another thread and used to use it myself) that will empty your shopping cart on logout or login. This would be one way of preventing customers from mixing your sites.

  2. #2012
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    will it work with zencart version 1.55b ?
    any reply will be highly appreciated thanks for your time.

  3. #2013
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    I am trying to multi site add on zencart version 1.55b getting some problems with following files it will disappears side boxes and template wont show the colors.

    includes/init_includes/overrides/init_templates.php
    includes/classes/category_tree.php

    includes/modules/bluemash_w/categories_tabs.php
    includes/modules/bluemash_w/featured_products.php
    includes/modules/bluemash_w/meta_tags.php
    includes/modules/bluemash_w/new_products.php
    includes/modules/bluemash_w/specials_index.php
    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    where bluemash_w is my template name
    looks like other files are ok only these above files have issue or may not compatible.
    any help will be highly appreciated thanks in advance.

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

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by NewPowerCord View Post
    will it work with zencart version 1.55b ?
    any reply will be highly appreciated thanks for your time.
    I have not tried it yet, but I see no reason why it would not. You may need to do some careful merging of files, since the supplied files are from Zen Cart v 1.5.1

  5. #2015
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    I am trying to multi site add on zencart version 1.55b getting some problems with following files it will disappears side boxes and template wont show the colors.

    includes/init_includes/overrides/init_templates.php
    includes/classes/category_tree.php

    includes/modules/bluemash_w/categories_tabs.php
    includes/modules/bluemash_w/featured_products.php
    includes/modules/bluemash_w/meta_tags.php
    includes/modules/bluemash_w/new_products.php
    includes/modules/bluemash_w/specials_index.php
    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    where bluemash_w is my template name
    looks like other files are ok only these above files have issue.
    any help will be highly appreciated thanks in advance.

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

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by NewPowerCord View Post
    I am trying to multi site add on zencart version 1.55b getting some problems with following files it will disappears side boxes and template wont show the colors.

    includes/init_includes/overrides/init_templates.php
    includes/classes/category_tree.php

    includes/modules/bluemash_w/categories_tabs.php
    includes/modules/bluemash_w/featured_products.php
    includes/modules/bluemash_w/meta_tags.php
    includes/modules/bluemash_w/new_products.php
    includes/modules/bluemash_w/specials_index.php
    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    includes/templates/bluemash_w/sideboxes/tpl_categories.php

    where bluemash_w is my template name
    looks like other files are ok only these above files have issue.
    any help will be highly appreciated thanks in advance.
    It is hard to tell what went wrong, without access to your files, but I suspect you did not merge the files the right way. The file you mentioned have not changed much since 1.5.1.

  7. #2017
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    hi I just replaced these files did not merge at all can you tell me what are the modifications you done in these files so I will open same files from v1.55b and modify them manually I believe that can help lot thanks for your time.

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

    Default Re: MultiSite Module Support Thread

    All changes should be marked with comments like '// bof Multi site' and '// eof Multi site'
    Quote Originally Posted by NewPowerCord View Post
    hi I just replaced these files did not merge at all can you tell me what are the modifications you done in these files so I will open same files from v1.55b and modify them manually I believe that can help lot thanks for your time.

  9. #2019
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    looks to me some thing wrong with comments can you have look it is from
    includes/init_includes/overrides/init_templates.php


    /*
    * Determine the active template name
    */
    /* bof Multi site
    $template_dir = "";
    $sql = "select template_dir
    from " . TABLE_TEMPLATE_SELECT . "
    where template_language = 0";
    $template_query = $db->Execute($sql);
    $template_dir = $template_query->fields['template_dir'];

    $sql = "select template_dir
    from " . TABLE_TEMPLATE_SELECT . "
    where template_language = '" . $_SESSION['languages_id'] . "'";
    $template_query = $db->Execute($sql);
    if ($template_query->RecordCount() > 0) {
    $template_dir = $template_query->fields['template_dir'];
    }
    eof Multi site */

    /**
    * The actual template directory to use
    */

  10. #2020
    Join Date
    Dec 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    hi it is from this file and I believe some thing wrong with comments can you see carefully and guide me thanks
    includes/init_includes/overrides/init_templates.php

    /*
    * Determine the active template name
    */
    /* bof Multi site
    $template_dir = "";
    $sql = "select template_dir
    from " . TABLE_TEMPLATE_SELECT . "
    where template_language = 0";
    $template_query = $db->Execute($sql);
    $template_dir = $template_query->fields['template_dir'];

    $sql = "select template_dir
    from " . TABLE_TEMPLATE_SELECT . "
    where template_language = '" . $_SESSION['languages_id'] . "'";
    $template_query = $db->Execute($sql);
    if ($template_query->RecordCount() > 0) {
    $template_dir = $template_query->fields['template_dir'];
    }
    eof Multi site */

    /**
    * The actual template directory to use
    */

 

 

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