Hello,
I am trying to install TinyMCE in for my text editor in CMS. TinyMCE
This is my code:
input_berita_static.php
<td valign="top">Isi berita</td>
<td>
<!-- TinyMCE -->
<head><!-- CDN hosted by Cachefly -->
<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>
<script>
tinymce.init({selector:'textarea'});
</script>
</head>
<body>
<textarea cols="60" rows="10" id="news" name="news"><?php echo $news;?></textarea>
</body>
<!-- end of TinyMCE -->
I wonder why my feature range only from undo button TO increase indent? I would like to see the insert and edit image to be there.
How ? I already extract the TinyMCE version 4.0.12 in my admin folder.