Search found 1827 matches
- Tue Dec 09, 2025 4:04 pm
- Forum: General Discussion
- Topic: Issue after upgrading CMSMS to the latest version
- Replies: 1
- Views: 70
Re: Issue after upgrading CMSMS to the latest version
Start by checking the PHP error log, and the admin log. Feel free to share your results. Also include your PHP version, and a list of modules you're using (you can generate a text report in Site Admin > System Informaation).
- Wed Dec 03, 2025 3:00 pm
- Forum: Developers Discussion
- Topic: Website development with CMS Made Simple
- Replies: 2
- Views: 153
Re: Website development with CMS Made Simple
Third-party modules are supported by their respective authors rather than the CMSMS Dev Team, although a lot of the module creators are also on the Dev Team. You can typically find them here on the forums, or in our Slack channel. Each module typically has support information included in the documen...
- Tue Dec 02, 2025 2:48 pm
- Forum: Modules/Add-Ons
- Topic: Massive spam with Newsletter Made Simple
- Replies: 3
- Views: 265
Re: Massive spam with Newsletter Made Simple
If you think there may be a vector where bots can sign up via a url, you might want to comb through your access logs to check for a pattern. It may be fairly obvious. If you report that here, someone may be able to suggest a way to patch it.
- Tue Dec 02, 2025 2:47 pm
- Forum: Modules/Add-Ons
- Topic: TinyCME fails to load after installation
- Replies: 1
- Views: 97
Re: TinyCME fails to load after installation
Make sure to include information such as your CMSMS version, TinyMCE version, as well as all errors that appear in the console (F12), php error log, and admin log.
- Sat Nov 29, 2025 3:23 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Is there a WYSIWIG template editior/creator?
- Replies: 1
- Views: 234
Re: Is there a WYSIWIG template editior/creator?
No - there's a lot of sitebuilders out there, we decided from the start that CMSMS would aim to provide more power for developers rather than be a plug & play sitebuilder for the end user. Template design will require some html and css knowledge at a minimum. That said, if you use tools availabl...
- Wed Nov 26, 2025 11:30 pm
- Forum: CMSMS Core
- Topic: Get and use uploads_path in a template
- Replies: 4
- Views: 1945
Re: Get and use uploads_path in a template
Yep, you could do this in your UDT:
Code: Select all
global $config;
$uploads_url = $config['uploads_url'];- Wed Nov 26, 2025 5:09 pm
- Forum: CMSMS Core
- Topic: Get and use uploads_path in a template
- Replies: 4
- Views: 1945
Re: Get and use uploads_path in a template
I'm guessing this is LISE, if you look at the default templates they use ->GetImagePath(true), which you could probably adapt.
If you can't get that to work, you can always brute force it:
{$myimagepath = "{uploads_url}/{$item->image}"}
getimagesize($myimagepath)
If you can't get that to work, you can always brute force it:
{$myimagepath = "{uploads_url}/{$item->image}"}
getimagesize($myimagepath)
- Wed Nov 26, 2025 2:52 pm
- Forum: Modules/Add-Ons
- Topic: TinyCME not functioning after setup
- Replies: 3
- Views: 326
Re: TinyCME not functioning after setup
I don't think there's any extra steps required, there is a note in the documentation about changing an htaccess line if you're using the sample htaccess supplied with cmsms, but that should only affect the filepicker. I'm not sure if that applies to the 4.0 beta, I haven't tried it yet.
- Tue Nov 25, 2025 3:58 pm
- Forum: Modules/Add-Ons
- Topic: TinyCME not functioning after setup
- Replies: 3
- Views: 326
Re: TinyCME not functioning after setup
Make sure to include the following at a bare minimum to ensure a better response: - CMSMS version - PHP version - TinyMCE version Additional things that will help: - are there any errors in the browser console (F12) when in the page editor? - are there any errors in the PHP error log? - are there an...
- Wed Nov 19, 2025 11:03 pm
- Forum: Developers Discussion
- Topic: Unreliable Output from Module-Defined Smarty Functions
- Replies: 2
- Views: 577
Re: Unreliable Output from Module-Defined Smarty Functions
Do you have "Enable Smarty Caching" enabled in admin preferences by any chance? (this typically never goes well unless a lot of steps are taken to prevent issue)
- Fri Nov 14, 2025 7:20 pm
- Forum: Modules/Add-Ons
- Topic: LISE pagination active item
- Replies: 2
- Views: 523
Re: LISE pagination active item
There's probably better ways to do this, but here's one I quickly came up with:
changeto
change
Code: Select all
<li class="page-item">{$page->link}</li>
Code: Select all
<li class="page-item {if $page->link|strip_tags == $pagenumber} current{/if}">{$page->link}</li>- Thu Nov 13, 2025 4:01 pm
- Forum: CMSMS Core
- Topic: Editor folder permissions
- Replies: 4
- Views: 687
Re: Editor folder permissions
Try creating a filepicker profile (extension > filepicker) that starts at images - there might already be one there - and setting that to default. This should limit where they start for anything using filepicker, it just doesn't limit their access in File Manager or other modules.
- Thu Nov 13, 2025 2:30 am
- Forum: CMSMS Core
- Topic: Editor folder permissions
- Replies: 4
- Views: 687
Re: Editor folder permissions
File manager permissions are not that granular, users with access to files will have access to the Uploads folder and all subfolders unless you lock them down in your file system. Typically you would place any files they shouldn't have access to in a higher level than Uploads (e.g. /assets/)
- Fri Nov 07, 2025 4:30 pm
- Forum: Modules/Add-Ons
- Topic: Copy News-items between installs
- Replies: 2
- Views: 346
Re: Copy News-items between installs
ContentTools, which is a fork of CGContentUtilities, has the ability to export/import News (among other things). It's a pretty new release so I'd test it on a dev site or at least have a good backup first.
- Fri Oct 31, 2025 1:59 pm
- Forum: Modules/Add-Ons
- Topic: SmartForms - Could not find valid unique request id
- Replies: 12
- Views: 1150
Re: SmartForms - Could not find valid unique request id
Doubtful it's the order, but wherever it's failing is likely the culprit. Comment things out, disable handlers one at a time, etc. - see if you can get to a point where the problem goes away. Typically the "could not find valid unique request id" message prevents submission but in your cas...
