Unable to select image file with tinyMCE's file browser - content-management-system

I am using TinyMCE 3.2.4 with my CMS (ModX Evo 1.0.10). I am having an issue with the image/file browser.
The pop up window opens and I can see all the files I have loaded on to the server but I cannot select any to add to the Rich Text area. Permissions are fine, I can even upload an image, but nothing happens when I click one to add it.
I have tried re-installing TinyMCE and the CMS to no avail. Would anyone know how to fix this?

I never had problems with 1010
But for 1011 you can see this fix:
[#10068] tinyMCE no add images from KCfinder
https://raw.github.com/dmi3yy/evolution/master/install/changelog.txt
So try upgrading if you haven't already.

Related

VSCode webview panel file link

For my extension in VSCode I have a html document with a file link in the html. It appears blue and underlined in the webviewpanel, but when I click on it, nothing happens. Is there a way to click on the hyperlink and make it load the document?
It is harder because of security reasons to link to a local resource in a webviewPanel. I found a work around solution to link to a command that opens a file in the html.

Disable Drag and Drop tinyMCE without opening the images

hello everyone,
i hope that everything is going well for all of you.
i have question, i'm using TinyMCE 3.4.6 in my project, and i want to
disable drag and drop images, so i add the parameter
paste_block_drop to true, but when i try to drag and drop the
image the Browser open it in the same page. i want to block the drag
and drop without opening the image when someone try to drar and drop
image.
Can someone have a clue ? thanks for all of you
You may want to upgrade to a newer version of TinyMCE. This may have been fixed since the version you're using was released.

ckeditor 4.5.1 drag and drop image into editor fails

Before CKEditor 4.5.1 it was possible to drag and drop images into the editor and save them as base64, at least in FireFox. This no longer seems to be possible. Dragging an image into the editor gives no result at all, whereas in other browsers the image is loaded into a new tab, which seems to suggest that in FireFox the process is entirely blocked.
It turns out that you can drag an image into the paste tool and save it as a base64 string. See: https://www.dokuwiki.org/plugin:ckgedit:drag_and_drop

django-tinymce in django-admin popup window display blank

I followed django-tinymce document configuration step by step and finally can see tinymce editor in django-admin pages.
But when I click Image button, the popup window is blank. And the title of popup window is '{#advanced_dlg.image_title}' like something wrong about parse.
The HTML view button is the same.
I know that 'document.domain' may solve it, but I set 'document.domain' is no help to above.
Is the associated tinymce plugin activated in your tinymce config?
{#advanced_dlg.image_title} looks like the plugin (and the language files) have not been loaded.
You amy use Firebug or any other developer web tool with a console and type in the following to find out which plugins have been loaded:
tinymce.editors[0].plugins

How to display SVG in Eclipse?

I'm new to Eclipse and trying to display a SVG file in an Eclipse program. I have downloaded Batik plugin and installed it. This is my first time working with plugins so I don't know anything. I would like to display a SVG picture when I click on a button. Thanks.
One possible option is to open a view/editor with the embedded SWT browser. Many browsers now support SVG content, so you could generate inline SVG inside an HTML document and set the browser to display it. See http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet136.java?view=co and others at http://www.eclipse.org/swt/snippets/
Try this image editor plugin. http://marketplace.eclipse.org/content/docfacto-toolkit#.UujWxmTFIhg. An image editor "Beermat" is included in the toolkit. Hope it solves your problem.