FCKEditor toolbar will not appear - solution

When using FCKEditor as a WYSIWYG editor in Drupal, if you've double-checked all your settings and you can't get the formatting toolbar to appear, check to make sure that your template (e.g. page.tpl.php) is printing out the $closure variable. Thanks, latentdabbler.

Topic: 

Comments

Thanks for the tip. This was driving me nuts, couldn't understand where the problem was!

I did a view source of the rendered page and was even seeing the FCKeditor initiated but still nothing was rendered. I just added

<?php print $closure; ?>

after </html> in the page.tpl.php file of my theme.

thx for help, i've been also searching for the fix:)