Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
CMSMadeSimple - pages very slow to load?
3stripe
✭✭
Any http://cmsmadesimple.org/ users here?
I'm testing my first ever install of this at http://tinyurl.com/f7srf
Easy enough to set up - but it seems VERY slow - taking 3/4 secs to generate a page on Firefox 1.5 Mac, and about that time to load each page in the Admin Panel as well!!!!
This is way to slow for my liking - any ideas how to speed up?
(I've got a feeling my shared hosting might be partly to blame - however Wordpress operates at a normal speed on my account so not sure why CMSMadeSimple is running so much slower)
0
This discussion has been closed.
Comments
Wouldn't it be simpler, faster and lighter to use a blog tool and custom navigate and template it?
zoom!
I've got the second column working fine... using this marker to divide the post into two:
<?php $content = split("<!--nextcolumn-->", $post->post_content); ?>
and then calling the content like this:
<?php echo apply_filters('the_content', $content[0]); ?>
<?php echo apply_filters('the_content', $content[1]); ?>
But now I want to have TWO textareas inside 'Write post' to matche these two columns.
... instead of having both columns editable in the same textarea.... does that make sense :-?
split the "admin/write.php" so that you can write both sections from the same input page
Yes! You got it!
Was trying my hardest to make some sense.
There would be 2 input textareas, each with there own formatting quicktags above, to give you a left and right content block... either side by side, or one above the other.
Have posted some messages about this on WP forum but no answers yet from that, or the WP hackers mailing list...
I did try adding the split function to the php for 'write post' - but it just gave me a < br > in each of the textareas...
In wp, the admin/post input page is handled in the fairest possible way. You choose your category, and then post the entry. The code you write up for your index will then display it as desired. I have used wp for extensive cms work, and limited the index to a single cat (news) and created the remaining site using pages, and then created footers, and sidebars, and cat specific loops to display other entries. It works really well.
The immediate trouble I see with what you're looking to do is that you want to create your multi entry from a single input page.
This would seem to be a matter of either a.) hard coding the cat for the second input box (perhaps edit the except input box and assign it to post in a specific cat) which seems limited, and might cause problems when you post (two new entries at once.)
Another solution might be to duplicate the input boxes and cat selection on the same page so that you can choose the details for both posts at the same time.
This would assume that you were ALWAYS going to make a dual entry, and might still cause problems when posting two entries at once.
Here's a totally different approach:
Why not use CSS to style your post's content and use a desigtn specific div to create the secondary content?
for example:
post.php: With CSS you could easily create vertical columns which flow (if that's what you want.)
The only problem i see with this solution is that if the entry for the A post is quite long, and you want to add a "read more" link, then you would have to be very careful about where you placed that code, and think carefully about how you write up your entry to avoid the second column not showing up, or the read more link being in the wrong place.
just a thought.
my main concern is making things easy for the client - whatever the solution - it should be easy to use - so they don't mess up the site when they update it. (static verion of the site already online at http://tinyurl.com/h97de)
having seen how easy it was to have multiple content areas in CMS-MS (if there are 2 content tags in your template, the edit page spots them, and automatically shows 2 editing areas), i thought it couldn't be so hard to do this in wordpress. maybe I should ask on the CMS-MS how they do it there?
anyhow, best solution i can think of for now is to use the option, and add my own quicktag to the formatting bar to insert this - something similar to the existing 'more' quicktag...
i like your secondary div suggestion (in fact i've done something with blockquote before to the same effect) but i think it's too hard for the client to do....
Then the solution is definitely to create this CSS solution, and then to add a java quicktag for the client to click to automatically create the div needed.
Then all you need worry about is IF your client can use quicktags (not available in safari)
Seems to me to be the most hassle free method.
But I like the solution a lot for my own use, I just wouldn't rely on a client's ability to remember that (or use it.) Quicktags are always right there in front of them.