Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

What's the problem?


Tzig

Recommended Posts

Posted

Hi!

When you think it's all done it must be something else wrong.

I have finally managed to solve the problem with the shared SSL cert, at least one problem.

 

Now I have the secured sites showing but after compiling the module for PWA contribution I got a security alert saying: You are about to get redirected to a connection that is not secure. That means that after clicking continue for the checkout_shipping page I am redirected to an unsecure page and that happens only for the PWA module, if I create an account or login into an account already created it displays the secured page.

I think it has something to do with the create_account.php file and specially with this part:

 

// PWA BOF
  if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest'])) tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING));
// PWA EOF

 

but as I am not very familiar with php I don't want to mess things up, so any sugestion is really appreciated!

Thanks everyone!

Contributions used: italian payment - Bonifico Bancario; Dynamic Meta Tags 1.0; Italian language for 2.2MS2; PayPal IPN Module v1.0; Purchase Without Account; Register Globals; Back buttons

Do you recommend me any other contribution?

Here is My Store, tell me how can I improve it!

Posted

The problem apears only when clicking on the continue button after compiling the purchase without account form. Then on the http://mystore.com/checkout_shipping.php after selecting the shipping method and clicking on continue button I am automaticaly redirected back to the secured pages: https://mystore.com/checkout_payment.php

Still waiting for some answers.

Thanks!

Contributions used: italian payment - Bonifico Bancario; Dynamic Meta Tags 1.0; Italian language for 2.2MS2; PayPal IPN Module v1.0; Purchase Without Account; Register Globals; Back buttons

Do you recommend me any other contribution?

Here is My Store, tell me how can I improve it!

Posted

Change

 

// PWA BOF
  if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest'])) tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING));
// PWA EOF

 

 

To

 

// PWA BOF
  if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest'])) tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
// PWA EOF

Posted
Change

 

// PWA BOF
  if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest'])) tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING));
// PWA EOF

To

 

// PWA BOF
  if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest'])) tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
// PWA EOF

 

:thumbsup: Ok, it works!!!

Thank you so much!

Contributions used: italian payment - Bonifico Bancario; Dynamic Meta Tags 1.0; Italian language for 2.2MS2; PayPal IPN Module v1.0; Purchase Without Account; Register Globals; Back buttons

Do you recommend me any other contribution?

Here is My Store, tell me how can I improve it!

Archived

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

×
×
  • Create New...