Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

please help


abramsdupa

Recommended Posts

i can't create new account , i have read forum, but still don';t know what to do...

 

when i click on 'create new account' , appears blank page ( page cannot be displayed )

 

this configure.php file:

 

define('HTTP_SERVER', 'http://www.daja.hg.pl'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.daja.hg.pl'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'www.daja.hg.pl');

define('HTTPS_COOKIE_DOMAIN', 'www.daja.hg.pl');

define('HTTP_COOKIE_PATH', '/f');

define('HTTPS_COOKIE_PATH', '/f');

define('DIR_WS_HTTP_CATALOG', '/oscommerce/oscommerce-2.2ms2/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/oscommerce/oscommerce-2.2ms2/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', '/www/daja/web/www/oscommerce/oscommerce-2.2ms2/catalog/');

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

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

 

// define our database connection

define('DB_SERVER', 'sqlhosting'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'daja');

define('DB_SERVER_PASSWORD', '7fql5&');

define('DB_DATABASE', 'daja');

define('USE_PCONNECT', 'false'); // use persistent connections?

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

?>

Link to comment
Share on other sites

i can't create new account , i have read forum, but still don';t know what to do...

 

when i click on 'create new account' , appears blank page ( page cannot be displayed )

 

this configure.php file:

 

define('HTTP_SERVER', 'http://www.daja.hg.pl'); // eg, http://localhost - should not be empty for productive servers

  define('HTTPS_SERVER', 'https://www.daja.hg.pl'); // eg, https://localhost - should not be empty for productive servers

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

  define('HTTP_COOKIE_DOMAIN', 'www.daja.hg.pl');

  define('HTTPS_COOKIE_DOMAIN', 'www.daja.hg.pl');

  define('HTTP_COOKIE_PATH', '/f');

  define('HTTPS_COOKIE_PATH', '/f');

  define('DIR_WS_HTTP_CATALOG', '/oscommerce/oscommerce-2.2ms2/catalog/');

  define('DIR_WS_HTTPS_CATALOG', '/oscommerce/oscommerce-2.2ms2/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', '/www/daja/web/www/oscommerce/oscommerce-2.2ms2/catalog/');

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

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

 

// define our database connection

  define('DB_SERVER', 'sqlhosting'); // eg, localhost - should not be empty for productive servers

  define('DB_SERVER_USERNAME', 'daja');

  define('DB_SERVER_PASSWORD', '7fql5&');

  define('DB_DATABASE', 'daja');

  define('USE_PCONNECT', 'false'); // use persistent connections?

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

?>

 

Either you have not followed the instal instruction because your configure file looks very wierd OR you have followed the instructions and your config file is wierd :D

 

This is what my config file looks like from my TEST environment

 

<?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://www.simplyeasier.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://simplyeasier.com'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'www.simplyeasier.com');

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

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

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

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

define('DIR_WS_HTTPS_CATALOG', '/shoptest/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', '/home/simply/public_html/catalog/');

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

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

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

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

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

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

define('USE_PCONNECT', 'false'); // use persistent connections?

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

?>

 

 

NOTE - do you have SSL as I do ? then keep ssl true else make it flase - also note if you have ssl the https: paths begin WITHOUT the www

 

If you use this for a template do not use the shoptest path - that is something I have done in order to create my test site - your paths should just begin with the /catalog or whatever path you have installed in

 

hth

 

Charles

A kite flies highest AGAINST the wind !

 

"Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well preserved body, but rather to skid in sideways, a lover in one hand, martini in the other, body thoroughly used up, totally worn out and screaming ~ WOO HOO!! What a ride!"

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...