Picture editor
Picture editor
Like you can find a WYSIWYG editor for html editing I would like to know if you can install a picture/image editor on a php/mysql server that let you edit images etc.
Link and a demo would be cool
Link and a demo would be cool
http://www.studmed.dk Portal for doctors and medical students in Denmark
The author of HTMLarea has been developing an Image Manager/Image Editor add-on. I do not have peronal experience with it, yet:
http://www.zhuo.org/htmlarea/
http://www.zhuo.org/htmlarea/
I can not see the image editor you are talking about!
http://www.studmed.dk Portal for doctors and medical students in Denmark
now I found it
You need to press on the pencil icon!

http://www.studmed.dk Portal for doctors and medical students in Denmark
BTW... if you just need "limited" image functions, there is a version of HTMLarea at the link below, with an image manager that allows image resizing, layout and spacing:
http://www.webstationone.com/test/htmlarea/
http://www.webstationone.com/test/htmlarea/
now you can have the editor as a standalone....DeXXus wrote:BTW... if you just need "limited" image functions, there is a version of HTMLarea at the link below, with an image manager that allows image resizing, layout and spacing:
http://www.webstationone.com/test/htmlarea/
http://www.zhuo.org/htmlarea/docs/index.html#editor
download:
http://sourceforge.net/project/showfile ... _id=114794
http://www.studmed.dk Portal for doctors and medical students in Denmark
did anyone tryed to include the image editor into phpwcms?
http://www.studmed.dk Portal for doctors and medical students in Denmark
I have now installed it: use it as a plugin:
Download and install this patch
http://sourceforge.net/tracker/index.ph ... tid=543655
Gives the ability to select images base on
auto-generated thumbnails including setting common html
attributes, upload new images, create/delete folders,
delete images and edit images.
Editing images allows basic image manipulation
including cropping, resizing and compression of images
(server side). All image manipulation done through the
GD or Imagemagick libraries.
For installation instructions refer to README.txt in
the archive.
Download and install this patch
http://sourceforge.net/tracker/index.ph ... tid=543655
Gives the ability to select images base on
auto-generated thumbnails including setting common html
attributes, upload new images, create/delete folders,
delete images and edit images.
Editing images allows basic image manipulation
including cropping, resizing and compression of images
(server side). All image manipulation done through the
GD or Imagemagick libraries.
For installation instructions refer to README.txt in
the archive.
http://www.studmed.dk Portal for doctors and medical students in Denmark
well I use it as a plugin to FCKeditor - but it should work as a standalone....
But I dont know how to let it work with the public and private settings for images and howto let it only look in eg. folder 1 and not 2,3,4,5 etc....
But I dont know how to let it work with the public and private settings for images and howto let it only look in eg. folder 1 and not 2,3,4,5 etc....
http://www.studmed.dk Portal for doctors and medical students in Denmark
If I remember correctly... FCK creates an 'image' folder, by default, based on a path you set in connector.php:
(include/inc_ext/FCKeditor2/editor/filemanager/browser/default/connectors/php/connector.php)
So this might exclude it from working with wcms folder structure.
Not sure if anyone has been able to bypass the default directory creation by FCK.
Might be info on sourceforge boards however.

(include/inc_ext/FCKeditor2/editor/filemanager/browser/default/connectors/php/connector.php)
Code: Select all
$GLOBALS["UserFilesPath"] = '/pathToDirectory/' ;
Not sure if anyone has been able to bypass the default directory creation by FCK.
Might be info on sourceforge boards however.

Heyjsw_nz wrote:If I remember correctly... FCK creates an 'image' folder, by default, based on a path you set in connector.php:
(include/inc_ext/FCKeditor2/editor/filemanager/browser/default/connectors/php/connector.php)
So this might exclude it from working with wcms folder structure.Code: Select all
$GLOBALS["UserFilesPath"] = '/pathToDirectory/' ;
Not sure if anyone has been able to bypass the default directory creation by FCK.
Might be info on sourceforge boards however.
I doesnt use the build in image solution I use the plugin "ImageManager"
You can see a standalone demo here:
http://www.zhuo.org/htmlarea/standalone.html
To let it work with phpwcms I have found and reused some code.
Open:
include\inc_ext\FCKeditor2\editor\plugins\ImageManager\config.inc.php
Find
$IMConfig['base_url'] = .........
Replace with
if(!isset($phpwcms)) { include_once('../../../../../../config/phpwcms/conf.inc.php'); include_once('../../../../../inc_lib/default.inc.php'); } $IMConfig['base_url'] = '/'.$phpwcms["root"].'/content/images/';
Then you have access to the content/images folder - but this solution will bypass phpwcms file right system... so images set to private will be shown..
http://www.studmed.dk Portal for doctors and medical students in Denmark
wauw...Paal wrote:http://tinymce.kirow.hu/en/index.html

http://www.studmed.dk Portal for doctors and medical students in Denmark