Page 182 of 224 FirstFirst ... 82132172180181182183184192 ... LastLast
Results 1,811 to 1,820 of 2240
  1. #1811
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by simon1066 View Post
    I think it might have something to do with .htaccess settings. I only say this because CEON URI Mapping, which I use, has the following code in that file:

    Code:
    ## BEGIN CEON URI MAPPING REWRITE RULE
    
    RewriteEngine On
    
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite any URIs for some, popular specific file format extensions,
    #   which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    #   which are not covered by main file extension condition above
    #   Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/my_admin [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors/ [NC]
    # Don't rewrite cgi-bin directory
    RewriteCond %{REQUEST_URI} !^/cgi\-bin/ [NC]
    # Don't rewrite css directory
    RewriteCond %{REQUEST_URI} !^/css/ [NC]
    # Don't rewrite logs directory
    RewriteCond %{REQUEST_URI} !^/logs/ [NC]
    # Don't rewrite OLD directory
    RewriteCond %{REQUEST_URI} !^/OLD/ [NC]
    # Don't rewrite sitemap directory
    RewriteCond %{REQUEST_URI} !^/sitemap/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* index.php [QSA,L]
    
    ## END CEON URI MAPPING REWRITE RULE
    Removing this gives a 'file not found' error (with the url displaying correctly), so perhaps Ultimate SEO needs something similar?

    That's as much as I know.
    Cant help here much either, because I do not use so called SEO modules

  2. #1812
    Join Date
    Dec 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Thanks trying to help! i really appreicate!

    the problem got solved after i re-installed the module. i think somehow i uploaded the wrong .htaccess file before!

  3. #1813
    Join Date
    Dec 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    anyone knows how to configure site1 only for french, site2 only for English???

  4. #1814
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    zc1.5.1 multisite

    Can anyone tell me where in admin do see the order is from? Is there a setting in admin that you enable this feature if it exist?

  5. #1815
    Join Date
    Feb 2013
    Posts
    345
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by twi View Post
    zc1.5.1 multisite

    Can anyone tell me where in admin do see the order is from? Is there a setting in admin that you enable this feature if it exist?
    if you find this out let me know please.. i've been told that part or the module doesn't work..

  6. #1816
    Join Date
    Dec 2008
    Location
    San Fran
    Posts
    382
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    I really, really want to install this mod... Problem is I'm still on 1.3.9h.

    Does anybody have any advice for me besides upgrading to 1.5.1?

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

    Default Re: MultiSite Module Support Thread

    This module was created originally for 1.3+ so you will find the proper version for you.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  8. #1818
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by lidlchris View Post
    if you find this out let me know please.. i've been told that part or the module doesn't work..
    That is because you need some custom coding to make it happen. There are very clear instructions for this in post #636 in this tread.

    Upon looking into the files mentioned there, I am able to find all, except for the last piece of code in the instructionse where you have to add the code. (highlighted code in excerpt #636 below) Can anyone point me in the right direction Here?

    see except below for post #636:


    I have a number of modifications I've made to the orders.php page. I attempted to pull just the code out that will give you the site markers. I believe I got it all, but make sure you backup orders.php before doing all this. Very simple. Just pulls the site name from the orders table and displays it in the HTML table in that page.

    Put his in a file called:
    <admin folder>/includes/languages/english/extra_definitions/order_site.php


    PHP Code:
    <?php
    define('TABLE_HEADING_SITE','Site');
    define('HEADING_TITLE_SITE','Site');
    ?>
    in [admin folder]/orders.php do the following:

    find

    PHP Code:
    $orders = $db->Execute("select orders_id from " . TABLE_ORDERS . "

    replace with:

    PHP Code:
    $orders = $db->Execute("select orders_id,order_site from " . TABLE_ORDERS . "

    find:

    PHP Code:
    <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_ORDERS_ID; ?></td>
    above it add:

    PHP Code:
    <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_SITE; ?></td>
    find:

    PHP Code:
    <td class="dataTableContent" align="right"><?php echo $show_difference . $orders->fields['orders_id']; ?></td>

    above it add:

    PHP Code:
    <td class="dataTableContent" align="left"><?php echo $orders->fields['order_site']; ?></td>
    Last edited by twi; 19 Aug 2013 at 04:43 PM.

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

    Default Re: MultiSite Module Support Thread

    Quote Originally Posted by twi View Post
    That is because you need some custom coding to make it happen. There are very clear instructions for this in post #636 in this tread.

    Upon looking into the files mentioned there, I am able to find all, except for the last piece of code in the instructionse where you have to add the code. (highlighted code in excerpt #636 below) Can anyone point me in the right direction Here?

    see except below for post #636:


    I have a number of modifications I've made to the orders.php page. I attempted to pull just the code out that will give you the site markers. I believe I got it all, but make sure you backup orders.php before doing all this. Very simple. Just pulls the site name from the orders table and displays it in the HTML table in that page.

    Put his in a file called:
    <admin folder>/includes/languages/english/extra_definitions/order_site.php


    PHP Code:
    <?php
    define('TABLE_HEADING_SITE','Site');
    define('HEADING_TITLE_SITE','Site');
    ?>
    in [admin folder]/orders.php do the following:

    find

    PHP Code:
    $orders = $db->Execute("select orders_id from " . TABLE_ORDERS . "

    replace with:

    PHP Code:
    $orders = $db->Execute("select orders_id,order_site from " . TABLE_ORDERS . "

    find:

    PHP Code:
    <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_ORDERS_ID; ?></td>
    above it add:

    PHP Code:
    <td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_SITE; ?></td>
    find:

    PHP Code:
    <td class="dataTableContent" align="right"><?php echo $show_difference . $orders->fields['orders_id']; ?></td>

    above it add:

    PHP Code:
    <td class="dataTableContent" align="left"><?php echo $orders->fields['order_site']; ?></td>
    I will add it to the next release (somewhere in September)

  10. #1820
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    255
    Plugin Contributions
    4

    Default Re: MultiSite Module Support Thread

    Some advice please...

    My business is a balloon shop. Although we do a number of different things, in starting off online I decided to focus on gift delivery which means I currently have zencart setup so that the shopping cart is limited to one item only so that I know a courier is always capable of delivery.

    In expanding to delivery of "décor" items I am looking at using this mod and ideally want -

    * Sharing the customer database
    * A different shopping cart for décor vs gift delivery
    * Gift delivery limited to one item only, décor more or less as much as you like
    * Same payment options
    * Different delivery pricing in décor vs gift delivery (currently using zipship module)
    * Décor items NOT available to gift delivery shopping cart, however gift delivery items would be desirable to sell on décor but not essential.
    * Ideally don't want a different domain/sub domain for the 2 shops - it is the same business and I'd like my front page to simply have "décor" and "gift delivery" as two links that get you going in the right direction.

    I guess my question is will this mod assist me in this or is this a bit outside its scope?

 

 

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