Instead of only being able to give the url of an image in TinyMCE you can add the option of image uploads as well with a plugin called PHPimage
It is very easy to implement and will take around 5 - 10 mins.
You can download PHPimage at SourceForge.net
http://sourceforge.net/tracker/?func=detail&aid=2844769&group_id=103281&atid=738747
Download and Unzip then Upload to your TinyMCE Plugins folder:
plugins/tiny_mce/plugins/
Then create a folder under your main Dolphin directory called /uploads/images/ and chmod 777 or 755
Then you will need to edit: /templates/base/scripts/BxBaseConfig.php
Under each tinyMCE_GZ.init & tinyMCE.init replace every instance of image and advimage with phpimage in the plugins and theme_advanced_buttons
eg:
tinyMCE_GZ.init({
plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,media,searchreplace,print,contextmenu,directionality,fullscreen",
themes : "advanced",
languages : "en",
disk_cache : true,
debug : false
});
would become:
tinyMCE_GZ.init({
plugins : "table,save,advhr,phpimage,advlink,emotions,iespell,insertdatetime,preview,zoom,media,searchreplace,print,contextmenu,directionality,fullscreen",
themes : "advanced",
languages : "en",
disk_cache : true,
debug : false
});
And:
tinyMCE.init({
convert_urls : false,
mode : "specific_textareas",
theme : "advanced",
plugins : "style,layer,table,save,advhr,phpimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras",
delta_height: -9, // just for correct sizing
editor_selector : /(' . $sSelectors . ')/,
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,fontselect,fontsizeselect",
theme_advanced_buttons2 : "forecolor,backcolor,|,bullist,numlist,|,outdent,indent,|,link,unlink,image,hr,|,sub,sup,|,insertdate,inserttime,|,styleprops",
theme_advanced_buttons3 : "charmap,emotions,|,cite,abbr,acronym,attribs,|,preview,removeformat",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
extended_valid_elements : "a[name|href|title],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
paste_use_dialog : false,
paste_auto_cleanup_on_paste : true,
paste_convert_headers_to_strong : false,
paste_strip_class_attributes : "all",
paste_remove_spans : false,
paste_remove_styles : false
});