Hello,
Please explain what do you mean by this sentence:
"Intelligent caching mechanism to only get what is necessary from the database"
This is taken from here:
http://www.cmsmadesimple.org/features/for-programmers/
Regards,
Razvan
Search found 8 matches
- Thu May 06, 2010 11:23 am
- Forum: General Discussion
- Topic: Intelligent caching mechanism to only get what is necessary from the database
- Replies: 0
- Views: 1019
- Thu Jan 14, 2010 8:13 am
- Forum: The Lounge
- Topic: CMSMS & NGinx
- Replies: 0
- Views: 2295
CMSMS & NGinx
Hello,
Can I run CMSMS on NGINX? Are there any known issues?
Regards,
Razvan
Can I run CMSMS on NGINX? Are there any known issues?
Regards,
Razvan
- Mon Jun 22, 2009 11:16 am
- Forum: General Discussion
- Topic: CMSMS - security record?
- Replies: 11
- Views: 5811
Re: CMSMS - security record?
With all things from the security guide applied, I would worry more about keeping your admin and FTP passwords secure. Consequently, if your site was infected, do not blame CMSMS first, think whether it was a virus that stole your saved FTP password and sent it back to its creator. I am *not* using...
- Mon Jun 22, 2009 6:07 am
- Forum: General Discussion
- Topic: CMSMS - security record?
- Replies: 11
- Views: 5811
Re: CMSMS - security record?
Hello, the documentation includes a small security guide. Everybody can contribute hardening recipes. The core has been reviewed and patched for holes. As an http thing a CMSms install can be protected with additional http things. Off site backups always help. Pierre M. I agree with you: things can...
- Fri Jun 19, 2009 7:16 am
- Forum: General Discussion
- Topic: CMSMS - security record?
- Replies: 11
- Views: 5811
Re: CMSMS - security record?
Razvan, since the 1.2 series, no CMSMS hack has been reported. Some sites have been hacked since then, but those were shared-hosting or other attacks, no CMSMS hacks. Ronny I am really glad to hear this. I will use some modules that I will develop - and those are going to be secure. What also needs...
- Fri Jun 19, 2009 6:16 am
- Forum: General Discussion
- Topic: CMSMS - security record?
- Replies: 11
- Views: 5811
CMSMS - security record?
Hello,
Does CMSMS have a good security record?
People who are using it: did you had security breaches?
Regards,
Razvan
Does CMSMS have a good security record?
People who are using it: did you had security breaches?
Regards,
Razvan
- Tue Jun 16, 2009 6:35 am
- Forum: Developers Discussion
- Topic: How to sanitize input parameters with CMSMS? (the built-in mechanism)
- Replies: 3
- Views: 3047
Re: How to sanitize input parameters with CMSMS? (the built-in mechanism)
$step = $_REQUEST['step']; You must use a CreateForm/CreateLink API's for sending. This create a (about) m1_step if you look in $_REQUEST and step in $params Alby Thank you for your answer. I've seen in the "News" plugin that they are using code like this: $step = $params['step']; When sh...
- Mon Jun 15, 2009 6:45 am
- Forum: Developers Discussion
- Topic: How to sanitize input parameters with CMSMS? (the built-in mechanism)
- Replies: 3
- Views: 3047
How to sanitize input parameters with CMSMS? (the built-in mechanism)
Hello, I am trying to sanitize the input parameters using the mechanism that is built-in into CMSMS. For this purpose, in the function "SetParameters()" I am defining this: function SetParameters() { $this->RestrictUnknownParams(); $this->SetParameterType('step', CLEAN_STRING); $this->mCac...