getUserStateFromRequest falied in Joomla 1.6
I have built a new website in Joomla 1.6. I found a component which is designed for Joomla 1.5. It cannot work. The error message is "Call to a member function getUserStateFromRequest() on a non-object". I did research. I found a related post in
Joomla Forum. That is because in Joomla 1.6, $mainframe is not existed anymore. The component I installed is tried to call getUserStateFromRequest() from $mainframe. Then the solution is simple.
Please add this in /administrator/index.php
Code
global $mainframe; | |
$mainframe = JFactory::getApplication(); |
Under "$app = JFactory::getApplication('administrator');"
Now, that is all works now!
Wordpress Version 3.0.2
Wordpress is great! They got a minor version update. There is some security fixes. Please go to Wordpress.org for the download
Wordpress 3.0.1 is released
Wordpress group must be working so hard. Not longer ago, they released version 3.0. Today they released an upgarde, version 3.0.1! They are great!. In this release, there are some bug fixes.
Reference:
Wordpress
Wordpress 3.0 is released
Wordpress 3.0 is released. That is more like a real CMS now. You can set admin user name during the installation. Moreover, it has more options to customize your menu. Even you can create own your content type. Well, now Wordpress is not a blogging software, it also can be a CMS.
Please watch the following video for further information:
Joomla: tinymce.get is not a function
I have upgarded to 1.5.17. But I found the "Save" button for all edit views are not working. I got a javascript error:tinymce.get is not a function.
Then I found that seems to be a bug.
But Joomla got the patch.
http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=17936
All you need to replace the onSave function is in plugins/editors/tinymce.php
Code
function onSave( $editor ) { | |
return "tinyMCE.execCommand('mceToggleEditor', false, '$editor');tinyMCE.triggerSave();"; | |
} |