Posts: 41
Threads: 5
Joined: Sep 2012
Reputation:
1
2015-12-08, 01:06 AM
(This post was last modified: 2015-12-08, 04:24 PM by Phrenetiick.)
Hello,
I installed CKEditor on my MyBB forum, since SCEditor is kinda crappy, but I got a problem with Inline moderation: it is not working anymore. I tried to disable every plugin and when I disabled CKEditor it worked again, so I guess the problem is the editor itself, does anyone know how can I fix that? I really want to use CKEditor, but I also need Inline moderation...
Posts: 2
Threads: 0
Joined: Dec 2015
Reputation:
0
2015-12-08, 04:28 PM
(2015-12-08, 01:06 AM)Phrenetiick Wrote: Hello,
I installed CKEditor on my MyBB forum, since SCEditor is kinda crappy, but I got a problem with Inline moderation: it is not working anymore. I tried to disable every plugin and when I disabled CKEditor it worked again, so I guess the problem is the editor itself, does anyone know how can I fix that? I really want to use CKEditor, but I also need Inline moderation...
dude i got the same problem i feel you this is driving me crazy dog
anyone?
Posts: 41
Threads: 5
Joined: Sep 2012
Reputation:
1
2015-12-09, 05:16 PM
(This post was last modified: 2015-12-10, 03:40 PM by Phrenetiick.)
Bump please I really need help with this. SCEditor is garbage and I don't want to use it on my forums..
oh by the way, I noticed that if I enable CKEditor in showthread.php page, inline moderation and other javascript scripts just work fine..
Posts: 2,129
Threads: 103
Joined: Oct 2015
Reputation:
223
2015-12-10, 09:52 PM
This does not fall under the scope of general support. Try posting in the plugin's support thread, and failing that you can try posting for paid help.
What goes around comes around
Posts: 494
Threads: 82
Joined: Dec 2012
Reputation:
50
2015-12-11, 10:55 AM
(This post was last modified: 2015-12-11, 10:56 AM by ATofighi.)
Hi,
Do you have this issue with default theme?
Are there any errors in the console (Right Click -> Inspect Element -> Console)?
Posts: 41
Threads: 5
Joined: Sep 2012
Reputation:
1
2015-12-11, 02:23 PM
(2015-12-11, 10:55 AM)ATofighi Wrote: Hi,
Do you have this issue with default theme?
Are there any errors in the console (Right Click -> Inspect Element -> Console)?
Hi,
Yes, this also happens with default theme (other than Square, the theme that I'm using at the moment) console gives 2 errors, but I think the 1st one has nothing to do with CKEditor https://i.gyazo.com/c2ee89390e98e73be352...4aab57.png
Also, as I said this only happens when I disable CKEditor on the "showthread.php" page on the CKE's settings page. If I enable CKEditor in showthread.php page, inline moderation and other javascript scripts just work fine.
Posts: 494
Threads: 82
Joined: Dec 2012
Reputation:
50
2015-12-14, 02:59 PM
edit inc/plugins/ckeditor/hooks.php file,
find:
eval("\$post['quick_quote'] = \"" . $templates->get("ckeditor_quickquote") . "\";");
replace to:
if(is_ckeditor_avilable()) {
eval("\$post['quick_quote'] = \"" . $templates->get("ckeditor_quickquote") . "\";");
}
Posts: 41
Threads: 5
Joined: Sep 2012
Reputation:
1
2015-12-16, 01:23 PM
(2015-12-14, 02:59 PM)ATofighi Wrote: edit inc/plugins/ckeditor/hooks.php file,
find:
eval("\$post['quick_quote'] = \"" . $templates->get("ckeditor_quickquote") . "\";"); replace to:
if(is_ckeditor_avilable()) {
eval("\$post['quick_quote'] = \"" . $templates->get("ckeditor_quickquote") . "\";");
}
Worked, thanks a lot
|