Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

many pages not working


Guest

Recommended Posts

Posted

alot of my pages are not showing up like the checkout_shipping.php, the tell a friend page and many more. they are all on my server but i keep getting "page can not be displayed.

Posted

are your configure files set up correctly ?

Your online success is Paramount.

Posted

I just had a problem like that.... it turned out that all of my include files could not be read because of how the permissions were set. Try CHMODing the include 777 (read write and execute on everything), under the admin directory.

Posted

i tried to chmod the includes in the admin folder but that didnt work. im not sure what i have to do to the config files. thanks for your help in advance!

Posted

post your includes/configur file here minus the password/username etc details.

Your online success is Paramount.

Posted

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright ? 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://revelationskateboards.com');

define('HTTPS_SERVER', 'https://revelationskateboards.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'revelationskateboards.com');

define('HTTPS_COOKIE_DOMAIN', 'revelationskateboards.com');

define('HTTP_COOKIE_PATH', '/shop/catalog/');

define('HTTPS_COOKIE_PATH', '/shop/catalog/');

define('DIR_WS_HTTP_CATALOG', '/shop/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/shop/catalog/');

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', '/html/shop/catalog/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

define('DB_SERVER', 'revelationskateboards.com');

define('DB_SERVER_USERNAME', '******');

define('DB_SERVER_PASSWORD', '******');

define('DB_DATABASE', '******');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

?>

 

 

i've noticed most of the pages that dont show up are the ones that the link to them starts with "https". could it be a problem with the 'HTTPS_SERVER' server?

Archived

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

×
×
  • Create New...