1

Topic: Link FilesManager on tyni does not appears

I deployed my tyni and FilesManager but the link FilesManager does not appears
where is the problem ?
Thanks !
my Code

theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",

2

Re: Link FilesManager on tyni does not appears

Hello,

Don't you have more code than that ?
You should check the example here : http://tinymce.moxiecode.com/examples_fm/example_01.php and you'll probably easily find what's missing in your code.

Olivier wink

PC Tuning - Radio dance, Let's Go Zik
O2 Graphics, web agency in Saint-Etienne, France

3

Re: Link FilesManager on tyni does not appears

Hello thanks to reply me .

Chek my code please ...

<script type="text/javascript" src="./tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript" src="js/mcfilemanager.js"></script>
<script type="text/javascript">
tinyMCE.init({
    // General options
    mode : "textareas",
    theme : "advanced",
    plugins : "safari,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,imagemanager,filemanager",

    // 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
});
</script>
</head>
<body>
<form method="post" action="somepage">
    <textarea name="content" style="width:100%">
    </textarea>
</form>


The link  for fileManager not Appears

?????? why

4

Re: Link FilesManager on tyni does not appears

Hello,

I thought you had forgotten to add "filemanager" in the "plugins" parameter, but you have it.

Now, I see this line :

<script language="javascript" type="text/javascript" src="js/mcfilemanager.js"></script>

I think you should not have it. Instead, the filemanager should be unzipped in your TinyMCE's plugin directory. Please check the instructions here : http://wiki.moxiecode.com/index.php/MCF … stallation, as I don't have Filemanager nor Imagemanager, I can't help you that much.

Olivier wink

PC Tuning - Radio dance, Let's Go Zik
O2 Graphics, web agency in Saint-Etienne, France

5

Re: Link FilesManager on tyni does not appears

Hello,
in my directoru  of my tiny , i Have the directories :
examples,
jscripts,
tests
tools.
I unzip the file manager in the jscript / tiny_mce / plugins /.
I think that is? thank you for helping me

6

Re: Link FilesManager on tyni does not appears

Yes unzip in in the tinymce/plugins directory. So that the path becomes tinymce/plugins/filemanager/editor_plugin.js and it should work out of the box.

Best regards,
Spocke - Main developer of TinyMCE

7

Re: Link FilesManager on tyni does not appears

That is my code

<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 : "safari,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,imagemanager,filemanager",

    // 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
});
</script>
</head>
<body>
<form method="post" action="somepage">
    <textarea name="content" style="width:100%">
    </textarea>
</form>

8

Re: Link FilesManager on tyni does not appears

Send me a link to your system. So I can try Firebug on them to see if there is any issues I can spot from here.

Best regards,
Spocke - Main developer of TinyMCE