They are DATETIME.calguy1000 wrote: it's (probably) because the database fields are of type DATE, not DATETIME. Can you confirm this?
you should see them in cms_module_feusers_users
Errormessage FrontEndUsers: Incorrect datetime value
Re: Errormessage FrontEndUsers: Incorrect datetime value
Re: Errormessage FrontEndUsers: Incorrect datetime value
I had the same problem...
I patched modules/FrontEndUsers/FrontEndUsers.api.php (Version 1.1.1, line 1419 to 1421 in function AddUser()) to:
without guarantee - it seems to fix this... 
I patched modules/FrontEndUsers/FrontEndUsers.api.php (Version 1.1.1, line 1419 to 1421 in function AddUser()) to:
Code: Select all
$dbresult = $db->Execute( $q, array( $uid, $name, md5($password),
trim($db->DBTimeStamp(time()),"'"),
trim($db->DbTimeStamp($expires),"'") ) );

Re: Errormessage FrontEndUsers: Incorrect datetime value
Thank you for the fix! I was experiencing the same problem on a clean install of CMSMS 1.0.2 with Front End Users 1.1.1, running on Apache 2 and MySQL 5 on a Windows 2000 server.
Re: Errormessage FrontEndUsers: Incorrect datetime value
The "trim" fix above fixes the same problem on ubuntu linux 6.06, php5.x, mysql5.x, apache2.x as well.
Re: Errormessage FrontEndUsers: Incorrect datetime value
Works for me on Windows 2003 server and IIS 6.0. AWESOME WORK, ROLAND!!
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Errormessage FrontEndUsers: Incorrect datetime value
This has been fixed in SVN, I just haven't cut a new release yet.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.