osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Need SSL help! Tired All posts with no results.

This is a discussion on Need SSL help! Tired All posts with no results. within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi, I have been up for nearly 48 hours now. I have been trying to get the SSL to work ...


Go Back   osCommerce and osCMax shopping cart software forums > osCommerce 2.2 Forums > osCommerce 2.2 Modification Help

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 05-21-2003, 07:30 PM
New Member
 
Join Date: May 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
cxm322
Default Need SSL help! Tired All posts with no results.

Hi,

I have been up for nearly 48 hours now. I have been trying to get the SSL to work on my site. I did not want to opost YET ANOTHER SSL help post, but I just have to. I have been working on this for the past 4 days for a toal of 76 hours and I cannot make any progress using the threads I have read.

I have searched and read ALL posts regarding my problem both in this forum and the forum at http://forums.oscommerce.com but I cannot get my account and checkout urls to switch to https.

I am using OSC version 2.2 MSI. I am using 2checkout as my credit card processor.

My host is neureal.com a have purchased a didicate IP for my domain and have installed SSL. I have not bought a certificate but that is not a worry right now, I just want to get the URLs to change to https at this point.

The following are what my configure.php files read in both my /admin/includes & /catalog/includes directories.

This is what they are CURRENTLY, but I have tried everything I have read in all other SSL help posts and the results are the same. I CANNOT GET MY URLS TO CHANGE TO HTTPS.

My site is http://www.discountguitarcity.com

admin/includes/configure.php

<?php
/*
$Id: configure.php,v 1.13 2002/07/20 09:08:31 project3000 Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 2002 osCommerce

Released under the GNU General Public License
*/

// define our webserver variables
// FS = Filesystem (physical)
// WS = Webserver (virtual)
define('HTTP_SERVER', 'http://www.discountguitarcity.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.discountguitarcity.com');
define('HTTPS_CATALOG_SERVER', 'https://www.discountguitarcity.com/');
define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module I HAVE TRIED THIS WITH AND WITHOUT SINGLE QUOTES AROUND TRUE.
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . '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 our database connection
define('DB_SERVER', '207.44.196.22' THIS IS THE IP ADDRESS WHERE MY MYSQL DB IS HOSTED);
define('DB_SERVER_USERNAME', 'MY USERNAME FOR MY MYSQL DB IS HERE');
define('DB_SERVER_PASSWORD', 'MY PASSWORD FOR MY MYSQL DB IS HERE');
define('DB_DATABASE', 'DGC' THIS IS THE NAME I CAVE MY MYSQL DB);
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', '');
?>

catalog/includes/configure.php


<?php
/*
$Id: configure.php,v 1.13 2003/02/10 22:30:51 hpdl Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 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.discountguitarcity.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.discountguitarcity.com'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
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', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $HTTP_SERVER_VARS['DOCUMENT_ROOT']); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_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', '207.44.196.22') (This is the IP address where my my mysql DB is hosted); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'my username is here');
define('DB_SERVER_PASSWORD', 'my password is here');
define('DB_DATABASE', 'the name 'DGC' THIS IS THE NAME I GAVE MY MYSQL DB);
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
?>


Any help will greatly be appreciated. I have spent way to much tim eon this already and I am going to have to leave OSC if I cannot solve this problem. I DO NOT want to do this but realistically, my business is suffering and I need a more reliable, user friendly shopping cart solution.
Don't get me wrong, I love OSC and the community, but at this point it does not seem very practical. I need to rest once in a while and I need to get my site working 100% and make money.

Thanks in advance.

Carlo
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Search not showing results. JonCloud420 osCMax v2 Installation issues 0 09-03-2006 06:59 PM
filter results no1uknow osCMax v2 Customization/Mods 1 07-22-2006 09:24 PM
Download results in corrupt file red_fraggle osCMax v2 Features Discussion 0 07-27-2005 02:16 PM
How do you print the results of tep_db_query() dhobson osCommerce 2.2 Modification Help 3 01-27-2005 08:43 AM
Strange results when testing...HELP sheikyerbouti osCommerce 2.2 Installation Help 2 12-28-2002 03:04 PM


All times are GMT -8. The time now is 04:54 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax