Search found 203 matches

by chrisbt
Tue Jul 29, 2025 9:08 am
Forum: Developers Discussion
Topic: Special Characters Display Issue
Replies: 3
Views: 231

Re: Special Characters Display Issue

I haven't dealt with solved this myself but there are plenty of other discussions around this issue. If you search for it you should find plenty of answers. Here's one from a long time ago... viewtopic.php?t=204
by chrisbt
Mon Jul 28, 2025 3:19 pm
Forum: Developers Discussion
Topic: Delete folder while running update
Replies: 3
Views: 129

Re: Delete folder while running update

This is the code I used in the ECB2 module to remove files & dirs on upgrade: $module_path = $this->GetModulePath(); if ( version_compare($oldversion, '1.8') < 0 ) { // remove sub dirs $dirsToRemove = ['/lib/js/images', '/icons']; foreach ($dirsToRemove as $delDir) { foreach (glob($module_path.$...
by chrisbt
Mon Jul 28, 2025 3:01 pm
Forum: Developers Discussion
Topic: Gave release wrong name
Replies: 2
Views: 138

Re: Gave release wrong name

In the file package just set Active to 'false' - that hides the release than add the new renamed release. :)
by chrisbt
Sat Jul 19, 2025 2:34 pm
Forum: Developers Discussion
Topic: Uploading new Module
Replies: 4
Views: 386

Re: Uploading new Module

It look's like its approved now ready for you to upload the files :)
by chrisbt
Thu Jul 10, 2025 2:10 pm
Forum: Developers Discussion
Topic: IS Document available
Replies: 2
Views: 411

Re: IS Document available

For the CMSMS core all the code is documented in here: https://apidoc.cmsmadesimple.org/ It's not really the easiest to navigate through, but if you use the search it works quite well. I tend to find an interesting method (function) and then see what else is interesting in the same class. For smarty...
by chrisbt
Wed Jul 02, 2025 2:47 pm
Forum: Developers Discussion
Topic: Should I Use a Module or a Plugin to Build a Standalone Login Feature?
Replies: 1
Views: 812

Re: Should I Use a Module or a Plugin to Build a Standalone Login Feature?

I'd almost certainly go for a module. You quite quicky run out of functionality with a plugin as it's basically just the one file with functionality. But you can start with it as a plugin the move the code into a module quite easily. Personally I'd just download the MAMS module and use that unless y...
by chrisbt
Tue Jun 03, 2025 3:02 pm
Forum: Modules/Add-Ons
Topic: Challenges Integrating Real-Time Embedded Visualizations into CMS Made Simple Templates
Replies: 1
Views: 784

Re: Challenges Integrating Real-Time Embedded Visualizations into CMS Made Simple Templates

I'm not sure that CMSMS would be causing any particular issues, but may how it is being used. If you are including js within page templates then to need to make sure it's not being recognised as containing smarty delimiters { & } e.g. by using {literal tags} see: https://www.smarty.net/docsv2/en...
by chrisbt
Sun Mar 16, 2025 10:05 pm
Forum: Modules/Add-Ons
Topic: TinyCME is not working after installation
Replies: 2
Views: 3267

Re: TinyCME is not working after installation

There is some bugs in the current version of TinyMCE when working with PHP8, for now I'd recommend using the simplified core version of MicroTiny.

Hopefully a fixed version of TinyMCE will be out soon.

Chris
by chrisbt
Wed Mar 05, 2025 8:43 pm
Forum: Developers Discussion
Topic: Simple Steps for Converting a WordPress Website to a CMS
Replies: 1
Views: 1519

Re: Simple Steps for Converting a WordPress Website to a CMS

Hi, As far as I know the only option at the moment is the ImportExport module that I have started working on. https://dev.cmsmadesimple.org/projects/importexport So far it will import WP posts into a LISE Instance but I haven't worked on importing WP pages into Content Manager. Importing Products is...
by chrisbt
Thu Feb 13, 2025 9:42 am
Forum: Developers Discussion
Topic: Load photos into module
Replies: 2
Views: 1614

Re: Load photos into module

Hi Martin, FileManager will do some of that but as far as I know not the resizing or converting. It will do some of the sanitizing but you might need to add a few checks yourself. The ECB2 module uses Dropzone to handle image imports and it does work really well. It's fairly easy to implement. There...
by chrisbt
Thu Jan 23, 2025 1:28 pm
Forum: General Discussion
Topic: TinyMCE
Replies: 30
Views: 44076

Re: TinyMCE

It's in progress just not getting enough time to complete it. Trying to juggle too many jobs. I have a few clients chasing me for it too so hopefully not long now.
by chrisbt
Mon Dec 09, 2024 9:29 am
Forum: General Discussion
Topic: TinyMCE
Replies: 30
Views: 44076

Re: TinyMCE

Yup. Planned before the end of the year
by chrisbt
Mon Nov 11, 2024 9:56 am
Forum: Help Wanted (commercial)
Topic: Multi File Select Field Definition -> multi image picker for LISE or Gallery
Replies: 3
Views: 37134

Re: Multi File Select Field Definition -> multi image picker for LISE or Gallery

Hi Johnny, I could do something like that with ECB2, Gallery field. Optionally have it just use images from a specific directory, that you can select multiple images from. Woul dthat meet your requirements? For now that would only work in a Content Page, but JoMorg is working on a feature that will ...
by chrisbt
Tue Oct 22, 2024 10:04 am
Forum: Modules/Add-Ons
Topic: ECB2 (Enhanced Content Blocks) Support Page
Replies: 30
Views: 22516

Re: ECB2 (Enhanced Content Blocks) Support Page

Hi @musicscore, I added in the Smarty call just as you had it and it worked, mostly, as expected. There was a new tab added 'Pagina Settings' with a select that was empty (as I didn't have a dir 'background-images'): {content_module module="ECB2" field="file_selector" block="...
by chrisbt
Mon Sep 23, 2024 6:20 pm
Forum: CMSMS Core
Topic: new design is ignored
Replies: 7
Views: 3775

Re: new design is ignored

Try working through the PHP error logs to see what is breaking it. Also double check the PHP version that is being used.

It sounds like there was another issue hiding in the background.

Go to advanced search