|
Title: Problems with New Offer Post by: Velinov Peter on June 24, 2009, 11:27:08 AM When I go and click on New Offer I get unreadable content.
I did translate the module in bulgarian and it works fine (all the characters are being displayed properly on every other page). The only problem is when I click on New Offer, trying to post a new job offer. I get this link in my browser when I click on New Offer /index.php?catid=0&limit=10&task=offer_new&option=com_neorecruit&Itemid=94&boxchecked=0&order=datedesc What is strange also, is that the page is not formated with the style of the webiste and it looks just plain simple. Also mention at the bottom of the page I get this error: Fatal error: Call to a member function get() on a non-object in /home/xxxx/public_html/xxxx.com/plugins/editors/tinymce.php on line 433 Title: Re: Problems with New Offer Post by: Velinov Peter on June 24, 2009, 01:20:51 PM All right, I actually found what is the problem. It's related to the type of user. Initially the user was part of Registered users group, then I moved it to Author and now I get the page displayed properly!
Hmmm... I found it's permission related after reading this on Internet ============== Fatal error: Call to a member function get() on a non-object in \plugins\editors\tinymce.php on line 433 error because the object that the statement try to call is not an object, on line 422 of this file call to the JEditor::getButtons() on line 261 of the editor.php the code is not right $result[] = $plugin->onDisplay($editor); because the register doesn't have the right to have the image button, so the function $plugin->onDispaly($editor) when the $plugin is 'plgButtonImage' will return the null this will lead to the error above. solution is replace the line $result[] = $plugin->onDisplay($editor); with $temp = $plugin->onDisplay($editor); if ($temp) { $result[] = $temp; } ============= I didn't implement the code change I just changed the role of that user, but still I don't want all my registered users to be Authors, what should I do? Any ideas... Title: Re : Problems with New Offer Post by: Raphael on July 14, 2009, 02:31:38 PM Hello Peter,
Did you try to use another WYSIWYG editor than JCE? Regards,
Powered by SMF 1.1 RC3 |
SMF © 2001-2006, Lewis Media
Joomla Bridge by JoomlaHacks.com |