Re: MultiSite Module Support Thread
Thanks for the reply.
this is my www.shipping.actionforms.ca_config.php
<?php
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/shipping/');
$template_dir = "shipping_template";
define('SITE_NAME','ship');
?>
this works to a degree. It goes to the right page but with warning about the SSL certificate.
https://www.shipping.actionforms.ca/...ain_page=login
i have tried
define('DIR_WS_HTTPS_CATALOG', 'www.shipping.actionforms.ca/');
and
define('DIR_WS_HTTPS_CATALOG', '/www.shipping.actionforms.ca/');
but that just makes the link to an SSL page
https://www.shipping.actionforms.caw...ain_page=login
or
https://www.shipping.actionforms.ca/...ain_page=login
I can't see how to get around it.
M
Re: MultiSite Module Support Thread
You need to put this in your file
define('HTTP_SERVER', 'http://www.shipping.actionforms.com');
define('HTTPS_SERVER', 'https://www.shipping.actionforms.com');
Again it will only work if you have an ssl certificate specifically for that domain. Otherwise change the domain to match your ssl
Re: MultiSite Module Support Thread
Sorry to be a bit thick, but what would i use in the www.shipping.actionforms.ca_config.php
We don't have a seperate SSL.
Thnx
Re: MultiSite Module Support Thread
You have to use www.actionforms.ca or what ever your ssl is for. which is unfortunate because if someone is at shipping.actionforms and go to an ssl page then they won't be sent back they will then be at www.actionforms.com. I suggest a wildcard ssl if its in your budget
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
KThompson
You have to use
www.actionforms.ca or what ever your ssl is for. which is unfortunate because if someone is at shipping.actionforms and go to an ssl page then they won't be sent back they will then be at
www.actionforms.com. I suggest a wildcard ssl if its in your budget
Unfortunately a wildcard SSL isn't in our budget just now. These are only set up as experimental to see if these products will sell along with our regular product lines.
Is there a way to set this mod up as a folder, rather than a sub domain (ie actionforms.ca/shipping instead of shipping.actionforms.ca). Mark did an awesome job setting it up as I asked, under a subdomain, however I hadn't thought through the entire SSL problem since it only applies to www.actionforms.ca The mod instructions said subdomain, and that's what I went ahead with.
Any ideas would be appreciated since I am going to need to do this a few more times.
Re: MultiSite Module Support Thread
Has anyone tried this module with v1.3.8 yet?
Re: MultiSite Module Support Thread
Quote:
Has anyone tried this module with v1.3.8 yet?
Yes, it works fine.
Re: MultiSite Module Support Thread
Quote:
Originally Posted by
Gerome
At the end of includes/languages/english/meta_tags.php, you will find this line:
Code:
define('FAVICON','favicon.ico');
You will certainly have to overide this file for your template like that:
In the file includes/languages/english/your_template/meta_tags.php
Code:
define('FAVICON','your_template.ico');
You can do that for every template you have since you are supose to use different template for each site...
I have an easier solution:
In the file includes/languages/english/meta_tags.php (and your other languages)
change
PHP Code:
define('FAVICON','favicon.ico');
to
PHP Code:
define('FAVICON', STORE_FAVICON);
and in your sites config file(s) add:
PHP Code:
define('STORE_FAVICON', 'this_stores_iconfile.ico');
Saves you a lot of time of creating language-template folders and duplicate meta_tags.php files
Grtz Lenny