Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Checkout to Nowhere


quikscream

Recommended Posts

  • Replies 65
  • Created
  • Last Reply

do you have a payment module installed.... if not try installing check or money order module.....in admin panel....

 

 

 

Mike

Link to comment
Share on other sites

Set this in both of the configure.php files

 

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

 

You don't have ssl set up.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

You have to obtain ssl through your hosting provider, osC does not provide it. You can get your certificate by yourself but the host has to set up the service.

 

There's two configure.php files.

 

one in catalog/includes and one in catalog/admin/includes

 

When I copy your "Create Account" link I get this

 

https://tshirtgod.aldrichdesigns.com/catalo...ate_account.php

 

So you are definitely asking for secure log-in.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Yes, your host would most likely charge more, they have to give you a unique IP.

 

Do they have a shared ssl system available? Lots of hosts offer this free.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

I just checked your hosting company's plan and they do offer shared ssl on their cert.

 

Now it's your job to figure out how to use it. Check your control panel info or account info.

 

It ain't gonna be https://tshirtgod.com unless you buy your own certificate.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

yeah they are mine. basically I just need to know how to set up this ssl business. I know my host offers it and I have seen other people talk about it, look

 

http://aletiaforums.com/showthread.php?s=&...8&highlight=ssl

 

but I don't understand how to do it for me.

Your control panel should have this info somewhere.

 

Here's a hint:

 

define('HTTPS_SERVER', 'https://secure37.nocdirect.com/~acct')

 

I'm guessing but if you plug your username and the domain with them like this

 

https://secure37.nocdirect.com/~quikscream/tshirtgod

 

your site might pop up.

 

Obviously your username with them may not be quikscream so you'll have to put in the right one. From the page you linked they've got more than one secure proxy so secure37 mmay not be the one for you.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

I really don't mean to be a pain, but I cannot find anything in my cepanel that might help. also when I plugged it in, it didnt work.

email your host and ask them how to use the secure proxy server for that domain name.

 

Or if they have a support desk ask there. You could poke around all night guessing when they can tell you in 10 seconds.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

oh wait! i got something, check this out

 

https://chrome.nocdirect.com/~jaldrich

 

what does that mean?

It means that you've got an encrypted link to your pictures. :P

 

But you're getting there. Just try to figure out how to access the subdomain using that proxy and you've got it

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Now all you have to do is change the configure.php files (both of them)

 

to this

 

define('HTTPS_SERVER', 'https://secure40.nocdirect.com/~jaldrich/tshirtgod')

 

and

 

define('HTTPS_COOKIE_DOMAIN', 'secure40.nocdirect.com/~jaldrich/tshirtgod')

 

I might have skipped one but basically all references to https should show that proxy server.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

how to i change this one

 

define('HTTP_SERVER', ''); // eg, http://localhost or - https://localhost should not be NULL for productive servers
?define('HTTP_CATALOG_SERVER', '');
?define('HTTPS_CATALOG_SERVER', '');
?define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module

 

 

and how do i change this

 

 define('HTTP_SERVER', ''); // eg, http://localhost - should not be empty for productive servers
?define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
?define('ENABLE_SSL', false); // secure webserver for checkout procedure?
?define('HTTP_COOKIE_DOMAIN', '');
?define('HTTPS_COOKIE_DOMAIN', '');
?define('HTTP_COOKIE_PATH', '');
?define('HTTPS_COOKIE_PATH', '');

Link to comment
Share on other sites

Just plug in the newly found secure proxy where appropriate

 

define('HTTP_SERVER', ''); // eg, http://localhost or - https://localhost should not be NULL for productive servers

?define('HTTP_CATALOG_SERVER', '');

?define('HTTPS_CATALOG_SERVER', 'https://secure40.nocdirect.com/~jaldrich/tshirtgod');

?define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

 

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

?define('HTTPS_SERVER', 'https://secure40.nocdirect.com/~jaldrich/tshirtgod'); // eg, https://localhost - should not be empty for productive servers

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

?define('HTTP_COOKIE_DOMAIN', '');

?define('HTTPS_COOKIE_DOMAIN', 'secure40.nocdirect.com/~jaldrich/tshirtgod');

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

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

 

 

You're 90% of the way there, you'll get it

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...