Here's some better information (the web site is www.beautyoutfitters.com.):
Here were my settings before enabling the SSL (I will just do the includes/configure.php file minus the comments):
define('HTTP_SERVER', 'http://www.beautyoutfitters.com');
define('HTTPS_SERVER', 'https://www.beautyoutfitters.com/');
define('ENABLE_SSL', 'false');
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', '/phpBB2/');
define('DIR_FS_CATALOG', '/');
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('DB_TYPE', 'mysql');
define('DB_PREFIX', ''); // prefix for database table names -- preferred to be left empty
define('DB_SERVER', 'localhost');
define('DB_SERVER_USERNAME', 'username');
define('DB_SERVER_PASSWORD', 'password');
define('DB_DATABASE', 'db_name');
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', 'db');
define('SQL_CACHE_METHOD', 'none');
define('DIR_FS_SQL_CACHE', '/home/jcellini/public_html/beautyoutfitters.com/cache');
My hosting service added a ssl cert, tested it, and emailed me saying it was done:
https://beautyoutfitters.com/
Here were the changes I made:
define('HTTP_SERVER', 'http://www.beautyoutfitters.com');
define('HTTPS_SERVER', 'https://.beautyoutfitters.com/');
define('ENABLE_SSL', 'true');
For the admin/includes/configure.php file, here are the changes:
define('HTTP_SERVER', 'http://www.beautyoutfitters.com');
define('HTTPS_SERVER', 'https://beautyoutfitters.com/');
define('HTTP_CATALOG_SERVER', 'http://www.beautyoutfitters.com');
define('HTTPS_CATALOG_SERVER', 'https://beautyoutfitters.com/');
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
There seems to be an invalid path and it may be clear to someone who knows php.
Thanks for you help!