OneSixthScale Posted February 3, 2005 Posted February 3, 2005 Hey, when my customers try to login they get an error like this one https://onesixthquartermaster.com/os/login.php I've been told it's a problem with my SSL, can anyone help? My configure.php looks like this; <?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://onesixthquartermaster.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://onesixthquartermaster.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'onesixthquartermaster.com'); define('HTTPS_COOKIE_DOMAIN', 'onesixthquartermaster.com'); define('HTTP_COOKIE_PATH', '/os/'); define('HTTPS_COOKIE_PATH', '/os/'); define('DIR_WS_HTTP_CATALOG', '/os/'); define('DIR_WS_HTTPS_CATALOG', '/os/'); 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/banjoman/public_html/os/'); 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 NULL for productive servers define('DB_SERVER_USERNAME', 'banjoman_osc1'); define('DB_SERVER_PASSWORD', '6pn5SyFuvKgH'); define('DB_DATABASE', 'banjoman_osc1'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Thanks
MarcS Posted February 3, 2005 Posted February 3, 2005 Hi If I were you I would change my database password very quickly. You have posted you login and your password with you includes file. Anybody without scruples can access your database. BIG MISTAKE. :( Mark http://82.112.102.87/catalog/ (Site in progress)
nottheusual1 Posted February 3, 2005 Posted February 3, 2005 Hey, when my customers try to login they get an error like this one https://onesixthquartermaster.com/os/login.php I've been told it's a problem with my SSL, can anyone help? My configure.php looks like this; Thanks <{POST_SNAPBACK}> I'd think about getting my own certificate, as in the IE browser you get a certificate warning - that the name on the certificate doesn't match the domain name. Your service provider (customers.asmallorange.com) is providing a shared certificate (the certificate shows it belongs to them). They need to set up a symbolic link back to your directory for the files to be found, and to make that warning stop. :not_the_usual1 :not_the_usual1 [you decide] -- Trying to figure it out, just like everyone else --
Recommended Posts
Archived
This topic is now archived and is closed to further replies.