Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

LocalHost to GoDaddy - No Box Graphics show up


Paximus

Recommended Posts

Please Help,

After so much trial and terror (I NOW UNDERSTAND NEED TO BACUP EVERYTHING IN TRIPLICATE/yes-I didn't take everyone's warning seriously enough...), I have uploaded my site from local host to my GoDaddy account. I changed my config.php files both in admin and includes and I have the entire site up and mostly running. The PROBLEM (HELP) is that none of my graphical boxes show up on the site making it look very "Googleish". When I type in the site; www.downloadhouseplans.com on my computer that I built the site on, it looks great but on a different computer, I'm missing all the box outlines. Can someone PLEASE* look at my site and my config files in see what I've done wrong? I've learne alot but have so much more to go.

 

<?php
 define('HTTP_SERVER', 'http://www.downloadhouseplans.com');
 define('HTTP_CATALOG_SERVER', 'http://www.downloadhouseplans.com');
 define('HTTPS_CATALOG_SERVER', 'http://www.downloadhouseplans.com');
 define('ENABLE_SSL_CATALOG', 'false');
 define('DIR_FS_DOCUMENT_ROOT', 'D:/secret/html/downloadhouseplans/');
 define('DIR_WS_ADMIN', '/downloadhouseplans/admin/');
 define('DIR_FS_ADMIN', 'D:/secret/html/downloadhouseplans/admin/');
 define('DIR_WS_CATALOG', '/downloadhouseplans/');
 define('DIR_FS_CATALOG', 'D:/secret/html/downloadhouseplans/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', DIR_WS_downloadhouseplans . '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_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 define('DB_SERVER', 'certai_ip_number');
 define('DB_SERVER_USERNAME', 'mydatabase');
 define('DB_SERVER_PASSWORD', 'myserverpassword');
 define('DB_DATABASE', 'nameofdatabase');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

AND

<?php
 define('HTTP_SERVER', 'http://www.downloadhouseplans.com');
 define('HTTPS_SERVER', 'http://www.downloadhouseplans.com');
 define('ENABLE_SSL', false);
 define('HTTP_COOKIE_DOMAIN', 'www.downloadhouseplans.com');
 define('HTTPS_COOKIE_DOMAIN', 'www.downloadhouseplans.com');
 define('HTTP_COOKIE_PATH', '/downloadhouseplans/');
 define('HTTPS_COOKIE_PATH', '/downloadhouseplans/');
 define('DIR_WS_HTTP_CATALOG', '/downloadhouseplans/');
 define('DIR_WS_HTTPS_CATALOG', '/downloadhouseplans/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 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', 'pub/');
 define('DIR_FS_CATALOG', 'D:/hosting/html/downloadhouseplans/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 define('DB_SERVER', 'certain_ip_number');
 define('DB_SERVER_USERNAME', 'mydatabaseserver');
 define('DB_SERVER_PASSWORD', 'myserverpassword');
 define('DB_DATABASE', 'mydatabase');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

THANKYOU SO MUCH FOR LOOKING!

Link to comment
Share on other sites

The link to the stylesheet is screwed:

 

  <link rel="stylesheet" type="text/css" href="file:///C|/xampp/htdocs/catalog/stylesheet.css">

Needs to be:

 

  <link rel="stylesheet" type="text/css" href="stylesheet.css">

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

The link to the stylesheet is screwed:

 

  <link rel="stylesheet" type="text/css" href="file:///C|/xampp/htdocs/catalog/stylesheet.css">

Needs to be:

 

  <link rel="stylesheet" type="text/css" href="stylesheet.css">

 

Thanks! quick question? what file has the link to stylesheet reference? I know I've seen it, but can't remember (much of anything anymore!), ts

Link to comment
Share on other sites

What he said...

:rolleyes:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

And that's why it looks so familiar.... Thanks for the help! Having never heard of PHP before christmas, it's been an interesting journey.

FIXED IT! I'm Up and running (except loading the rest of the product, Paypal, seo, blog, etcetcetc). Found it in the STS Template section.

THANKS FOR THE HELP!!!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...