Re: MultiSite Module Support Thread
Quote:
Originally Posted by
simon1066
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
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!
Re: MultiSite Module Support Thread
anyone knows how to configure site1 only for french, site2 only for English???
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?
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
twi
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..
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?
Re: MultiSite Module Support Thread
This module was created originally for 1.3+ so you will find the proper version for you.
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
lidlchris
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>
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
twi
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)
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?