- use only CMSMS modules you really need
- host the webcontent/database on SSDs
- optimize images (webp/avif) before uploading to CMSMS
- follow best practices, e.g. https://pagespeed.web.dev/
Search found 92 matches
- Tue Jun 10, 2025 9:39 am
- Forum: Developers Discussion
- Topic: How Do You Keep Your CMSMS Sites Clean and Fast Over Time?
- Replies: 1
- Views: 107
- Thu Jun 05, 2025 9:36 am
- Forum: CMSMS Core
- Topic: a problem with adding PHP to template with UDT
- Replies: 3
- Views: 585
Re: a problem with adding PHP to template with UDT
just for reference: https://dev.cmsmadesimple.org/bug/view/12749 This bug has already been fixed in the trunk , hasn't it? file \admin\editusertag.php line 98 instead of try { eval($code); ob_get_clean(); }; it's now: try { # let's try to eval the code but not execute it $tmp = 'return;' . $code; ev...
- Wed May 28, 2025 11:55 am
- Forum: CMSMS Core
- Topic: CMSms what happens next? Development? PHP Problems? What does the future look like?
- Replies: 6
- Views: 3255
Re: CMSms what happens next? Development? PHP Problems? What does the future look like?
Do you need beta testers for 2.2.22?
I'm eager for the change "upgraded Smarty to 4.5.5 (should raise the PHP compatibility to version 8.4+)"
I'm eager for the change "upgraded Smarty to 4.5.5 (should raise the PHP compatibility to version 8.4+)"

- Wed May 14, 2025 12:44 pm
- Forum: CMSMS Core
- Topic: Cannot use emojis in any content (character encoding issue)
- Replies: 8
- Views: 2585
Re: Cannot use emojis in any content (character encoding issue)
MariaDB 11.6's default is utf8mb4 https://mariadb.com/kb/en/changes-improvements-in-mariadb-11-6/ MariaDb 10.5 to 10.6 changed the default from utf8 to utf8mb3: https://mariadb.com/kb/en/upgrading-from-mariadb-10-5-to-mariadb-10-6/ However, MariaDB 10.6 also supports collations like "utf8mb4_bi...
- Fri Apr 25, 2025 9:01 am
- Forum: Modules/Add-Ons
- Topic: CMSMLE redirecting to https://en - removing my domain from the url
- Replies: 2
- Views: 753
Re: CMSMLE redirecting to https://en - removing my domain from the url
Maybe that ancient knowledge helps?
https://web.archive.org/web/20170508123 ... ms-module/
https://web.archive.org/web/20170508123 ... ms-module/
- Fri Feb 28, 2025 8:22 am
- Forum: Modules/Add-Ons
- Topic: webp_image returning original source files
- Replies: 3
- Views: 4014
Re: webp_image returning original source files
You could also file a pull request to the original author, see:
https://github.com/wdwp/webp_image (via http://dev.cmsmadesimple.org/project/code/1480)
https://github.com/wdwp/webp_image (via http://dev.cmsmadesimple.org/project/code/1480)
- Tue Feb 25, 2025 9:46 am
- Forum: Modules/Add-Ons
- Topic: webp_image returning original source files
- Replies: 3
- Views: 4014
Re: webp_image returning original source files
It could be possible that the original solution also required editing the .htaccess file like this: https://github.com/vincentorback/WebP-images-with-htaccess But nowadays all those checks are obsolete as all current web browsers support "webp" images, see https://caniuse.com/?search=webp ...
- Mon Feb 03, 2025 2:39 pm
- Forum: General Discussion
- Topic: TinyMCE
- Replies: 30
- Views: 42738
Re: TinyMCE
Maybe the work is already done?
see first pull request on github: https://github.com/cmsmadesimple/cmsmadesimple/pull/1
see first pull request on github: https://github.com/cmsmadesimple/cmsmadesimple/pull/1
- Tue Jan 21, 2025 10:37 am
- Forum: General Discussion
- Topic: Securing CMS Made Simple Against Recent Vulnerabilities
- Replies: 4
- Views: 1947
Re: Securing CMS Made Simple Against Recent Vulnerabilities
found some more CMSMS-specific .htaccess declarations (see your directory "/doc/htaccess.txt" for more examples): # exclude some CMSMS modules # RedirectMatch 403 ^.*/modules/.*\.php$ RedirectMatch 403 ^.*/modules/(?!TinyMCE/responsive_filemanager/filemanager/).*\.php$ RedirectMatch 403 ^....
- Sun Jan 19, 2025 4:15 pm
- Forum: General Discussion
- Topic: Securing CMS Made Simple Against Recent Vulnerabilities
- Replies: 4
- Views: 1947
Re: Securing CMS Made Simple Against Recent Vulnerabilities
A good starting point is securing the webserver first:
https://github.com/h5bp/server-configs- ... /.htaccess
https://github.com/h5bp/server-configs- ... /.htaccess
- Wed Sep 25, 2024 2:35 pm
- Forum: Installation und Einstellungen
- Topic: Provider ändert IP Adresse - CMSms Admin Login verschwunden?
- Replies: 3
- Views: 33366
Re: Provider ändert IP Adresse - CMSms Admin Login verschwunden?
Wie sieht denn dein A-Record in deinen DNS-Einstellungen aus? (ggf auch der AAAA-Record für die IPv6 IP) Also der Eintrag mit meineseite.de. (mit Punkt am Ende) - verweist der Eintrag vielleicht noch auf die alte IP? Hier kannst du auch mal prüfen, welche IP zur Domain aufgelöst wird: https://mxtool...
- Tue Sep 24, 2024 9:20 am
- Forum: CMSMS Core
- Topic: Smarty Updates
- Replies: 7
- Views: 9350
Re: Smarty Updates
The deprecation notice of the "count()" function has been fixed in version 4.5.4:
https://github.com/smarty-php/smarty/bl ... ANGELOG.md
https://github.com/smarty-php/smarty/bl ... ANGELOG.md
- Wed Sep 04, 2024 7:27 am
- Forum: CMSMS Core
- Topic: .htaccess error handling not working
- Replies: 5
- Views: 3569
Re: .htaccess error handling not working
Redirect geschichte/stiftung https://www.domain.ch/geschichte try following approach (respect trailing slashes in your case) for single redirects Redirect 301 /geschichte/stiftung https://www.domain.ch/geschichte/ or if it's the same domain this will suffice Redirect 301 /geschichte/stiftung /gesch...
- Wed Aug 28, 2024 6:35 am
- Forum: CMSMS Core
- Topic: Large number of cache files
- Replies: 25
- Views: 11493
Re: Large number of cache files
Right, totally forgot about that. I never touched that setting 

- Tue Aug 27, 2024 8:58 am
- Forum: CMSMS Core
- Topic: Large number of cache files
- Replies: 25
- Views: 11493
Re: Large number of cache files
Out of curiosity, I also had a look into the /tmp/cache folder:
It currently holds 9998 files with timestamps from today and up to 14 days ago.
So I guess there is some kind of 2 week rotation?
It currently holds 9998 files with timestamps from today and up to 14 days ago.
So I guess there is some kind of 2 week rotation?