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
Im looking forward to that Cool !!
RE: ImageManager for FCK
Let me know if you need a tester
RE: ImageManager for FCK
A demo is here: http://www.saulmade.nl/FCKeditor/FCKPlugins.php
(This imageManager is configured to not allow the user to create new sub-directories and neither to upload files)
A nice extra feature of the imageManager which I believe is undocumented, is that ondoubleclick of an image in the FCKeditor, the imageManager will open.
Some notes for configuring the PHP part of the manager ('config.inc.php'):
- $IMConfig['base_url'] is the URL to the (root) directory where your images are. With a heading slash '/' (e.g. '/image/'), the URL is relative to your website root and is the same as when you would write your website address in the URL (e.g. 'http://www.example.com/images/'). Without a heading slash, the URL is relative to the plugin's directory 'editor/plugins/ImageManager/'
- $IMConfig['base_dir'] is the server path to that same directory. If using '$_SERVER['DOCUMENT_ROOT']' doesn't work for you, you can 'hardcode' it (e.g. '/home/example.com/www/images/')
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
frold,
I don't get it. First you're urgently requesting a feature you'dd like and now someone offers you a hand and gone you are? Please describe the feature you'dd like and stop 'spamming' about it.
Xenden, sigh of relief, someone had to do that . And needs there be a dot after a smiley? :p!
RE: ImageManager for FCK
spamming - OMG!!
Im not spamming I just asking for an answer I cant see it should be so hard to give....
If someone ask me I normally reply
And about imagecaption: 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
Ok, I'm stupid, it's ok... I'm ok with it.....
In case anyone else might run into this same thing, the problem is fixed simply by providing the proper path the imagemagic All is well now... thanks for a great plugin
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
goekokaraman ,
Maybe you'dd like the feature I added to the editor of the ImageManager: replace. See the new thread I started about it: 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
Hello,
I don't know if this is the right forum to make this kind of question.
I really can't get this to work correctly.
When clicking on the "ImageManager" icon in FCK I only get an alert saying: "no image selected".
In the readme.txt I can't understand what to do on this line.
- The language for the plugin and to directEdit option must be set in its 'editor/plugins/ImageManager/fckplugin.js' file.
Please help me
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