Hey,
My client has already set up a JustHost account for the next three years so I am going to have to use them for a while. So far all the coding I have written has worked like it has worked at 1and1.com. Until I get to using my TinyMCE. Is there something with JustHost that is effecting TinyMCE. I will post my code just in case, everything is linked up fine.
<!-- TinyMCE -->
<script type="text/javascript" src="jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
document_base_url : "http://www.site.com/path1/",
relative_urls : "false",
plugins : "safari,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",
// Theme options
theme_advanced_buttons1 : "forecolor, |,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,bullist,numlist,formatselect,fontsizeselect,cut,copy,paste,pastetext,pasteword,|,search,replace",
theme_advanced_buttons2 : "outdent,indent,blockquote,|,undo,redo,|,link,unlink,code,|,insertdate,inserttime,|,tablecontrols,hr,removeformat,sub,sup",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "",
theme_advanced_resizing : false,
// Example content CSS (should be your site CSS)
content_css : "jscripts/tiny_mce/css/content.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "jscripts/tiny_mce/lists/template_list.js",
external_link_list_url : "jscripts/tiny_mce/lists/link_list.js",
external_image_list_url : "jscripts/tiny_mce/lists/image_list.js",
media_external_list_url : "jscripts/tiny_mce/lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
<!-- /TinyMCE -->