This line in your Admin configure.php is missing a closing paren:
Code:
define('HTTP_CATALOG_SERVER', 'http://www.springersyarnnook.com';
That should be:
Code:
define('HTTP_CATALOG_SERVER', 'http://www.springersyarnnook.com');
Also, in your catalog configure.php you have these lines:
Code:
define('HTTP_SERVER', 'http://www.springersyarnnook.com/');
define('DIR_WS_CATALOG', '');
define('DIR_WS_HTTPS_CATALOG', '');
They should read:
Code:
define('HTTP_SERVER', 'http://www.springersyarnnook.com');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');