Search found 2 matches
- Wed Oct 07, 2009 4:20 pm
- Forum: General Discussion
- Topic: Load core, modules and tags on demand
- Replies: 4
- Views: 2628
Re: Load core, modules and tags on demand
I don't get your point. In PHP4 you could simply use a proxy(not the network thing, the design pattern). You just have to find a nicer generic adaptation than in the following sample. function parse(&$text) { include_once ("bb.parse.php"); return bbparse($text); } In PHP 5 it's even ...
- Mon Sep 28, 2009 4:15 pm
- Forum: General Discussion
- Topic: Load core, modules and tags on demand
- Replies: 4
- Views: 2628
Load core, modules and tags on demand
Hi, I'm thinking about migrating the content of my own cms to CMSMS. Therefor I installed the current version and some modules and recognize afterward that a plain page need more than 8MB of memory. Even without modules it are 4MB. Can anybody tell me why the whole cms (with modules and tags ...) is...