Results 1 to 10 of 10
  1. #1
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default SSL Problems & Question

    My SSL is fine and works elsewhere.

    Here is the site store.

    http://www.filmjackets.com/ecommerce/

    My ZenCart was just installed (v1.3.9h) and is in the very early stages and I want to get the payment information working. I have tested the PayPal link and it works fine since it takes you to a secure site anyways. I am hesitant about testing my credit card info since I am not seeing the https: in the address bar.

    I have made these changes:

    /includes/configure.php

    define('HTTP_SERVER', 'http://www.filmjackets.com');
    define('HTTPS_SERVER', 'https://www.filmjackets.com');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');

    The instructions say that to change the admin/includes/configure.php but my install does not have this directory, it only has zc_admin/includes/configure.php which I assume it the right file. It is set as this:

    define('HTTP_SERVER', 'http://www.filmjackets.com');
    define('HTTPS_SERVER', 'https://www.filmjackets.com');
    define('HTTP_CATALOG_SERVER', 'http://www.filmjackets.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.filmjackets.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'false');

    I have cleared all caches.

    So far I love ZenCart as it is easier and more intuitive than Joomla!Virtuemart, magento, shopsite, etc. But none of this will matter if the site is not secure.

    Thank you in advance for any help.
    Last edited by Rick5150; 30 Dec 2010 at 02:55 PM. Reason: Typo

  2. #2
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: SSL Problems & Question

    Your store is installed in the subdirectory http://www.filmjackets.com/ecommerce/

    Check your includes/configure.php and admin/includes/configure.php files for correctly applied changes.

    This thread may help as well

  3. #3
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: SSL Problems & Question

    Thanks Frank18,

    Does that mean that I should simply add the /ecommerce/ to the links? I tried that with no success as well...

    I thought I would not need this since it looked as if the catalog was defined later in the congigure.php

    define('DIR_WS_CATALOG', '/ecommerce/');
    define('DIR_WS_HTTPS_CATALOG', '/ecommerce/');

  4. #4
    Join Date
    Nov 2008
    Posts
    192
    Plugin Contributions
    0

    Default Re: SSL Problems & Question

    Just a shot in the dark, but what if you change this:

    define('DIR_WS_HTTPS_CATALOG', '/ecommerce/');

    and get rid of the leading slash:

    define('DIR_WS_HTTPS_CATALOG', 'ecommerce/');

    Any chance that makes a difference?

    Ed

  5. #5
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: SSL Problems & Question

    Thanks Ed,

    I had no luck with that either. I really appreciate the ideas though. I think I will really like ZenCart as it seems so intuitive for me, but no point having a store that is not secure.

  6. #6
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: SSL Problems & Question

    Quote Originally Posted by Rick5150 View Post
    Thanks Frank18,

    Does that mean that I should simply add the /ecommerce/ to the links? I tried that with no success as well...

    I thought I would not need this since it looked as if the catalog was defined later in the congigure.php

    define('DIR_WS_CATALOG', '/ecommerce/');
    define('DIR_WS_HTTPS_CATALOG', '/ecommerce/');
    You need to follow the instructions in the link I gave you step by step - read it carefully. Make sure you replace every instance of zencart with ecommerce

    Replace every instance of MY_ADMIN_NAME with the name you have given your admin folder.

    There are thousands of ZC stores working with a secured login / checkout area so there is no reason why yours should not be secure.

  7. #7
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: SSL Problems & Question

    Quote Originally Posted by frank18 View Post
    There are thousands of ZC stores working with a secured login / checkout area so there is no reason why yours should not be secure.
    That was exactly my point. I appreciate your help, but none of what was mentioned in that link was the issue for my particular situation.

    All of the files were automatically set during the installation using Bluehost. There were no instances of ZenCart that had to be changed nor were there any instances of MY_ADMIN_NAME that needed to be changed. I already had an SSL certificate.

    What happened in my case was that the permissions for the admin/configure.php file on the host server was marked as 444 so when I went to overwrite the file with the modified file using Mozilla, it would not happen. I did not realize that there were failed transfers in the bottom tab as I rarely use Mozilla. I changed the permissions from 444 to 644 and it went through perfectly.

    The only thing that needed to be changed in both of these files was to change:

    define('ENABLE_SSL_CATALOG', 'false')
    to
    define('ENABLE_SSL_CATALOG', 'true')

    Maybe this will help someone else though. Again, thank you for your help and especially for your quick responses. Part of what made me choose ZenCart was the forum and you have shown be that the hype is true.

    ShopSite, VirtueMart and Magento have help forums, but there are so many people who were having similar problems to what I was having that have remained unanswered for many months. Of course, this is not acceptable for any business.

  8. #8
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: SSL Problems & Question

    Quote Originally Posted by Rick5150 View Post
    ....

    The only thing that needed to be changed in both of these files was to change:

    define('ENABLE_SSL_CATALOG', 'false')
    to
    define('ENABLE_SSL_CATALOG', 'true')

    Maybe this will help someone else though. Again, thank you for your help and especially for your quick responses. Part of what made me choose ZenCart was the forum and you have shown be that the hype is true.

    ShopSite, VirtueMart and Magento have help forums, but there are so many people who were having similar problems to what I was having that have remained unanswered for many months. Of course, this is not acceptable for any business.
    Good to hear you got it fixed

    Happy New Year and thanks for the kind words - we are trying to help where we can ...

  9. #9
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: SSL Problems & Question

    Quote Originally Posted by Rick5150 View Post

    What happened in my case was that the permissions for the admin/configure.php file on the host server was marked as 444 so when I went to overwrite the file with the modified file using Mozilla, it would not happen. I did not realize that there were failed transfers in the bottom tab as I rarely use Mozilla. I changed the permissions from 444 to 644 and it went through perfectly.
    Sounds like I am chastising myself, but this is a "schoolboy error" (I am guilty of it myself - forgetting to give write permission back to a file before I call it up for editing...)
    20 years a Zencart User

  10. #10
    Join Date
    Sep 2008
    Location
    Toronto
    Posts
    35
    Plugin Contributions
    0

    Default Re: SSL Problems & Question

    i had the same problem, where i changed everything including the permission of the configure.php file to 666 and edited the file and then saved it and changed it back to 444, but my problem still exists, my login page doesn't go to https://

    need help badly.

    can anyone help?

 

 

Similar Threads

  1. v150 Question Re: POODLE SSL Vulnerability vs if I have no SSL certificate on my store
    By vandiermen in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 16 Oct 2014, 12:43 AM
  2. Shipping upgrades & SSL question
    By crosswithyou in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 19 Dec 2008, 07:18 AM
  3. Virtual Terminal & SSL clarification question
    By monkeytastic in forum General Questions
    Replies: 8
    Last Post: 22 Nov 2007, 12:50 PM
  4. IE & SSL Lock - Having Problems...Help!
    By mag72 in forum General Questions
    Replies: 3
    Last Post: 4 Oct 2006, 12:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg