Needs review
Project:
Content administration
Version:
6.x-1.0-beta2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Mar 2009 at 19:44 UTC
Updated:
12 Oct 2010 at 14:09 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
alisonDitto for me! Also... [I will submit my "also" in its own issue momentarily...]
Comment #2
arithmetric commentedHi jlmeredith and Alison,
I can confirm that I'm also having problems using Wysiwyg editors (including TinyMCE, FCKeditor, and others) within the Content Administration interface.
I hope to support these editors in a future version of this module.
Comment #3
lance.gliser commentedSorry Detour, this one's bigger than I have time to tackle for the reward. However, I can offer a side solution.
If you must have an editor, but still wish to use this module, the follow code changes will simplify the module by removing the AJAX options for node creation, editing, and viewing. They will instead link to their normal system locations for each. Perhaps this should be part of the module at some point as a "simple version."
Please be aware. The author of this module does not endorse this alteration. Support will not be provided. Updating your module to the latest version will remove these changes! (And hopefully by then the editor problem will be solved and all will be well.)
In nodeadmin.module around line 300, insert the following line:
$results['nodeData'][$obj->nid]->path = drupal_get_path_alias('node/'.$obj->nid);
Around line 109 update to:
Around line 93 comment out:
In nodemodule.js update line 61 to:
On line 372 update function formatNodeButtons to:
Comment #4
lance.gliser commentedIf you'd like to take a look, Detour. I know it's not your original direction. But I thought you might be interested in a work around until you get it fixed.
Comment #5
tuffnatty commentedsubscribing
Comment #6
tuffnatty commentedTo whom it may be interesting: after I added two lines:
to nodeadmin_page() function, right before the first drupal_add_js() call in this function, Wysiwyg started working!
P.S.: I also had to add this line to editSubmit() in nodeadmin.js right after "if (op == 'Save') {" line:
Otherwise it would not copy content from fckeditor to textarea on save action.
That's it, FCKeditor/Wysiwyg working fine here! Of course these are dirty hacks but they can point someone in the right direction.
Comment #7
danny_joris commentedSubscribing.
Is this module still being maintained? It's been 22weeks ago since the last commit.
Comment #8
tuffnatty commentedI'm afraid someone interested should take over the module maintenance or at least get CVS access. I don't know the traditional Drupaler rules for that, though.
Comment #9
arithmetric commentedThis module is not unmaintained. However I haven't had time recently to tackle the larger issues that remain -- like compatibility with Wysiwyg editors, which also depends significantly on Drupal's JavaScript system as well as the Wysiwyg editors themselves.
If anyone is interested in contributing to this project, they should contact me, but they should also post patches in the issues queue. I'll try to review and commit the patches that have been submitted soon.
Thanks for everyone's interest in this module. I hope this module can serve as a drop-in improvement on the core content page until it becomes more feature-rich.
Comment #10
danny_joris commentedOk, thanks for your answer, detour.
No stress, take your time... :)
Cheers,
Danny
Comment #11
chrissmiss commentedThere are 2 month gone and I'm still waiting impatient ....
Did anyone solve the problem?
The solution from #6 does not work for me!
THX
Chriss
Comment #12
Anonymous (not verified) commentedAfter copying these two Wysiwyg's ( each one complete as it's own process - so I copyed one then deleted before I copied the other )
I was prevented from viewing the modules page - error in includes/common.inc ...... timeout ofter 30seconds
Would it be possible to editor the timeout value and would that even make a difference?
These editors have worked on other installs previously
I currently have these modules install on the site: admin_menu
captcha
cck
filefield
imageapi
imagecache
imagefield
jquery_ui
lightbox2
print
tiken
views
webform
any suggestions?
Comment #13
tuffnatty commentedarkad: Please search your installed modules issue queues or create a new issue for your problem, probably in one of these. Try to locate the module related by disabling them one by one. Don't take over an existing unrelated issue (there is no Content administration module in your list).
Comment #14
itp commentedI am not sure if this is pertinent to other issues described here,
Issue: When the following permission is enabled, the "upload" file buttons associated with WYSIWYG and IMCE do not appear.
captcha module : administer CAPTCHA settings
and getting this js error which seems to be from jquery form module:
uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER)
[nsIDOMHTMLFieldSetElement.removeChild]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"
location: "JS frame :: http://transfair.ca/sites/default/files/js/js_75a50f9f7c63d7bcf88e8cc0d5...
:: anonymous :: line 1516" data: no]
Solution: (Work around)
1. Do not use a profile with this permission enabled, or
2. disable this permission
Comment #15
ivrh commentedUploading patch file against beta2. I could not make it work in exact implementation as in #6 (probably due to relation to beta1 instead), while my changes work well.
- For preview of a node - opens as it is in original (unmodified version) as no WYSIWYG integration required.
- Editing goes to node/nid/edit page with correct destination argument to return back to content administration page
- Delete is unchanged.
Comment #16
serialbob commentedHello,
Any chance to view the Wysiwyg Editors (CKEditor) working with this module ?
Thank you
Comment #17
serialbob commentedThe same think for me
Comment #18
Fidelix commentedThis patch failed applying.
I believe that this behavior (go to node edit page instead of inline editing) should be the default.
Or at least the user should have the option to chose so.