Please re-read my original response, then look at your file settings.. Not sure how to make this any clearer..
Quote Originally Posted by DivaVocals View Post
If you're still getting this notice, then it's likely your SSL setup is incomplete.. Check your configure.php settings.. The LIKELY culprit is your admin configure.php file..

HTTP_SERVER setting should also be https. Most folks miss/forget that..

Code:
 define('HTTP_SERVER', 'https://www.yourdomain.com');
Quote Originally Posted by petestownrich View Post
<?php
/**
* @package Configuration Settings circa 1.5.4
* @copyright Copyright 2003-2014 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* File Built by zc_install on 2015-02-10 08:48:31
*/


/*************** NOTE: This file is similar, but DIFFERENT from the "store" version of configure.php. ***********/
/*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

/**
* WE RECOMMEND THAT YOU USE SSL PROTECTION FOR YOUR ENTIRE ADMIN:
* To do that, make sure you use a "https:" URL for BOTH the HTTP_SERVER and HTTPS_SERVER entries:
*/
define('HTTP_SERVER', 'http://www.petestowntest.com');
define('HTTPS_SERVER', 'https://www.petestowntest.com');
define('HTTP_CATALOG_SERVER', 'http://www.petestowntest.com');
define('HTTPS_CATALOG_SERVER', 'https://www.petestowntest.com');

// secure webserver for admin? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_ADMIN', 'true');

// secure webserver for storefront? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_CATALOG', 'true');