Help us to help you!

Our aim is to offer you the best service possible, to do this we need to know: (1.) Joomla! version (2.) Server type (3.) Editor version (4.) Browsers type & Version and any (5.) Error messages you may have, for help in finding this information please - click here…We would also invite you to read our form rules before posting - read more…

Welcome, Guest
Please Login or Register.    Lost Password?

Image editor not working
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Image editor not working
#765
Image editor not working 1 Year, 5 Months ago Karma: 0
Hi!

I can't get Image editor to work. I have installed newest JoomlaCK & Manager. Everything else works fine. Installation of Image editor went also ok. But when I click Image editor icon, it popups window with error message:

Fatal error: Call to undefined method JRegistry::def() in /home/satamase/public_html/plugins/editors/jckeditor/plugins/ImageManager/config.inc.php on line 187

Thanks for your help!
jachy
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#767
Re:Image editor not working 1 Year, 5 Months ago Karma: 20
Can you include the following information:

(1.) Joomla! version
(2.) Server type & configuration: www.joomlackeditor.com/downloads/installation-guide?start=1
(3.) Editor version
(4.) Browsers type & Version

Thanks,

P
Paul.F
Administrator
Posts: 1045
graph
User Online Now Click here to see the profile of this user
Gender: Male webxsolution.com Location: London Birthday: 12/09
Last Edit: 2010/08/29 14:21 By Paul.F.
If you use JoomlaCK Editor, please post a review at the Joomla! Extensions Directory.
The administrator has disabled public write access.
 
#768
Re:Image editor not working 1 Year, 5 Months ago Karma: 0
1. Joomla 1.5.17.

2. Apache: 2.2.15
MySQL: 5.1.48-log
PHP: 5.2.13
Perl: 5.8.8
I have no glue about PHPsuExec, php_suexec or suPHP.
Folders are pretty much 755 and 644.

3.I updated editor and installed manager & plugins today so they are newest versions.

4: Chromium 7.0.509.0 (57786)
Internet Explorer 8.0
Firefox 3.6.8

Thanks.
jachy
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#776
Re:Image editor not working 1 Year, 5 Months ago Karma: 20
Hi jachy,

Thank you for your post.

Can you please uninstall the JCKplugins and the uninstall the Manager and then finally the editor? Please re-download everything (all the packaged files) and follow the installations as below:

1. Install the latest version of the editor (version 3.3.1 +) FIRST.
2. And then install the component manager.
3. Install the JCK plugins.

IMPORTANT: Once you have installed the extensions it is important that you clean out your browsers cached files for the new changes to be displayed correctly. Please see the following link for more information on how to perform: www.wikihow.com/Clear-Your-Browser%27s-Cache

Thanks,

P
Paul.F
Administrator
Posts: 1045
graph
User Online Now Click here to see the profile of this user
Gender: Male webxsolution.com Location: London Birthday: 12/09
If you use JoomlaCK Editor, please post a review at the Joomla! Extensions Directory.
The administrator has disabled public write access.
 
#778
Re:Image editor not working 1 Year, 5 Months ago Karma: 0
Well...

I did everything you said, but the problem is still there.

I uninstalled plugins, manager and editor - in that order.
Then I re-downloaded the files, installed them: editor, manager and the plugins - in that order. I cleaned server's and browsers' cache.

Then I try to click Image Manager's icon. Popup comes with text in it: Fatal error: Call to undefined method JRegistry::def() in /home/satamase/public_html/plugins/editors/jckeditor/plugins/ImageManager/config.inc.php on line 187.

I've tried change configurations, like turning on safe mode, but that isn't helping.

Thanks for your help!
jachy
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#795
Re:Image editor not working 1 Year, 5 Months ago Karma: 20
Hi jachy,

Thank you for your post.

Presently I am unsure what the issue is, as it would seam that we are running the editor and its component on a similar environment. The only difference is that we are running a later version of Joomla - version 1.5.20.

If you are a Firefox user, would you be so kind to install Firebug (which is a 3rd party extensions for Firefox - addons.mozilla.org/en-US/firefox/addon/1843/ ). Once installed would you open up Firebug > select the ‘Console’ Tab and copy and paste the ‘query’ when you received the error. This will help us see the response from the server and hopefully help us to diagnose your problem.

Thanks,


P
Paul.F
Administrator
Posts: 1045
graph
User Online Now Click here to see the profile of this user
Gender: Male webxsolution.com Location: London Birthday: 12/09
If you use JoomlaCK Editor, please post a review at the Joomla! Extensions Directory.
The administrator has disabled public write access.
 
#804
Re:Image editor not working 1 Year, 5 Months ago Karma: 0
I updated Joomla to version 1.5.20. That didn't help.

Here is query from Firebug: pastebin.com/Z6rEqGTJ
I don't know if I did that right. There was 1 error. I pasted the other stuff also.
jachy
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2010/09/02 15:12 By jachy.
The administrator has disabled public write access.
 
#805
Re:Image editor not working 1 Year, 5 Months ago Karma: 1
Hey this worked for me:

change this:

(line 171)

$sql = 'show tables like "jos_jckplugins"';
$database->setQuery( $sql );
$result = $database->loadResult();

if($result)
{
$sql = 'SELECT params FROM #__jckplugins WHERE name = "ImageManager"';
$database->setQuery( $sql );
$dbparam = $database->loadResult();
if($dbparam)
$params = new JParameter($dbparam);
}

to:

$sql = 'SELECT params FROM #__jckplugins WHERE name = "ImageManager"';
$database->setQuery( $sql );
$dbparam = $database->loadResult();
if($dbparam)
$params = new JParameter($dbparam);
splatteredink
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#806
Re:Image editor not working 1 Year, 5 Months ago Karma: 0
Thanks!!!

It worked! Great.
jachy
Fresh Boarder
Posts: 6
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#815
Re:Image editor not working 1 Year, 5 Months ago Karma: 32
This is not generic solution especially for those who have not installed the JCK manager.

I believe your issue is beacuse your database predix is not 'Jos' and that value is hardcoded in the first SQL that has been called. Can you confirm.

I believe you change the script as follows as oppose to removing the first check as been suggested :

line 171 :

$sql = 'show tables like "jos_jckplugins"';

$database->setQuery( $sql );
$result = $database->loadResult();

to

$sql = "show tables like '".$database->getPrefix()."jckplugins'";
$database->setQuery( $sql );
$result = $database->loadResult();


Regards

Andrew
awills
Administrator
Posts: 484
graphgraph
User Offline Click here to see the profile of this user
Gender: Male webxsolution.com Location: London
Last Edit: 2010/09/06 09:32 By awills.

Always clear your browser cache(CTRL+SHFT+DEL for FF/IE and Chrome users)
The administrator has disabled public write access.
 
Go to topPage: 1
Moderators: Paul.F, awills