Search found 1975 matches
- Fri Sep 19, 2025 5:06 pm
- Forum: Modules/Add-Ons
- Topic: Preventing Race Conditions in SmartForms with LISE
- Replies: 2
- Views: 1077
Re: Preventing Race Conditions in SmartForms with LISE
Hi James at this point there is no locking mechanism in LISE and the one in the works is for the editor, at least for now. But you raise a good point, and I'll look into this for a future release. A possible solution would require some very smart PHP coding in the UDT, either by using a tmp file wit...
- Mon Sep 15, 2025 7:58 pm
- Forum: CMSMS Core
- Topic: 403 Error page not working after updating to CMSMS 2.2.22
- Replies: 9
- Views: 1396
Re: 403 Error page not working after updating to CMSMS 2.2.22
@webform anything in the php error log? that may help us a bit.
- Thu Aug 28, 2025 12:43 pm
- Forum: Developers Discussion
- Topic: Error When Submitting XML File for New Module Version
- Replies: 1
- Views: 1880
Re: Error When Submitting XML File for New Module Version
What's the size of the xml file? Our current forge has always had a limit on file size (can't recall the actual limit atm though), and lately has been a bit unstable too. We'll try to assess if there is anything we can do to mitigate it on our end, and let you know, but yeah compare files sizes... t...
- Tue Jul 29, 2025 4:26 pm
- Forum: Modules/Add-Ons
- Topic: LISE Import
- Replies: 8
- Views: 2809
Re: LISE Import
Sorry, I didn't forget about this, just didn't have time yet to test a theory I have about the possibility that the SQL query may be failing because of some new restriction on the Mariadb version. Will do asap!
- Tue Jul 29, 2025 4:24 pm
- Forum: Developers Discussion
- Topic: Variable in jquery animate command
- Replies: 3
- Views: 2301
Re: Variable in jquery animate command
Take a closer look at what is the final code you need to be rendered by Smarty: $(".myPopup").animate( {opacity: 1}); The {opacity: 1} is a Javascrip object and it needs the "{" and "}" as part of the object structure declaration... additionally, a Smarty variable needs...
- Tue Jul 22, 2025 12:25 pm
- Forum: Modules/Add-Ons
- Topic: LISE Import
- Replies: 8
- Views: 2809
Re: LISE Import
Ok what is your mySQL version by the way? It may be related...
- Mon Jul 21, 2025 5:29 pm
- Forum: Developers Discussion
- Topic: The use of Cookies
- Replies: 4
- Views: 2134
Re: The use of Cookies
Session variables only resist as long as the visitor keeps his browser open. When he closes his browser, start it again and opens the website again, the module will not know when that user/ip-address was here before. So I need to use Cookies or a database entry. That is why I think Session Variable...
- Sun Jul 20, 2025 10:27 am
- Forum: Modules/Add-Ons
- Topic: LISE Import
- Replies: 8
- Views: 2809
Re: LISE Import
I have come across that once, but can't really remember what it was that triggered it, but let's try to go by exclusion of parts. - In case those are all new records you are importing, are you removing the item_id from the selected fields to be imported? that may cause an error as that triggers edit...
- Sun Jun 29, 2025 2:06 pm
- Forum: Developers Discussion
- Topic: Newbee needs help develop a module
- Replies: 4
- Views: 3122
Re: Newbee needs help develop a module
Now I have 2 questions : Is the manual still valued. How can I check where the error is (in what code). Please advise. After the startup I think I will learn how to create modules but the startup is a little hard it seems. Please help. The manual is still valid. Most modifications made to the core ...
- Wed May 14, 2025 1:44 pm
- Forum: Modules/Add-Ons
- Topic: CGsmartimage module replacement? Which new module does the image processing job?
- Replies: 9
- Views: 4970
Re: CGsmartimage module replacement? Which new module does the image processing job?
I'm afraid there are a few bugs on the configuration handling in SI. I'll take a look at it ASAP.
- Wed May 07, 2025 2:44 pm
- Forum: Modules/Add-Ons
- Topic: [partial solved] XML Form import from vers. 0.8.1.6 to vers. 1.2 HTTP ERROR 500 when editing fields
- Replies: 5
- Views: 4239
Re: [partial solved] XML Form import from vers. 0.8.1.6 to vers. 1.2 HTTP ERROR 500 when editing fields
If it was a fresh install of the module 1.2 via Module Manager I suggest you download the archive and upload it manually to the site, overriding the old files of the module. It's a defect on the XML file that on some circumstances doesn't create the edit field action. In any case uploading the archi...
- Wed Apr 30, 2025 5:45 pm
- Forum: CMSMS Core
- Topic: CMSms what happens next? Development? PHP Problems? What does the future look like?
- Replies: 8
- Views: 8200
Re: CMSms what happens next? Development? PHP Problems? What does the future look like?
CMSMS has been going through some rough times but has been resisting. The next release will be PHP 8.3+ compatible and is imminent. We have been taking some steps to open the code to the community, namely moving the versioning from self-hosted SVN to Github and are starting a campaign to recruit mor...
- Wed Apr 23, 2025 6:22 pm
- Forum: Developers Discussion
- Topic: Bug Report – Custom Module Admin Tab Not Showing in CMSMS 2.2.18
- Replies: 1
- Views: 5565
Re: Bug Report – Custom Module Admin Tab Not Showing in CMSMS 2.2.18
What version of CMSMS have you upgraded from?
- Sat Mar 29, 2025 12:56 pm
- Forum: General Discussion
- Topic: Issue with UDT and Smarty Variables in Custom Module
- Replies: 1
- Views: 8224
Re: Issue with UDT and Smarty Variables in Custom Module
You shouldn't use global for this purpose, in fact CMSMS core has deprecated (and I'm almost sure we have removed...) its use in 99% of it's code. IIRC $smarty and $db should already be available for UDTs, but if not use the core API functions such as $db = cms_utils::get_db (); and $smarty = cms_ut...
- Sun Feb 23, 2025 5:42 pm
- Forum: Developers Discussion
- Topic: How to Integrate a Third-Party API with CMS Made Simple?
- Replies: 0
- Views: 7178
Re: How to Integrate a Third-Party API with CMS Made Simple?
I'm assuming that you are talking about PHP 3rd-party APIs. There are a few ways to do that, one being exactly by using an UDT. It's not a bad solution for smallish integrations since the code is evaluated and that has some impact on site speed. Now I've been researching a bit for the last few years...