Opened 14 years ago
Closed 14 years ago
#6759 closed defect (bug) (fixed)
tinymce pop up functions fail under ssl
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.6 | Priority: | normal |
Severity: | normal | Version: | 2.5 |
Component: | TinyMCE | Keywords: | |
Focuses: | Cc: |
Description
Using Wordpress 2.5 on a LAMP setup, applied changesets up to 7680 to see whether that helped, but still failed.
Tinymce will show up in WP 2.5 however, clicking the Image button, Charmap - anything that requires a popup - fails under ssl. From what I can tell, the baseURL isn't set properly in editor_template.js. At least, if I hard code the https address in editor_template in a particular mce function, the window renders properly.
For example:
url:'https://<server + directory>/wp-includes/js/tinymce/themes/advanced/charmap.htm'
as opposed to
url:tinymce.baseURL+'/themes/advanced/charmap.htm'
The former works, the latter produces bugs detailed below.
Screenshots should tell the whole story.
Tinymce in https environment:
http://www.kirbymixedmedia.com/images/Picture2.png
Charmap button clicked - popup blank. Firebug notes 2 errors in lower right
http://www.kirbymixedmedia.com/images/Picture3.png
Firebug's account of the problems:
- "uncaught exception: permission to denied get property Window.tinymce"
- This.params has no properties - tiny_mce_popup.js (line 47)
http://www.kirbymixedmedia.com/images/Picture4.png
If I right-click in the popup itself and say "Show only this frame", the URL isn't ssl based:
http://www.kirbymixedmedia.com/images/Picture5.png
Has this been fixed by [8190] ?