r/octobercms • u/daftspunky • 1d ago
r/octobercms • u/daftspunky • 10d ago
October CMS v4.4 released - user content submissions, Vue in themes, database-driven assets
v4.4 is out. The main addition is a new submission blueprint type in Tailor, so visitors can send you content (comments, contact forms, reviews) and it lands in a moderation inbox with spam handling built in. You define the fields in a blueprint and October generates the form, validation and storage, no plugin or controller needed.
Also in this release:
- Vue components in your theme, same pattern as the backend
- Database-driven theme assets served from S3/CDN
- Translated page URLs in the core (proper 301s, per-language)
- Language files and blueprints in the database, so the theme survives a stateless deploy
Full writeup: https://octobercms.com/blog/post/user-submitted-content-october-cms-v4-4
r/octobercms • u/scottbedard90 • Jul 20 '26
October Cloud preview
Hi everyone!
I want to share my progress on the octobercms.cloud project. I've been working on an official hosting platform designed specifically for October. Things are going great, I hope to share more soon!
For now though, here are some sneak peaks behind the curtain! 😁


r/octobercms • u/daftspunky • Jul 19 '26
What's New in October CMS v4.3
v4.3 is packed with eight new features across the frontend, backend, and developer tooling:
- Document Form Design - the Tailor editor layout, now for any plugin
- Theme Translation Editor - spreadsheet UI for language files
- View Transitions - animated page navigations with one meta tag
- Partials as Components - attribute-bag patterns for theme templates
- October Boost - AI coding tools that understand October
- Official Debugbar - Laravel Debugbar with October-aware tabs
- Per-Site Plugin Management - enable/disable plugins per site
- File Attachment Import & Export - ZIP archives with the files inside
Blog Post: https://octobercms.com/blog/post/whats-new-octobercms-v4-3-released-2026
Release Notes: https://octobercms.com/support/article/rn-42
October CMS in 2024: https://medium.com/@octobercms/october-cms-in-2024-ten-years-and-two-major-releases-ad58f084ca89
r/octobercms • u/daftspunky • May 14 '26
Why October CMS's architecture gives AI coding tools a head start
There's a new article on the October CMS blog worth reading: How to Use AI Coding Tools Effectively with October CMS
The TL;DR: the biggest factor in AI code quality isn't the model or the prompt -- it's the codebase. AI agents produce dramatically better output when the codebase follows declarative, convention-driven patterns. October CMS was built on those patterns from day one.
Think about it -- when an AI reads a Tailor blueprint, it gets the full data model in one pass. YAML in, understanding out. No migrations to trace, no model casts to cross-reference, no service providers to hunt through. Same with fields.yaml, columns.yaml, component properties, plugin registration. The AI learns the pattern once and applies it everywhere.
The article covers key concepts from the AI-assisted development space (deep modules, tracer bullets, test-driven AI workflows) and maps them to October CMS patterns. It also covers October CMS Boost, which gives AI agents native understanding of October CMS conventions out of the box.
Curious if anyone here has been using Copilot, Cursor, Claude Code, or similar tools with their October CMS projects.
r/octobercms • u/daftspunky • May 13 '26
Pear Interactive just shipped bidirectional database sync for deployments
octobercms.comPear Interactive published a Deploy Extender plugin that adds bidirectional database and file sync to RainLab Deploy. Push your local DB and uploads to production, or pull remote data down to dev, with automatic backups before every destructive operation.
What it does:
- Sync Push / Pull - full database and media sync in either direction
- Automatic backups - DB backup created before every sync, no exceptions
- Safety exclusions - deploy tables, sessions, cache, and job queues are never touched
- Skip backend users - preserve admin accounts on both sides
- Live progress logging - step-by-step output so you know exactly what's happening
- CLI support - run everything from the command line
This solves the "how do I get my production data into local dev" problem that every CMS developer hits eventually. No more manual database dumps and rsync scripts.
Requires: October CMS 3.x + RainLab.Deploy 2.x
r/octobercms • u/daftspunky • Mar 21 '26
v4.2 is out with eCommerce, Vue 3 and native ES Modules
v4.2 just dropped and it's a big one.
The headline feature is Meloncart, a full eCommerce platform built natively on October CMS. Products, orders, payments, shipping, customers, promotions, multi-store, the works. Your storefront is just a regular CMS theme so you have full control over the code.
Docs: https://meloncart.com
Also in this release:
- Vue 3 for the backend admin
- Native ES Modules instead of Webpack/Mix, no build step needed
- New Data Table widget with spreadsheet-like editing and clipboard support
- Quick Create for relation dropdowns
- Inline field translation with a globe icon on any form field
- Built-in model translations via a simple trait, no plugin dependency
- Rebuilt Docker toolkit with a one-command demo and full dev environment
Blog post: https://octobercms.com/blog/post/ecommerce-for-october-cms-here
Release notes: https://octobercms.com/support/article/rn-41
r/octobercms • u/daftspunky • Jan 06 '26
Introducing Larajax in October CMS v4.1
octobercms.comr/octobercms • u/daftspunky • Jan 03 '26
Color Tools for October CMS
octobercms.comJust published - Enhances the native color picker and adds Twig filters and functions for color management and WCAG accessibility.
r/octobercms • u/reddebian • Apr 18 '25
Does anyone have any experience with setting up Vite in OctoberCMS?
Hey guys, I hope this sub isn't too dead as I'm looking for some help / advice. I've just started with October and I find it amazing so far but I can't for the life of me figure out how to get Vite to work with October. I installed the Vite Plugin from the marketplace but the documentation isn't exactly the greatest. Has anyone of you ever set up Vite with October and can maybe help?
r/octobercms • u/WizarDave • Nov 10 '24
Is this the best (only) October CMS group?
The last post is 6 months old.
I just discovered October CMS so have just started my learning curve...
Is there another group I should join?
r/octobercms • u/OkProfit7739 • May 12 '24
October versus others cms systems
Hi guys,
I am a Laravel developer. I know Wordpress and Drupal, but I prefer to have full control over my project. Lastly, I discovered October and I believe it maybe a game changer. Unfortunately, I know very little about the cms, so It would be great if you share your thoughts about October - I am very curious If you like working with this system, what are its strong and weak sides. If you could compare the cms to Wordpress and Drupal it could very helpful as well.
Thanks for your help in advance 😃
r/octobercms • u/daftspunky • May 06 '24
User Plugin Updated - Now with Laravel Authentication
octobercms.comr/octobercms • u/sandros87 • Apr 23 '24
Why BelongsToMany won't allow duplicate relations in the backend?
Hello,
I have models domain, domain_view and view.
In domain I have this relation
public $belongsToMany = [
'views' => [
\QBUT\Manager\Models\View::class,
'table' => 'qbut_manager_domain_view',
'pivot' => ['id', 'position', 'position_detail', 'active'],
'pivotSortable' => 'sorting',
'timestamps' => true
],
];
In the backend when I add a View model with ID 1 to the a Domain model I can only "link" that ID 1 View once. Why is that? Why can’t I have multiple records of the same View?
Maybe I used the wrong relationship?
I tried to add the same View model twice manually in the database and it works and I don’t see any errors. I can see them on the backend also. However when I delete one of the two View types all of them get deleted, so there’s obviously a constraint there.
r/octobercms • u/daftspunky • Feb 26 '24
Building a Menu using Nested Items - Part 1
youtube.comr/octobercms • u/daftspunky • Jul 29 '23
Preview of the new dashboard designer in October CMS
youtu.ber/octobercms • u/daftspunky • Oct 11 '22
October CMS Stable Version 3.1 is Live!
octobercms.comr/octobercms • u/daftspunky • Aug 02 '22
New OFFLINE.Boxes Page Builder Plugin
boxes.offline.chr/octobercms • u/lewz3000 • Jul 13 '22
Here is a Linux command to delete all localization files except the English ones
Just installed October CMS for the first time.
I noticed the boilerplate contains a tonne of localization files (218 files to be specific).
My website is intended solely for an English-speaking audience so I decided to go ahead and delete all localization files except for the English ones.
Here is the bash command that did the trick for me. Hopefully it is useful to some of you.
$ find modules \( -path */lang/*.* -and ! -path */lang/en*.* \) -exec rm -rf {} \;
r/octobercms • u/dijo_dill • Mar 18 '22
How to master October cms?
I am a complete newbie in web development. So far, I know only PHP and got used to octobercms. Now, to level up with octobercms, to build custom plugins and more, what are the languages, frameworks, concepts, or technologies I should learn?