Page 1 of 1

re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 1:19 am
by Phone-Wear
Hi All,
Somewhat new to open cart..
using open cart 1.5.6 with shopicca 2 template..
My site is http://www.key-toppers.com
Everything "was" working perfect as I built site and tgested along the way...
That is until I added ssl and now the ability to add image(s) is gone..
I can log in to edit product(s) and up load image to existing product, ( up dating several images) all of the existing images are present & having no problem , site is live and works fine...
The problem is Images do not show up other( in admin or than the information on details of product (no Pics)
i have read through all kinds of posts with similar issues , but cant seem to resolve..
Any help very much appreciated...
tks

here is a copy of admin/confg.php
<?php
// HTTP
define('HTTP_SERVER', 'http://www.key-toppers.com/admin/');
define('HTTP_CATALOG', 'http://www.key-toppers.com/');
define('HTTP_IMAGE', 'http://www.key-toppers.com/image/');

// HTTPS
define('HTTPS_SERVER', 'http://www.key-toppers.com/admin/');
define('HTTPS_CATALOG', 'http://www.key-toppers.com/');
define('HTTPS_IMAGE', 'http://www.key-toppers.com/image/');

// DIR
define('DIR_APPLICATION', '/home/content/39/11919139/html/ktcom/admin/');
define('DIR_SYSTEM', '/home/content/39/11919139/html/ktcom/system/');
define('DIR_DATABASE', '/home/content/39/11919139/html/ktcom/system/database/');
define('DIR_LANGUAGE', '/home/content/39/11919139/html/ktcom/admin/language/');
define('DIR_TEMPLATE', '/home/content/39/11919139/html/ktcom/admin/view/template/');
define('DIR_CONFIG', '/home/content/39/11919139/html/ktcom/system/config/');
define('DIR_IMAGE', '/home/content/39/11919139/html/ktcom/image/');
define('DIR_CACHE', '/home/content/39/11919139/html/ktcom/system/cache/');
define('DIR_DOWNLOAD', '/home/content/39/11919139/html/ktcom/download/');
define('DIR_LOGS', '/home/content/39/11919139/html/ktcom/system/logs/');
define('DIR_CATALOG', '/home/content/39/11919139/html/ktcom/catalog/');

Re: re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 6:02 am
by butte
You have
define('HTTPS_IMAGE', 'http://www.key-toppers.com/image/');
for both HTTP and HTTPS but IF your SSL is in effect, then the HTTPS entries for image/ should be
define('HTTPS_IMAGE', 'https://www.key-toppers.com/image/');

Re: re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 7:06 am
by Phone-Wear
Hi
thanks for the reply
I tried what you said and in made no difference?
I am at a lossI any more suggestions?
tks
also the info on bottom was not my true info for logging in, i change before i posted
tks
<?php
// HTTP
define('HTTP_SERVER', 'http://www.key-toppers.com/admin/');
define('HTTP_CATALOG', 'http://www.key-toppers.com/');
define('HTTP_IMAGE', 'http://www.key-toppers.com/image/');

// HTTPS
define('HTTPS_SERVER', 'https://www.key-toppers.com/admin/');
define('HTTPS_CATALOG', 'https://www.key-toppers.com/');
define('HTTPS_IMAGE', 'https://www.key-toppers.com/image/');

Re: re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 7:49 am
by cwswebdesign
Are you using a mod for a different image uploader?

DL

Re: re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 7:49 am
by cwswebdesign
I'm also guessing you've got SSL disabled right now because I just went to the site and it's not working on the catalog side either.


DL

Re: re: images not showing in admin area after SSL installed

Posted: Tue Nov 26, 2013 2:10 pm
by butte
See the bottom two of these on SSL:
http://forum.opencart.com/viewtopic.php ... 80#p439397

You have admin protected, drop the "s" in https:// here:
define('HTTPS_SERVER', 'https://www.key-toppers.com/admin/');
The one for image is okay, with "s".