Anonymous users

0
Hi,   I created a custom login and registration page using an anonymous user. But when I check the records some extra Usera with Anonymous are created automatically.   I want to know how these accounts are created and what these users denote. (The user started with Anonymous)
asked
4 answers
2

Hi

Mendix creates a annonymous user object whenever you hit the mendix without login. Mendix uses this method to control the acess for the annonymous users.

 

Hope it helps !

answered
2

Hi,

Please check the flow where you have done a Create object if it there pls delete that activity and check it once.

 

answered
0

This behaviour only happens when you allow anonymous users.

 

If you want to get rid of these objects, you can create a scheduled event that retrieves all anonymous users. Use the lastlogin date to differentiate which of those users are safe to delete.

answered
0

As others have mentioned this occurs when an anonymous user visits the site. A unique User is created specifically for them by Mendix.

You can clean up the old data using the System Management module from the Marketplace.
https://marketplace.mendix.com/link/component/113984

Hope this helps.

answered