I was searching the web for an image manger and found on piece of software, that is right now modificated to work as a plugin for FCK.
Original it is "Wei Zhuo's Image Manager" for HTMLArea.
It is not as overloaded as IBrowser plugin, faster and more handy.
Brent Kelly from Zeald.com patched it for FCK.
I will upload it to the plugins section.
Cheers!
Original it is "Wei Zhuo's Image Manager" for HTMLArea.
It is not as overloaded as IBrowser plugin, faster and more handy.
Brent Kelly from Zeald.com patched it for FCK.
I will upload it to the plugins section.
Cheers!

RE: ImageManager for FCK
Are you able to enhance it? so it support imagecaption? I really miss that function - else it is a great imagemanager its very userfriendly.
RE: ImageManager for FCK
I will let you know when it works.
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
Like I asked zwergnas?
RE: ImageManager for FCK
When i try to upload a image i won't work.
The page only reloads. I don't get any errors.
I use GD, and i works fine to upload images with the original image tool in FCK Editor.
The allow_upload setting is set to "true".
$IMConfig['allow_upload'] = true;
RE: ImageManager for FCK
RE: ImageManager for FCK
The normal behavior of the mnager is to show a dialog where you can select an image an where every image can be edited by pressing the pencil of it...
I'm trying to build in the option to direct editing images: bypass the manager and head directly for the editing page. Afterwards I'll try to add a reupload/replace image feature to the editor and a watermarking feature.
RE: ImageManager for FCK
Best regard,
Frederik
RE: ImageManager for FCK
RE: ImageManager for FCK
Har de har har. Saw that on T.V.. Do you need the dot after the dot? Hmm, I think so. Anyway...
You could try asking "how much can a pay you to impliment this feature" or "where in the code could I modify this myself" (-;
Sorry, had to do it.
RE: ImageManager for FCK
RE: ImageManager for FCK
Ever had someone tapping your back while you try to focus? Maybe he's busy, got swamped at work or whatnot. This is all done by the goodness of peoples hearts, we don't want to add more stress.
And what you want to do is one of the easiest modifications to the existing editor. You should be able to look at the source code and figure out pretty easy what it will take to add a new attribute to the image tag. (That's what you wanted, right? Is "caption" a attribute, or a sep. tag?) Shouldn't be hard either way.
Let me know if you would like a starting point
RE: ImageManager for FCK
RE: ImageManager for FCK
http://www.cs.tut.fi/~jkorpela/www/captions.html
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
Any Ideas?
RE: ImageManager for FCK
ImageManager: probs with update an image
If I insert an new Image, I can change the src attribute with the Imagemanager. If I save the code and want to change the image src, I can see all differents in the preview of FCKEditor, the alt, width and height attributs will update, but not the src attribute.
Is there a bug in the Plugin?
The only way to update an existing Image is delete and include a new image. That's not very comfortable for S-Users.
Have someone solution for this problem?
RE: ImageManager: probs with update an image
https://sourceforge.net/forum/forum.php ... _id=379487
RE: ImageManager: probs with update an image
The solution is to change the fckplugin.js file. Line 105-107 reads:
if (!im) { // new image// no image - create new image
im = FCK.CreateElement('IMG');
}
The fix is to remove the if-statement. You can either comment out line 105 and 107 or delete them, as shown here:
//if (!im) { // new image// no image - create new image
im = FCK.CreateElement('IMG');
//}
Hope this helps someone else!
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
RE: ImageManager for FCK
I can't understand.
RE: ImageManager for FCK
directEdit off: click the imageManager icon
change the directEdit option: open the file 'ImageManager/fckplugin.js', set var IM_directEdit to true or false.
RE: ImageManager for FCK