Marco

Results 397 comments of Marco
trafficstars

That multi-session capability is not the norm, though, wouldn’t you agree? In any case, this cannot be done without an account switcher. So that’s something that has to go into...

Thanks! Did you put the new code into the correct files and places? The first block of code goes into the `Administration` class while the second goes into the `UserManager`...

Did you have a chance to try the additional notes and potential fixes?

Thanks for your appreciation! > I was wondering: is there an easy way to disable the email verification feature, and auto sign-in after registration? Sure, this is possible. The README...

Thanks! That’s indeed the behavior we want (case-insensitive). What database system are you using though? SQLite, I guess? As far as I remember, that `COLLATE NOCASE` in a query would...

No problem! Could you test the alternative solution of using `COLLATE` on the columns in the schema (and removing it from the query again)? Or aren’t you interested in this...

Thanks! It’s the three columns ``` users.email users.username users_confirmations.email ``` where the `COLLATE` clause would have to be added.

Well, it really depends on what you want to do exactly. Let’s check if what you want might already be there: 1. If a user didn’t get their confirmation email,...

You’re right, we should leave this open and implement this as another feature in the `Administration` interface in the future. The advantage will be that you will no longer have...

Thanks! In general, we’re following the principle of *designing* for inheritance, instead of just opening up every single class to be extended and every method to be overridden: > Design...