My site was working fine. Paypal express and QBMS were working. I purchased dedicated IP and an SSL cert and they were installed by BlueHost.
I then followed the tutorial and changed the Includes\configure.php and the Admin\Includes\configure.php.
My shopping cart now goes to a secure website but when I try to check out, I get a blank page. The same thing happens when I try to log into an account.
Also, I can no longer get into Admin.
Here's the message I get when I try to go to Admin:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home1/gapprodu/public_html/shop/admin/includes/configure.php:1) in /home1/gapprodu/public_html/shop/includes/functions/sessions.php on line 108
Warning: Cannot modify header information - headers already sent by (output started at /home1/gapprodu/public_html/shop/admin/includes/configure.php:1) in /home1/gapprodu/public_html/shop/admin/includes/init_includes/init_templates.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home1/gapprodu/public_html/shop/admin/includes/configure.php:1) in /home1/gapprodu/public_html/shop/admin/includes/functions/general.php on line 21
Here's line 108 referred to above:
$temp = session_start();
if (!isset($_SESSION['securityToken'])) {
$_SESSION['securityToken'] = md5(uniqid(rand(), true));
Here's what I changed in Includes\configure.php
define('HTTP_SERVER', 'http://www.gapproducts.com');
define('HTTPS_SERVER', 'https://www.gapproducts.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
Here's the changes to Admin\Includes\configure.php
define('HTTP_SERVER', 'http://www.gapproducts.com');
define('HTTPS_SERVER', 'https://www.gapproducts.com');
define('HTTP_CATALOG_SERVER', 'http://www.gapproducts.com');
define('HTTPS_CATALOG_SERVER', 'https://www.gapproducts.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');



