I am attempting to enable TinyMCE and Firefox using PHP to send an image that pasted in the editor to the server so that it will appear in the edited document. I have seen this on Moodle, so I know it can be done (and will attempt to look inside).
So, I wrote this PHP script (my first interactive, so I am fishing for criticism as it works but is probably a security hazard): it puts posits from a file in the editor and back in the file if one is found, or puts them in a new file if not.
It also switches back to newlines from paragraphs.
<body>
<?php
if ($_POST['submitsave']) {
$file = fopen("./img_test.html", "a+");
file_put_contents("./img_test.html", $_POST["textdata"]);
fclose($file);
echo "posted";
}
if(file_exists("./img_test.html")){
$file = fopen("./img_test.html", "r");
while(!feof($file)){
$edit_string = $edit_string . fgets($file);
}
fclose($file);
}
?>
<script type="text/javascript" src="/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
//newlines over para
force_br_newlines : true,
force_p_newlines : false,
forced_root_block : '', // Needed for 3.x
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,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,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
});
</script>
<form name="savefile" method="post" action="">
<textarea id="textdata" name="textdata"><?php echo $edit_string; ?></textarea>
<input type="submit" name="submitsave" value="Save Text to Server">
</form>
</body>