Guys,
Following on from a thread on
Azrul's Blog, I've knocked together a patch to get My Blog working again, and to additionally enable the JCE editor.
I've also enabled the advanced functions in JCE - see here, highlighted in yellow:

To enable JCE:
http://vijay555.com/!images/FixingMyBlog.jpgStep 1. Install a modern build of JCE, and activate it in your Joomla Global Configuration.
Step 2. Using FTP etc, find and backup the file:
/YourJoomlaInstall/components/com_myblog/templates/admin/write_1512.html
Step 3. Then edit that file. About 32 lines down, find:
Code:
if( $build == 12 )
{
$tinyMCEPath = rtrim( JURI::root() , '/' ) . '/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce.js';
}
else
{
$tinyMCEPath = rtrim( JURI::root() , '/' ) . '/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js';
}
And add the lines at the bottom (the echo line is not necessary, just to show it worked):
Code:
if( $build == 12 )
{
$tinyMCEPath = rtrim( JURI::root() , '/' ) . '/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce.js';
}
else
{
$tinyMCEPath = rtrim( JURI::root() , '/' ) . '/plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js';
//VJ mod
echo"VJ Mod: Build !=12. Using JCE";
$tinyMCEPath = rtrim( JURI::root() , '/' ) . '/plugins/editors/jce/tiny_mce/tiny_mce.js';
}
Enabling advanced features is slightly more convoluted, but basically requires editing
write_1512.html to enable them in JCE.
If you require this functionality, drop me an email at
vijay AT_SYMBOL vijay555.com and I'll send you a copy of my file.
I'm not posting it here right now, pending slightly further testing by Patrick et al!
V