Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Registratiion error - help


tim_ver

Recommended Posts

I can not register at all. I fill in all requird items on the page and hit continue and it just flips the same page "refresh kinda". All data in boxes stays except the password. I have never edited the create account pages. I do not know why it would be doing this since I never touched any of the account pages. Ideas?

 

What pages and files control the registration process? I do not even know where to start on this. Please help.

 

 

I can not get any new users and they also can not retrieve passwords nothing for this side works. Help.

 

 

Thanks

Link to comment
Share on other sites

I can not register at all. I fill in all requird items on the page and hit continue and it just flips the same page "refresh kinda". All data in boxes stays except the password. I have never edited the create account pages. I do not know why it would be doing this since I never touched any of the account pages. Ideas?

 

What pages and files control the registration process? I do not even know where to start on this. Please help.

I can not get any new users and they also can not retrieve passwords nothing for this side works. Help.

Thanks

 

Are you in a country besides USA using English? Your english.php received birthday's as MM/DD/YY instead of DD/MM/YY as used in UK, Australia, etc.

 

Change this in includes/languages/english.php

 

define('DATE_FORMAT_SHORT', '%m/%d/%Y');  // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'm/d/Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
function tep_date_raw($date, $reverse = false) {
 if ($reverse) {
return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
 } else {
return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
 }
}

 

to this (you can copy it from german.php, also)

 

define('DATE_FORMAT_SHORT', '%d.%m.%Y');  // this is used for strftime()
define('DATE_FORMAT_LONG', '%A, %d. %B %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd.m.Y');  // this is used for strftime()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
function tep_date_raw($date, $reverse = false) {
 if ($reverse) {
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);
 } else {
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
 }
}

BACKUP your current files before editing. Did I mention to BACKUP your current files, first?

 

"I'm not a hero, I'm a firefighter; it is my job to save lives. I'm a Jesus Christ Firefighter saving souls from the flames!"

 

Installed contribs: Almost XP Buttons *** Attribute Sort *** Auto Thumbnail Change *** Column Product Listing (for SPPC v4.0) *** Contact Us Registered *** Country-State Selector 1.3.3J *** CC# Db Mask 1.3 *** Email Order Clickable Link *** Extra Images *** Linkpoint API CVM *** Loginbox Best *** New Spiders *** New Attrib Mgr v.5.0 w/ New Attrib Include *** Multi Product Update *** MySQL Cron *** Pricing per Category *** Product Listing in Columns v2.2 [later upgraded to CPL(SPPC)] *** Product Sort v1.6 *** Seperate Pricing Per Customer v4.15 *** Simple Down for Maintenance [Gokou] *** Ultimate_SEO_URLs_v2.2.2 *** UPS Worldship Export 1.3 *** Welcome Email username & password

Link to comment
Share on other sites

I am in english and in admin area it says default. Is there any other place I can check to make 100% sure?

 

I used the defult birthdate in my test registration. It is on the left of the line in the form (eg. 05/21/1970).

 

Ideas?

 

 

Thanks much

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...