Hmm, OK there are 2 different things at work here:
1) EEngine and TinyMCE(+ajaxFilemanager) as separate programs
2) Make them work together
1)
a)EEngine
Now your EEngine install works and lets say its located under:
.../htdocs/eengine (where /htdocs/ is your www root)
b)Download TinyMCE(currently V2.2.1), unzip and upload (only the folder “tiny_mce” located inside the zip file at tinymce_2_1_2/tinymce/jscripts/tiny_mce) to say:
.../htdocs/tiny_mce
c)Download Ajaxfilemanager, unzip and upload to:
.../htdocs/tiny_mce/plugins
Now edit the config.base.php file for ajaxFilemanager located at:
.../htdocs/tiny_mce/plugins/ajaxfilemanager/inc/config.base.php
See Appendix C for reference. 2 things to make sure there:
—Set the path where stuff should get uploaded to. I used relative paths, the “../../../uploaded” translates to:
.../htdocs/uploaded (make sure uploaded is set to 777)
//FILESYSTEM CONFIG
/*
* CONFIG_SYS_DEFAULT_PATH is the default folder where the files would be uploaded to
and it must be a folder under the CONFIG_SYS_ROOT_PATH or the same folder
*/
define('CONFIG_SYS_DEFAULT_PATH', '../../../uploaded/');
define('CONFIG_SYS_ROOT_PATH', '../../../uploaded/'); //the root folder where the files would be uploaded to
—Set AjaxFilemanger output to TinyMCE mode by setting:
define('CONFIG_THEME_MODE', 'tinymce'); //set tinymce you want use it for tinymce editor or stand-alone
define('CONFIG_THEME_NAME', 'default'); //change the theme to your custom theme rather than default
located towards the end of the file.
You should now be able to edit the TinyMCE ini and use TinyMCE with the Ajax Filemanager Plugin in TinyMCE standalone mode:
Make a file copy the code you can find here: TinyMCE&AjaxFilmanager;Standalone adjust the filepaths in the lines I highlighted and save file as .html or .php
. Upload anywhere to your server. Point your browser there and…. hopfully you are getting a working TinMCE. you access the AjaxFilemanger function by clicking on the image icon (little tree), then clicking on the Browser icon (6 funny red dots in a window thingy) in the window that pops up.
Hopefully all worked well up to now. If so you have done almost all the hard work and I’ll put the second part in a separate post