the custom header isnt healping matters
http://www.screenprintcatalog.com/us...header_top.jpg
Looks like the html_header might have been changed the base href is non secure
<base href="http://www.screenprintcatalog.com/us/" />
the custom header isnt healping matters
http://www.screenprintcatalog.com/us...header_top.jpg
Looks like the html_header might have been changed the base href is non secure
<base href="http://www.screenprintcatalog.com/us/" />
Zen cart PCI compliant Hosting
Hey Merlin,
Looking at the html_header.php I have handy looks like the Base href file is still intact:
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
Doing a view source via IE, yeah reads as:
<base href="http://www.screenprintcatalog.com/us/" />
Kobra-
When starting with http://www.screenprintcatalog.com/us/index.php and clicking on login the link does indeed prompt me to go to the secured login page (https://www.screenprintcatalog.com/u...ain_page=login) but this lands me with the security prompt for missing images.
Quick note, yeah the SSL is for the screenprintcatalog.com domain...the expanded version of the config file I should have posted is the following...any thoughts or suggestions?
// Define the webserver and path parameters
// Main webserver: eg, http://localhost - should not be empty for productive servers
define('HTTP_SERVER', 'http://screenprintcatalog.com');
// Secure webserver: eg, https://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://screenprintcatalog.com');
// 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', '/us/');
define('DIR_WS_HTTPS_CATALOG', '/us/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
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_BLOCKS', DIR_WS_INCLUDES . 'blocks/');
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', '/data/12/1/102/160/1102323/user/1154976/htdocs/screenprintcatalog/us/');
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', '');
define('DB_SERVER', 'xxxxx'); // eg, localhost - should not be empty
define('DB_SERVER_USERNAME', 'xxxx');
define('DB_SERVER_PASSWORD', 'xxxx');
define('DB_DATABASE', 'xxxx');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'
// 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', 'file');
define('DIR_FS_SQL_CACHE', '/data/12/1/102/160/1102323/user/1154976/htdocs/screenprintcatalog/us/cache');
I just noticed that your view source of the login page has the non ssl link.
as a base href
Zen cart PCI compliant Hosting
Yeah Merlin, this is where I'm a tad confused...I've looked at other sites we've done with SSLs (on a different server) and doing a View Source on both secure and unsecure pages, the Base href 'shifts' accordingly - but of course not with this particular site...
I did customize the header, image link for that particular top image is relative and not absolute.
try switching back to the classic template quick, see if this is still an issue
Zen cart PCI compliant Hosting
Interesting...flipped back to classic mode, things are now good...
https://www.screenprintcatalog.com/u...ain_page=login
So where am I going wrong?
something to do with that header that you created
looks like you might have removed something important
Zen cart PCI compliant Hosting