Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Disable SSL?


razielle

Recommended Posts

I'm new to OSCommerce so I'm afraid I'm a real novice!

 

I've been getting error code: 12263 when I tried log-in and create account at www.karenalexander.co.uk/shop, I read elsewhere in this forum that this may be a problem relating somehow to secure pages?

 

My catalog/includes/configure.php file is below, I'd be really grateful if anyone can see what the problem is here and help me to fix it. I do not have an SSL certificate, and won't be getting one for a while, so would like to get this working without one for now.

 

Thanks guys!

 

 

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

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

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

define('HTTP_COOKIE_DOMAIN', 'karenalexander.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'karenalexander.co.uk');

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

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

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

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

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/fr02kare/public_html/shop/');

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', 'deleted');

define('DB_SERVER_PASSWORD', 'deleted');

define('DB_DATABASE', 'deleted');

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

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

?>

Link to comment
Share on other sites

Change:

define('ENABLE_SSL', true);

To:

define('ENABLE_SSL', false);

Other great Open Source (Free) programs: (Free as in free speech not free beer)

The Gimp - An image program. | Firefox - All you have to do is add the Web Developer add-on to make this web browser complete. | FileZilla - An ftp program. | Inkscape - A good program to create images with. | Thunderbird - An email program. | Openoffice.org - An office suite that is compatible with MS Office. | Abiword - Another office suite. | Audacity - A sound recording tool. | ddp's Picks | Wordpress - An easy to use blogging software. | Joomla - An easy to use CMS that has ecommerce plug-ins. | Drupal - Another CMS

How do I find these programs? Google Search!

Link to comment
Share on other sites

Thanks for your quick reply there. Just tried to do that, I clicked 'edit' but the text shows up in a greyed box, and it doesn't allow me to alter any of what's inside...

 

 

Change:

define('ENABLE_SSL', true);

To:

define('ENABLE_SSL', false);

Link to comment
Share on other sites

Any idea why I'm not able to edit the configure.php file?

 

Thanks

 

 

 

Thanks for your quick reply there. Just tried to do that, I clicked 'edit' but the text shows up in a greyed box, and it doesn't allow me to alter any of what's inside...
Link to comment
Share on other sites

Right, so I just noticed this error msg at the top of the configure.php page:

 

Error: I can not write to this file. Please set the right user permissions on: /home/fr02kare/public_html/shop//includes/configure.php

 

so next question is, how do you set user permissions?

 

Thanks

 

 

 

 

Any idea why I'm not able to edit the configure.php file?

 

Thanks

Link to comment
Share on other sites

Many hosts have a file manager in their control panel that will allow you to do that. You can also use an ftp program in most cases.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

All of My Addons

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...