Hi, i'm trying TinyMCE 3.0RC2 combined with the new php gzip compressor 2.0 RC1 and the following is the configuration i'm currently using
<script type="text/javascript" src="./include/tiny/tiny_mce_gzip.js"></script>
<script type="text/javascript">
tinyMCE_GZ.init({
plugins : "pagebreak",
pagebreak_separator : "<!--page-->",
theme : "advanced",
language : 'en'
});
</script>
<script type="text/javascript">
tinyMCE.init({
plugins : "pagebreak",
pagebreak_separator : "<!--page-->",
theme : "advanced",
language : 'en',
mode : "textareas",
editor_selector : "tiny",
theme_advanced_resizing : true,
theme_advanced_resize_horizontal : false,
theme_advanced_toolbar_location : "top",
theme_advanced_statusbar_location : "bottom",
theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6,blockquote,dt,dd,samp",
theme_advanced_toolbar_align : "left",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,styleselect,formatselect,|,bullist,numlist,|,outdent,indent,|,forecolor,backcolor",
theme_advanced_buttons2 : "undo,redo,|,link,unlink,anchor,image,cleanup,code,hr,removeformat,visualaid,|,sub,sup,|,charmap,pagebreak",
theme_advanced_buttons3 : "",
force_p_newlines : false,
inline_styles : true,
content_css : "./include/tiny/stile.css",
relative_urls : false,
accessibility_focus : false,
disk_cache : false,
debug : false
});
</script>
the only thing that don't work is the resizing ... does anybody knows why?
if i switch off the gzip compressor everything works fine so i think it's a misconfiguration