I'm really confused and have been scratching my head over this for a few days now. I have a PHP script that stores some user profiles in a MongoDB. Users can login, change a few fields, and logout. When they login, it records the lastlogin date/time, and when you modify something it records the last modified date/time using the MongoDate object.
It works.. but sometimes.. and of course what appears randomly, the dates reset for specific documents to 'ISODate("1969-12-31T16:00:00-08:00")'
My documents store the dates like:
dates: {
created: ISODate("1969-12-31T16:00:00-08:00"),
lastlogin: ISODate("1969-12-31T16:00:00-08:00"),
modified: ISODate("1969-12-31T16:00:00-08:00")
},
My PHP code looks like:
$collection->update(array('account.email' => $email), array('$set' => array('dates.lastlogin' => new MongoDate())));
Anyone have any ideas why?