Page 163 of 224 FirstFirst ... 63113153161162163164165173213 ... LastLast
Results 1,621 to 1,630 of 2237
  1. #1621
    Join Date
    Aug 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Thank Ya, i'll try to test it!

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

    Default Re: MultiSite Module Support Thread

    I finally found out why the ez-page filter wasn't working. It turns out it was working just fine, as long as your language id in the database is 1. So if you delete the default (English) language from your ZC installation, and/or add a new language, and thus with a higher language id the filter will not show the pages.
    I didn't know there was a language id in the table ezpages, and discovered it by accident after eliminating all the code differences between previous versions of ZC. The strange thing was that in my new "clean" multisite testshop the filter kept working in all ZC versions. Only after adding a second language, I saw that it didn't work for the new language. The language id in the table stays at 1 and is I think not used by default, other than that it is present in the ezpage table

    Now the search starts for the best solution.
    • the first and easiest would be to deleted the language sensitivity (not my favourite)
    • the second is to integrate the ez-page filter module in to the ez-page multilingual module. (currently working on this one)

  3. #1623
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,535
    Plugin Contributions
    9

    Default Re: MultiSite Module Support Thread

    Hello,

    I have worked with this module before but I'm having a weird issue and I see it happening to anyone else (at least in few searches).

    I have the module working but I'm having 2 issues, 1 is very little and one big. Let's start with the easy one:
    1-I uploaded the same template with all the correspondent files with just changing the name, so I can have the module running and then take care of design. But the 2nd site is showing some different things like hover menu and header issues, all the files are the same, so I'm not sure why is that.

    2-The major issue is that the checkout can't be done, neither login (SSL pages basically). Customer has a wildcard ssl. Here are my config settings:

    MAIN SITE:
    Code:
    www.affordableaquatic.com_config.php / affordableaquatic.com_config.php
    PHP Code:
    <?php
        define
    ('DIR_WS_CATALOG''/');
        
    define('DIR_WS_HTTPS_CATALOG''/');
        
    $template_dir "aquatic";
        
    define('SITE_NAME','Affordable Aquatic');
    ?>
    SECONDARY SITE:
    Code:
    ponds.affordableaquatic.com_config.php /
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://ponds.affordableaquatic.com');
    ?>
    Code:
    www.affordablepondsupply.com_config.php / affordablepondsupply.com_config.php
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://www.affordableaquatic.com');
    define('HTTPS_SERVER''https://ponds.affordableaquatic.com');
    ?>
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://affordableaquatic.com');
    define('HTTPS_SERVER''https://ponds.affordableaquatic.com');
    ?>
    I've tried several configuration ways, but the most successful are these.

    I have the site in maintenance mode to avoid customers to try to make an order. Please give IP so I can add you if you need to take a look.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

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

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by ideasgirl View Post
    Hello,

    I have worked with this module before but I'm having a weird issue and I see it happening to anyone else (at least in few searches).

    I have the module working but I'm having 2 issues, 1 is very little and one big. Let's start with the easy one:
    1-I uploaded the same template with all the correspondent files with just changing the name, so I can have the module running and then take care of design. But the 2nd site is showing some different things like hover menu and header issues, all the files are the same, so I'm not sure why is that.

    2-The major issue is that the checkout can't be done, neither login (SSL pages basically). Customer has a wildcard ssl. Here are my config settings:

    MAIN SITE:
    Code:
    www.affordableaquatic.com_config.php / affordableaquatic.com_config.php
    PHP Code:
    <?php
        define
    ('DIR_WS_CATALOG''/');
        
    define('DIR_WS_HTTPS_CATALOG''/');
        
    $template_dir "aquatic";
        
    define('SITE_NAME','Affordable Aquatic');
    ?>
    SECONDARY SITE:
    Code:
    ponds.affordableaquatic.com_config.php /
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://ponds.affordableaquatic.com');
    ?>
    Code:
    www.affordablepondsupply.com_config.php / affordablepondsupply.com_config.php
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://www.affordableaquatic.com');
    define('HTTPS_SERVER''https://ponds.affordableaquatic.com');
    ?>
    PHP Code:
    <?php
    $template_dir 
    "ponds";
    define('SITE_NAME','Affordable Pond Supply');
    define('HTTP_SERVER''http://affordableaquatic.com');
    define('HTTPS_SERVER''https://ponds.affordableaquatic.com');
    ?>
    I've tried several configuration ways, but the most successful are these.

    I have the site in maintenance mode to avoid customers to try to make an order. Please give IP so I can add you if you need to take a look.
    Looks like you solved it?, because I don't see any difference, and I tried a checkout (didn't create an account, did start the checkout). Both went fine in Firefox and IE.

  5. #1625
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,535
    Plugin Contributions
    9

    Default Re: MultiSite Module Support Thread

    Yes, I did...thanks (was a missing file).

    Now I'm having an issue with fec that I had before and solved it like a month ago, but don't remember how. It doesn't go to next page when customer creates account and/or try to login. On the secondary site works without flaw >>>sigh<<<.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

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

    Default Re: MultiSite Module Support Thread

    I am told previous link to github isn't working any more, so here is a new one. https://github.com/Zen4All/Zen-Cart-...ive/master.zip During the weekend I will submit to the download section after one last review of the files.

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

    Default Re: MultiSite Module Support Thread

    Just to inform that all the issues I posted are now solved. Thanks anyway.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  8. #1628
    Join Date
    Nov 2012
    Posts
    65
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    How can I modify the site links code so I can make other links around my website still hold the session id??

  9. #1629
    Join Date
    Nov 2012
    Posts
    65
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    I managed to successfully make images and other elements within the website work with the site_links php code. Its a little bit tricky to explain so if you are new to php like me and need some help, just flick me a message.

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

    Default Re: MultiSite Module Support Thread

    Version 1.0 has been submitted to the downloads section.
    What's New

    Version 1.0 - Release Date: 2013-01-21




    • Updated most files to contain the code of Zen Cart 1.5.1
    • Added the admin module registration for Zen Cart 1.5.x
    • The module is now multilingual on the admin side as well as the front-end
    • The site-link side-box has its own tpl file
    • Added SyntaxHightlighter 1.5.1 to multisite.php for easier reading and copying code

 

 

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