I have a problem with Mad File Manager integration in TinyMCE. I think the problem is in this code:
<script type="text/javascript">
function MadFileBrowser(field_name, url, type, win) {
tinyMCE.activeEditor.windowManager.open({
file : "mfm.php?field=" + field_name + "&url=" + url + "",
}, {
window : win,
input : field_name
});
return false;
}
</script>
in
file : "mfm.php?field=" + field_name + "&url=" + url + ""
because Zend Framework returns exception: Message: Invalid controller specified (mfm.php)
Request Parameters:
array (
'controller' => 'mfm.php',
'action' => 'index',
'module' => 'default',
'field' => 'src',
'url' => '',
)