Blog Sections Open
Passwordless Login Patterns for Evolution CMS
A practical authentication note about passwordless login in Evolution CMS and why the real question is usually flow design, not raw implementation difficulty.
Passwordless login sounds like a big architectural jump, but for many CMS projects the interesting part is not whether it is theoretically possible. It is how to shape the flow cleanly for real users. The Telegram note behind this post made a good point: Evolution CMS already has pieces of the required logic in existing reset-password workflows, so the problem is often smaller than it first appears.
That does not mean every project should switch immediately. But it is a strong best-practices topic because it forces teams to think about authentication UX, email delivery, one-time access links, and when simpler sign-in flows can reduce friction safely.
What teams should think through first
- whether email-link login really solves a user problem on the site
- how to handle secure token lifetime and invalidation
- how to reuse existing recovery flows instead of reinventing everything
Source: Telegram post and the related passwordless-login article.
Preserving Checkbox Values in FormLister After Validation Errors
Keep FormLister checkbox selections intact when a form is re-rendered after validation errors.
When phpThumb and Ad Blockers Break Image Previews
How to diagnose image previews disappearing because phpThumb-generated cache names trigger ad blockers, and what to change in thumbnail generation strategy.