Thread: SSL Problems

Results 1 to 10 of 10
  1. #1
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default SSL Problems

    Hello All,
    I'm having a bit of a problem with my SSL, using this tutorial
    https://www.zen-cart.com/tutorials/index.php?article=14
    to make changes to the files
    and this post
    http://www.zen-cart.com/forum/showthread.php?t=143707
    to try and switch the permissions but the checkout will not direct to "https" for the checkout. I'm very new to the whole SSL process and I have read so many things today that my head is spinning. This is the last thing I need to fix so that I can get my store back online.
    Someone, please help me. Thanks! - Jay

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: SSL Problems

    I'm having a bit of a problem with my SSL...
    but the checkout will not direct to "https"
    Where is your site?
    Paste the top half of your /includes/configure.php file here
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default Re: SSL Problems

    Quote Originally Posted by kobra View Post
    Where is your site?
    Paste the top half of your /includes/configure.php file here
    Hey Kobra, Sorry, I'm so burnt I should have included that:

    / Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');

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


    admin config:
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    define('HTTP_CATALOG_SERVER', 'http://'.$_SERVER['HTTP_HOST']);
    define('HTTPS_CATALOG_SERVER', 'https://'.$_SERVER['HTTP_HOST']);

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

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: SSL Problems

    It does not look like you have your certificate installed correctly
    as adding htpps to your domain times out & no lock

    https ://www.shopshogun.com

    See the highlights I added and remove/correct
    Code:
    / Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    
    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');
    
    
    admin config:
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    define('HTTP_CATALOG_SERVER', 'http://'.$_SERVER['HTTP_HOST']);
    define('HTTPS_CATALOG_SERVER', 'https://'.$_SERVER['HTTP_HOST']);
    
    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'true');
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default Re: SSL Problems

    Quote Originally Posted by kobra View Post
    Where is your site?
    Paste the top half of your /includes/configure.php file here
    Quote Originally Posted by kobra View Post
    It does not look like you have your certificate installed correctly
    as adding htpps to your domain times out & no lock

    https ://www.shopshogun.com

    See the highlights I added and remove/correct
    Code:
    / Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    
    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');
    
    
    admin config:
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    define('HTTP_CATALOG_SERVER', 'http://'.$_SERVER['HTTP_HOST']);
    define('HTTPS_CATALOG_SERVER', 'https://'.$_SERVER['HTTP_HOST']);
    
    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'true');
    Hello Kobra.
    Again, so many thanks! I believe it is working now, man I wish I could buy you a nice cold beer! Thanks!! - Jay

    http://www.shopshogun.com/index.php

  6. #6
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default Re: SSL Problems

    Hello Kobra,
    Looks like I jumped the gun a bit, it switches over now (which is awesome!) but now the checkout process comes up blank

    https://shopshogun.com/index.php?mai...eckout_process

    I'm not sure, if maybe I'm supposed to do something on the firstdata end, or if because I did something wrong.

    in the admin i left this
    define('HTTP_CATALOG_SERVER','http://'.$_SERVER['HTTP_HOST']);
    define('HTTPS_CATALOG_SERVER', 'https://'.$_SERVER['HTTP_HOST']);

    because when I removed it, my admin was missing. Any ideas?
    p.s. I'll still buy you beers!!

  7. #7
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: SSL Problems

    I am not seeing a lock???
    Zen-Venom Get Bitten

  8. #8
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: SSL Problems

    because when I removed it
    Or Correct not remove

    Code:
    admin config:
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    define('HTTP_CATALOG_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.shopshogun.com');
    You still do not show a lock
    Zen-Venom Get Bitten

  9. #9
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default Re: SSL Problems

    Quote Originally Posted by kobra View Post
    Or Correct not remove

    Code:
    admin config:
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
    define('HTTP_CATALOG_SERVER', 'http://www.shopshogun.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.shopshogun.com');
    You still do not show a lock
    Hey Kobra,
    doing that caused this:
    Parse error: syntax error, unexpected T_STRING in
    adminl/includes/configure.php on line 36

    I'm really not sure now

  10. #10
    Join Date
    Dec 2008
    Posts
    55
    Plugin Contributions
    0

    Default Re: SSL Problems

    Quote Originally Posted by ShopShogun View Post
    Hey Kobra,
    doing that caused this:
    Parse error: syntax error, unexpected T_STRING in
    adminl/includes/configure.php on line 36

    I'm really not sure now
    Ignore me, I need to take a break

    My eyes were off and I made a type-o thanks again!!

 

 

Similar Threads

  1. ssl problems
    By christinefred in forum General Questions
    Replies: 12
    Last Post: 18 Nov 2010, 06:01 AM
  2. SSL Problems
    By DarrenQ in forum General Questions
    Replies: 29
    Last Post: 19 Jun 2010, 01:15 PM

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