I think it’s allowed to keep the ip-adresses for some time for security purposes, but after a certain time they have to be deleted.
Can you build add a purging system which deletes failed login records and the account activity logs after a certain period?
And make that period adjustable for the needs of the site?
A bit like Google does in Analytics now.
Regards,
Jan Alwin de Jong
I also got a Cannot redeclare class OAuthServer error. It occurs because an other plugin had already loaded a version of this class.
I solved this by adding this construct around the OAuthServer and OAuthDataStore class in class.oauth.php:
if (!class_exists(‘OAuthServer’)) {
class OAuthServer {
….
} // end of class
} // end if OauthServer
f (!class_exists(‘OAuthDataStore’)) {
class OAuthDataStore {
….
} // end of class
} // end if OAuthDataStore
Could this be added to the comming release?