- 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/
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...
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...
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 ...
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 ^....
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...
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...