Editor not there?!

Questions about how to install and problems installing - please read the documentation first!
Post Reply
itodd
Posts: 5
Joined: Sun Apr 05, 2009 8:43 am

Editor not there?!

Post by itodd » Sun Apr 05, 2009 8:55 am

I have installed it but the editor will not appear, so I installed tinymce... that didnt work either, please someone help

Here's my site: http://www.redoxdesigns.com/icr/test/cm ... /index.php

I can see 'NORMAL MODE VALIDATE LINKS IMAGES DOWNLOADS SETTINGS HELP LOGOUT' but nothing else...

Thanks!

mikey
Site Admin
Posts: 179
Joined: Tue May 27, 2008 3:15 am
Location: Sydney Australia

Re: Editor not there?!

Post by mikey » Sun Apr 05, 2009 9:28 am

check to make sure you have the "Onload" tag in the template

cheers
mikey

itodd
Posts: 5
Joined: Sun Apr 05, 2009 8:43 am

Re: Editor not there?!

Post by itodd » Sun Apr 05, 2009 12:36 pm

Code: Select all

<body <?php echo onload();?>>
?

Yes i have that

mvwd
Posts: 299
Joined: Tue Jun 17, 2008 10:35 pm
Location: Baden Württemberg / Germany
Contact:

Re: Editor not there?!

Post by mvwd » Sun Apr 05, 2009 2:11 pm

Why is the <?php echo head();?> missing?
Maybe one of the Javascript's you're using collides with the onload() needed by Editor.... remove the scripts and check again.

mvwd.

Till
Posts: 337
Joined: Tue May 20, 2008 7:20 am
Location: Germany: Bremen
Contact:

Re: Editor not there?!

Post by Till » Sun Apr 05, 2009 3:29 pm

itodd,

It seems you generated a totally messed up template:

1) Your template does not run properly unter Firefox - at least not under my version of Firefox.
2)CMSimple expects to find a template in its subdirectory "templates". It should look like /templates/myTemplate/....... It seems, you do not have a template under this subfolder.
3) CMSimple expects a template html file called template.htm and a stylesheet file called stylesheet.css. You seem to not have such files in appropriate subfolders.
4) All these CMSimple's expectations are generated by the function head() - as mvwd already mentioned, which you do not seem to have included in your (misplaced) html template file.

You should look at your CMSimple default settings and follow them.

Till

itodd
Posts: 5
Joined: Sun Apr 05, 2009 8:43 am

Re: Editor not there?!

Post by itodd » Sun Apr 05, 2009 7:36 pm

where does

Code: Select all

<?php echo head();?>
go?

thanks

Till
Posts: 337
Joined: Tue May 20, 2008 7:20 am
Location: Germany: Bremen
Contact:

Re: Editor not there?!

Post by Till » Sun Apr 05, 2009 8:28 pm

Code: Select all

<head>
<?php echo head();?>
</head>
Why don't you check the default template? Here, everything is said! And here all functions are listed.

Till

itodd
Posts: 5
Joined: Sun Apr 05, 2009 8:43 am

Re: Editor not there?!

Post by itodd » Sun Apr 05, 2009 10:51 pm

I did check the default one and that function was not on there.

itodd
Posts: 5
Joined: Sun Apr 05, 2009 8:43 am

Re: Editor not there?!

Post by itodd » Sun Apr 05, 2009 10:54 pm

Thanks a lot that worked! :)

Post Reply