Blog Sections Open
Handling Multiple File Attachments in FormIt
If one attachment works but two break the whole form, the mail and upload pipeline probably still assumes a single-file field.
Multi-file attachment flows often fail at the first scale-up step: one upload field works, but adding a second stops submission and breaks the redirect entirely.
What this usually means
The upload parser, mail builder, or redirect flow still assumes one attachment input. As soon as a second field appears, the request handling no longer matches the form structure.
Recommendation
Treat multiple attachments as a dedicated form design problem. Validate each input, confirm how the mail layer appends files, and test the redirect only after the upload loop is working.
Making mm_requireFields Work with Dropdown TVs in ManagerManager
A small ManagerManager patch that lets mm_requireFields validate dropdown fields the same way it already validates text inputs and textareas.
Showing the Latest Jot Comments Across the Site
A good recent-comments block needs more than a raw query — it needs truncation, links back to the article, and predictable formatting for old comment data.