Re: MultiSite Module Support Forum
Quote:
Originally Posted by
joehamir
Is MultiSite Module work in localhost?..
Is it possible to do in one domain name..
example store1 is in
www.store1.com
then store2 is inside folder under store1..
www.store1.com/store2
thanks..
For the Multi site you use only one file set. Each store will use a different template folder. If you want to use a subfolder in the name for the second shop, I think it is the easiest way to use a redirect for that.
Re: MultiSite Module Support Forum
i test multisite in localhost..
store1 is now working in my local..
i can now set categories to store1 using multisite tools..
i want to create store2 inside store1..
this will be localhost/store1/store2..
how to achieve this?
do i need to install zencart to store2?
please help.. im running out of time..
thanks and sorry for my bad english..
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
joehamir
i test multisite in localhost..
store1 is now working in my local..
i can now set categories to store1 using multisite tools..
i want to create store2 inside store1..
this will be localhost/store1/store2..
how to achieve this?
do i need to install zencart to store2?
please help.. im running out of time..
thanks and sorry for my bad english..
You just need to create a new config file with the right data, like the readme explains
Re: MultiSite Module Support Forum
do i need to install zencart to store2 folder?
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
joehamir
do i need to install zencart to store2 folder?
NO you use one fileset and on database. The rest is done through the confg files of the sites
in the folder "includes\config_sites\".
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
Design75
NO you use one fileset and on database. The rest is done through the confg files of the sites
in the folder "includes\config_sites\".
i do this in localhost only..
store1 is in localhost/store1
then store2 is in localhost/store1/store2..
i include site_switch in the config of the store2..
like this "include_once('../includes/config_sites/sites_switch.php');"
but this is the display "the domain localhost does not exist."
i create localhost_config.php inside config_sites folder under store1 but it just working in store1..
how can i run it in store2.?
Help Please.. Thanks..
PS: is multisite work in same area? like localhost? like my project..
store1 is in localhost/store1
then store2 is inside store1.. localhost/store1/store2
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
Design75
NO you use one fileset and on database. The rest is done through the confg files of the sites
in the folder "includes\config_sites\".
can you provide me an example sir?
this is my code in localhost_config.php
$template_dir = "store1";
define('SITE_NAME','store1');
what will i do for store2?
do i need to add this code in the bottom?
$template_dir = "store2";
define('SITE_NAME','store2');
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
joehamir
i do this in localhost only..
store1 is in localhost/store1
then store2 is in localhost/store1/store2..
i include site_switch in the config of the store2..
like this "include_once('../includes/config_sites/sites_switch.php');"
but this is the display "the domain localhost does not exist."
i create localhost_config.php inside config_sites folder under store1 but it just working in store1..
how can i run it in store2.?
Help Please.. Thanks..
PS: is multisite work in same area? like localhost? like my project..
store1 is in localhost/store1
then store2 is inside store1.. localhost/store1/store2
I does work in localhost, although it has been a long time since i used it, and do not remember exactly how I did that.
I think you should make a config file named : store2_config.php
PHP Code:
<?php
$template_dir = "store2";
define('SITE_NAME','store2');
define('HTTP_SERVER', 'http://localhost/store1/store2');
?>
Re: MultiSite Module Support Forum
Quote:
Originally Posted by
Design75
I does work in localhost, although it has been a long time since i used it, and do not remember exactly how I did that.
I think you should make a config file named : store2_config.php
PHP Code:
<?php
$template_dir = "store2";
define('SITE_NAME','store2');
define('HTTP_SERVER', 'http://localhost/store1/store2');
?>
I really dont understand it.. :(
all i want is just run store2 inside store1.. :(
in store1 i have store1template and store2template..
but i dont undertand how store2template will display in http://localhost/store1/store2
Re: MultiSite Module Support Forum
Design75
Thank you for the followup you did... we have one last hurdle to completing. please PM or email me. It would be great to have your assistance as soon as possible.