This is the case, I think. We are looking at a dedicated SSL - will this solve the problem?Originally Posted by Vger
Regards,
Patrick
This is the case, I think. We are looking at a dedicated SSL - will this solve the problem?Originally Posted by Vger
Regards,
Patrick
If you're staying with that host, then get them to guarantee that it will before spending any money. If they can't, then ... start shopping on our "Certified Hosts" page (see link at the top of this site).Originally Posted by pcmt
It's not hard to set up Plesk to share httpdocs and httpsdocs ... it's a little checkbox when creating a customer account/domain, but usually only the hosting company has access to it.
I don't recall whether it can be changed once the account is created.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Thanks for the reply.
It's a long story, but the host is a friend who "inherited" the server. We're both feeling our way with this.
Regards,
Patrick
Fair enough. That said, perhaps you may want to explore that little checkbox ... it'll save you a ton of headaches.Originally Posted by pcmt
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Plesk - httpdocs and httpsdocs
------------------------------
You need to create a vhost_ssl.conf file in
/home/httpd/vhosts/domainname.com/conf/
with directives pointing to httpdocs rather than httpsdocs
If your host is using Plesk, then you need to add a vhost_ssl.conf file to the conf directory of the site and point any reference to httpsdocs to httpdocs
e.g.
DocumentRoot /home/httpd/vhosts/site.com/httpdocs
<Directory /home/httpd/vhosts/site.com/httpdocs>
<IfModule mod_perl.c>
<Files ~ (\.pl)>
SetHandler perl-script
PerlHandler ModPerl::Registry
Options ExecCGI
allow from all
PerlSendHeader On
</Files>
</IfModule>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_value open_basedir "/home/httpd/vhosts/site.com/httpdocs:/tmp"
</IfModule>
SSLRequireSSL
Options +includes +ExecCGI
</Directory>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_value open_basedir "/home/httpd/vhosts/site.com/httpdocs:/tmp"
</IfModule>
Vger
The check box is located under Setup in the domain control panel. The admin or client of the domain should be able to turn that on and off for the customer.
Bookmarks