Is there anyway to install zencart on different servers? in the sense that the admin/ folder resides in domaina.com and other files and folders in domainb.com.
I will appreciate it if anyone can show me the possibility of this.
Thanks in advance.
Is there anyway to install zencart on different servers? in the sense that the admin/ folder resides in domaina.com and other files and folders in domainb.com.
I will appreciate it if anyone can show me the possibility of this.
Thanks in advance.
Interesting concept -If your don't mind, why do that?
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
I have to shops and I want to update both shops from the same admin if that make sense.
Thanks.
Do they have the same database tho?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Sounds like you may want the Multisite Module (look in Downloads).
@ yellow1912 , yes they do have the same database.
@ gjh42, thanks for the tip, I've downloaded the mod, tho I've not yet fully implemeted it yet.
What I really want to know is the possibility of zencart admin/ folder, to reside in another server. This is an example of what I mean:
I have copied all non zencart admin files and folders to domaina.com and copied the zencart admin/ folder to domainb.com.
Now running the zc_install/ on daomaina.com, I get the following error.
Remember that if the zencart admin/ folder had resided in domaina.com the installation would have continued./admin/includes/configure.php does not exist more info...
So now what do I do from here?
Thanks.
I have not tried it yet, but there is one bad thing about ZC that may actually help in this case: most if not all functions in the catalog and in admin are not related. In fact, you can remove the admin folder from your site and that would not even have any affect on the catalog side.
Does that give u some idea ;) ?
Install ZC completely on 1 site, then move the admin folder to the other server. Edit admin/includes/configure.php to reflect the new changes.
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
@ yellow1912 thanks for the info, still curious tho! after moving the zencart admin/ folder to the other server, what is the possibility of updating the content of the non zencart admin/ server from the residing one?Install ZC completely on 1 site, then move the admin folder to the other server. Edit admin/includes/configure.php to reflect the new changes.
I'm I making any sense?
First, I am assuming that you simply want to have admin folder on 1 server, and 1 catalog on the other server.
Now, both of them must share the SAME database, which can be stored on either one of the servers. So changes made on one will affect the other. Make sense?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Nice one... admin/ folder now moved to the other domain. Now editingDo you know how I can go about this;"/admin/includes/config.php"
Path Configuration
The above need to be edited init?, what will the path be?define 'DIR_WS_ADMIN', '/cms/admin/');
define('DIR_WS_ADMIN', '/cms/admin/');
define('DIR_WS_CATALOG', '/cms/');
define('DIR_WS_HTTPS_ADMIN', '/cms/admin/');
define('DIR_WS_HTTPS_CATALOG', '/cms/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');
I'm stuck...