Jeffrey,
You still might want to post your configure files, normally if you have installed in the root directory you would have a slash (/) in those defines.
PHP Code:
// * 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', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
Note- the lines above those I just posted should not end with the slash.
PHP Code:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://YOUR_URL');
define('HTTPS_SERVER', 'https://YOUR_URL');