Quismo adlı üyeden alıntı: mesajı görüntüle
Arkadaşlar TinyMCE kurdum fakat image bölümünü göremiyorum ayrettenmi kuruluyor ? yardımcı olabilir misiniz ?

Buyur burada anlatim mevcut ;

TINYMCE 4.X;
Alıntı
<!-- TinyMCE 4.x -->

<script type="text/javascript" src="/tinymce_4.x/tinymce/js/tinymce/tinymce.min.js"></script>
<script type="text/javascript">

tinymce.init({
selector: "textarea",

// ===========================================
// INCLUDE THE PLUGIN
// ===========================================

plugins: [
"advlist autolink lists link image charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste jbimages"
],

// ===========================================
// PUT PLUGIN'S BUTTON on the toolbar
// ===========================================

toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image jbimages",

// ===========================================
// SET RELATIVE_URLS to FALSE (This is required for images to display properly)
// ===========================================

relative_urls: false

});

</script>
<!-- /TinyMCE -->
TINYMCE 3.X ;
Alıntı
<!-- TinyMCE 3.x -->

<script type="text/javascript" src="tiny_mce-3.x/tiny_mce_src.js"></script>
<script type="text/javascript">

tinyMCE.init({

mode : "textareas",

// ===========================================
// Set THEME to ADVANCED
// ===========================================

theme : "advanced",

// ===========================================
// INCLUDE the PLUGIN
// ===========================================

plugins : "jbimages,autolink,lists,pagebreak,style,layer,tab le,save,advhr,advimage,advlink,emotions,iespell,in linepopups,insertdatetime,preview,media,searchrepl ace,print,contextmenu,paste,directionality,fullscr een,noneditable,visualchars,nonbreaking,xhtmlxtras ,template,wordcount,advlist,autosave",

// ===========================================
// Set LANGUAGE to EN (Otherwise, you have to use plugin's translation file)
// ===========================================

language : "en",

theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,striketh rough,|,justifyleft,justifycenter,justifyright,jus tifyfull,styleselect,formatselect,fontselect,fonts izeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,repla ce,|,bullist,numlist,|,outdent,indent,blockquote,| ,undo,redo,|,link,unlink,anchor,image,cleanup,help ,code,|,insertdate,inserttime,preview,|,forecolor, backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,s up,|,charmap,emotions,iespell,media,advhr,|,print, |,ltr,rtl,|,fullscreen",

// ===========================================
// Put PLUGIN'S BUTTON on the toolbar
// ===========================================

theme_advanced_buttons4 : "jbimages,|,insertlayer,moveforward,movebackward,a bsolute,|,styleprops,|,cite,abbr,acronym,del,ins,a ttribs,|,visualchars,nonbreaking,template,pagebrea k,restoredraft",

theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,

// ===========================================
// Set RELATIVE_URLS to FALSE (This is required for images to display properly)
// ===========================================

relative_urls : false

});

</script>
<!-- /TinyMCE --
http://justboil.me/