Results 1 to 8 of 8
  1. #1
    Join Date
    Jan 2010
    Posts
    17
    Plugin Contributions
    0

    Default SSL connection PARTIALLY encrypted

    My website has SSL, but it says partially encrypted in the firefox corner box. What could be the problem with my website?

    When i clicked it it says
    1) Warning contains unauthenticated content
    2) This website doesnt supply ownership information

    Also any idea on how to move the SSL seal from sidebox to footer. I understood from one of the post that i need to edit tpl_footer.php in template/common but where to put the information?

    My website: https://wowstoreonline.com//index.php

    Thanks
    Deepan

  2. #2
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,263
    Plugin Contributions
    3

    Default Re: SSL connection PARTIALLY encrypted

    Before you attend to your ssl, fix your configure.php files so that you don't get the DOUBLE SLASH in your URL...

    https://wowstoreonline.com//index.php
    20 years a Zencart User

  3. #3
    Join Date
    Jan 2010
    Posts
    17
    Plugin Contributions
    0

    Default Re: SSL connection PARTIALLY encrypted

    Quote Originally Posted by schoolboy View Post
    Before you attend to your ssl, fix your configure.php files so that you don't get the DOUBLE SLASH in your URL...

    https://wowstoreonline.com//index.php
    Sure boss. But how do i do that. I mean Do i have edit a particular section in configure.php? If so where exactly please advice. Please find below the contents of my configure.php file

    Thanks
    Deepan

    <?php
    /**
    * dist-configure.php
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: dist-configure.php 6329 2007-05-16 15:36:56Z drbyte $
    * @private
    */
    // Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.yourdomain.com
    define('HTTP_SERVER', 'http://wowstoreonline.com');
    define('HTTPS_SERVER', 'https://wowstoreonline.com');

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

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!

    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '//');
    define('DIR_WS_HTTPS_CATALOG', '//');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', 'D:\Hosting\5512974\html\/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_'); // prefix for database table names -- preferred to be left empty
    define('DB_SERVER', 'XXXXXXXXXXXXXXXX');
    define('DB_SERVER_USERNAME', 'XXXXXXXXXXXX');
    define('DB_SERVER_PASSWORD', 'XXXXXXXXXX');
    define('DB_DATABASE', 'XXXXXXXXXXXX');
    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'db');
    // use 'db' for best support, or '' for file-based storage

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', 'D:\Hosting\5512974\html\/cache');

    ?>

  4. #4
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: SSL connection PARTIALLY encrypted

    Change this:

    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '//');
    define('DIR_WS_HTTPS_CATALOG', '//');
    to this:

    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    I'm not sure but I think these ones are wrong too...they shouldn't have the forward slash there...

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', 'D:\Hosting\5512974\html\/');
    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', 'D:\Hosting\5512974\html\/cache');
    As to the rest....it's the skype image in the sidebox that is causing the partially encrypted message
    Last edited by LissaE; 30 Jan 2010 at 08:28 PM.
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

  5. #5
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,263
    Plugin Contributions
    3

    Default Re: SSL connection PARTIALLY encrypted

    Quote Originally Posted by deepanvee View Post
    define('DIR_FS_SQL_CACHE', 'D:\Hosting\5512974\html\/cache');
    This also makes no sense with the extra /.
    20 years a Zencart User

  6. #6
    Join Date
    Jan 2010
    Posts
    17
    Plugin Contributions
    0

    Default Re: SSL connection PARTIALLY encrypted

    THanks a lot Lissa and School boy i have changed those :) appreciate ur help

    Lissa How do i make Skype encrypted?From firefox i understand it has http instead of https. Is there anyway i can change that to https?

    You guys rock!

  7. #7
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: SSL connection PARTIALLY encrypted

    Unless Skype has a secure address for you to pull the image from you can't, but if you search the forum I believe you can disable the sidebox from showing on secure pages

    I noticed as well that you need to put your actual Skype name/address (?) in some places in the code:

    <a href="skype:YOUR_NAME_HERE?call"><img src="http://mystatus.skype.com/balloon/YOUR_NAME_HERE" style="border: none;" width="140" height="56" alt="My status" /></a>
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

  8. #8
    Join Date
    Jan 2010
    Posts
    17
    Plugin Contributions
    0

    Default Re: SSL connection PARTIALLY encrypted

    Super thank you have made the changes in the name. I will check on the secure part..

 

 

Similar Threads

  1. connection PARTIALLY encrypted
    By poosk in forum General Questions
    Replies: 42
    Last Post: 6 Jun 2011, 04:27 AM
  2. SSL issue - connection partially encrypted
    By pquesinb in forum General Questions
    Replies: 8
    Last Post: 5 Dec 2010, 11:49 PM
  3. Replies: 1
    Last Post: 23 Jul 2009, 08:27 PM
  4. Replies: 24
    Last Post: 11 Aug 2007, 06:23 AM
  5. Connection Partially Encrypted?
    By tison in forum General Questions
    Replies: 0
    Last Post: 6 Dec 2006, 08:56 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR