Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to pass e-mail verification?


vekke

Recommended Posts

Posted

Hi. Another question:

 

Is it possible to pass the email check? Few customers need different accounts with same e-mail address.

 

Thanks fo any hints.

Posted

Easy. Open create_account_process.php, find

 

$check_email = tep_db_query("select customers_email_address from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "' and customers_id <> '" . tep_db_input($customer_id) . "'");

 if (tep_db_num_rows($check_email)) {

   $error = true;

   $entry_email_address_exists = true;

 } else {

   $entry_email_address_exists = false;

 }

 

cut it all and paste

 

   $entry_email_address_exists = false;

There is always more than one way to do it.

And always Keep It Simple, Stupid.

Posted

Seems that also have to edit account_edit_process.php

 

Only one problem occures:

It's impossible to logoff.

 

Wonder why... :?

Posted

Show me your shop.

There is always more than one way to do it.

And always Keep It Simple, Stupid.

Archived

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

×
×
  • Create New...