Search found 9 matches
- Fri May 03, 2013 6:52 pm
- Forum: CMSMS Core
- Topic: CMS Made Simple Caching Problem
- Replies: 8
- Views: 2377
Re: CMS Made Simple Caching Problem
I realize my post wasn't terribly constructive - I'll provide more detail: 1) The only custom module I use is one I ultimately wrote - religiously avoiding the API whenever I could as it seems to be deprecated and broken with every successive release. It's possible that somehow MySQL is returning th...
- Fri May 03, 2013 4:43 pm
- Forum: CMSMS Core
- Topic: CMS Made Simple Caching Problem
- Replies: 8
- Views: 2377
Re: CMS Made Simple Caching Problem
Well upgrading might solve the problem but it appears to fundamentally break the back end.
TBH - I don't have these problems in the Wordpress world. I think I'm just going to convert the site over to Wordpress and be done with it. Versioning and upgrading in CMSMS is just too much trouble.
TBH - I don't have these problems in the Wordpress world. I think I'm just going to convert the site over to Wordpress and be done with it. Versioning and upgrading in CMSMS is just too much trouble.
- Thu May 02, 2013 8:19 pm
- Forum: Developers Discussion
- Topic: Getting Parent ID in Latest CMS Made Simple
- Replies: 1
- Views: 6771
Getting Parent ID in Latest CMS Made Simple
It appears that upgrading the CMS has broken the CMSMS API - Can anyone tell me how to get the parent ID in the latest version of the API? What's wrong with the script below - worked before. $gCms = cmsms(); $contentops = $gCms->GetContentOperations(); $content_obj = $contentops->getContentObject();...
- Thu May 02, 2013 5:27 pm
- Forum: CMSMS Core
- Topic: CMS Made Simple Caching Problem
- Replies: 8
- Views: 2377
Re: CMS Made Simple Caching Problem
Thanks guys - I will give it a try and report back.
- Mon Apr 29, 2013 4:10 pm
- Forum: CMSMS Core
- Topic: CMS Made Simple Caching Problem
- Replies: 8
- Views: 2377
CMS Made Simple Caching Problem
Specs: Linux CentOS WHM/cPanel server running CMSMS 1.11.1 "Baltra" I recently migrated the site to a new server, and since then the UDTs and GCBs periodically disappear with a comment <!-- [udt or gcb] blob does not exist --> If I clear the 'cache' and 'templates_c' directories, the UDTs ...
- Fri May 27, 2011 1:35 pm
- Forum: CMSMS Core
- Topic: Rewrite Question
- Replies: 1
- Views: 863
Re: Rewrite Question
Nothing eh? All right - I guess I'll keep hacking away at it. Any input is greatly appreciated.
- Tue May 24, 2011 4:13 pm
- Forum: CMSMS Core
- Topic: Rewrite Question
- Replies: 1
- Views: 863
Rewrite Question
I'm not an htaccess ninja by any means - but I've noticed that CMS Made Simple seems to honor two different ways of getting to a page: 1) http://www.yourdomain.com/page.html & 2) http://www.yourdomain.com/page/ Does anybody know why this is - and if they do - how to fix it? Here is my htaccess: ...
- Wed Mar 09, 2011 6:31 pm
- Forum: Tips and Tricks
- Topic: Google Site Map using only MenuManager (and mod_rewrite)
- Replies: 7
- Views: 9548
Re: Google Site Map using only MenuManager (and mod_rewrite)
Fixed. Revise the code to this: {if $node->alias !== "sitemap"} <url> <loc>{$node->url}</loc> <lastmod>{$node->modified|date_format:'%Y-%m-%dT%T-08:00'}</lastmod> <changefreq>daily</changefreq> <priority>0.5</priority> </url> {/if}
- Thu Mar 03, 2011 7:54 pm
- Forum: Tips and Tricks
- Topic: Google Site Map using only MenuManager (and mod_rewrite)
- Replies: 7
- Views: 9548
Re: Google Site Map using only MenuManager (and mod_rewrite)
Anyway to exclude sitemap.html from the sitemap? I don't really want that page indexed.