Search found 1973 matches
- Thu Aug 28, 2025 12:43 pm
- Forum: Developers Discussion
- Topic: Error When Submitting XML File for New Module Version
- Replies: 1
- Views: 632
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: 1434
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: 1029
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: 1434
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: 936
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: 1434
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: 1926
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: 4423
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: 3786
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: 7
- Views: 5469
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: 5115
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: 6979
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: 5087
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...
- Mon Nov 04, 2024 2:48 pm
- Forum: CMSMS Core
- Topic: Large number of cache files
- Replies: 25
- Views: 12199
Re: Large number of cache files
I did have some time to look at the files, and they are legit CMSMS cache files. In a site with a high number of hits I should expect the cache files to be quite high, in particular if there is dynamic content rather then static. From my assessment: - no unusual modules; - no particularly unusual te...
- Mon Nov 04, 2024 2:43 pm
- Forum: Developers Discussion
- Topic: Integrate API into new module
- Replies: 1
- Views: 2313
Re: Integrate API into new module
I do that a lot, but it is not a small task, depending quite a bit on the size and number of features the API offers, and the ones you want to deploy with the API. Also the methodology may vary depending on which technology you use to access the endpoints and any webhooks that may provide. The acces...