As Kim indicated, you have an error in the configure.php that builds the URL for the SSL and this is causing the issues you are having:
PHP Code:
define('DIR_WS_CATALOG''/catalog/');
define('DIR_WS_HTTPS_CATALOG''https://www.universalcutlery.com/catalog/'); 
Needs to read:
PHP Code:
define('DIR_WS_CATALOG''/catalog/');
define('DIR_WS_HTTPS_CATALOG''/catalog/');