Home
Download
Add-ons
Help
Forum
Organisation
Project
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
May 26, 2012, 02:20:04 AM
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Search:
Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter
hier
und auf unserer
neuen Webseite
.
155533
Posts in
21713
Topics by
7739
Members
Latest Member:
audillino
WebsiteBaker Community Forum
English
Modules
(Moderator:
Argos
)
FCKEditor Modul
Pages:
1
2
[
3
]
4
5
...
17
Go Down
Author
Topic: FCKEditor Modul (Read 112155 times)
Hans
Offline
Posts: 565
Re: FCKEditor Modul
«
Reply #50 on:
December 21, 2005, 11:24:14 PM »
Could this problem be removed by changing Media-directory in Advanced settings?
Didn't try just a thought.
Hans
Logged
Hans - Nijmegen - The Netherlands
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #51 on:
December 25, 2005, 07:25:24 PM »
New Version of FCKEditor released. Since 23. December FCKEditor 2.2 is available. For more information about the changes read
here
.
I have updated the FCKEditormodul at completed Modules with this new version. There are no changes in functionality, only the new FCKEditor is implemented.
To update an existing Modul only uninstall the oldone and install the newone.
Have fun
Logged
Hans
Offline
Posts: 565
Re: FCKEditor Modul
«
Reply #52 on:
December 25, 2005, 07:34:28 PM »
Thanks Matthias, everything seems to work OK.
Hans
Logged
Hans - Nijmegen - The Netherlands
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #53 on:
January 04, 2006, 10:50:48 AM »
FCKEditor Modul 2.0 released
The only change from 1.9 to 2.0 is that in 1.9 the "media" folder was hardcoded. For all who uses this standard folder from WB they don't need to update.
Version 2.0 now uses "MEDIA_DIRECTORY" instead of "media". FCKEditor now works with the Media dir that is stored in settings/advanced settings.
Have fun
Logged
Woudloper
Guest
Re: FCKEditor Modul
«
Reply #54 on:
January 05, 2006, 07:38:55 AM »
Today I was working again
with WebsiteBaker in combination with the FCK Editor (
not the latest version
) and was observing the following.
It is not possible to access the 'download_gallery' directory as all my downloads are listed over there. Is there a way to make it possible that the browse file/image also handles the 'download_gallery' or should I do that myself. If so, can someone tell me how to do this...
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #55 on:
January 05, 2006, 09:08:41 AM »
Hello Woudloper
with the actually Version of FCKEditor Modul it is possible to browse the whole media folder inclusive .gallery and download_gallery. When you wanna insert a image, a link or a flash animation and you go to browse server you first got the popup Window with "File" on the left side. In this list on the left side you also could choose "All" and then you see in the right side all the subfolders of the media dir.
Matthias
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #56 on:
January 05, 2006, 11:03:37 PM »
OK, here we go
next step to a new dimension of FCKEditor modul. Thanks to woudloper for the great work. And here are the new features:
Editorwindow supports the style from your template
Styles from Template are shown in the styles dropdownlist
[/b]
So from now on we can speak from a real
W
hat
Y
ou
S
ee
I
s
W
hat
Y
ou
G
et.
I've done some tests, and all should work, but i cannot test all platforms and browsers. Before releasing in completed modules should it be more testet. So please feel free to test this new version. Attached you find the RC1.
Note:
The Background and the Font from the Editorwindow are taken from the "body" Tag in the screen.css.
Have fun
Matthias
Edit: Deleted the downloadlink for RC1, you find version 2.1
here.
«
Last Edit: January 16, 2006, 09:24:25 PM by ruebenwurzel
»
Logged
kibmcz
Offline
Posts: 217
Re: FCKEditor Modul
«
Reply #57 on:
January 06, 2006, 12:33:56 AM »
Quote from: ruebenwurzel on January 05, 2006, 11:03:37 PM
OK, here we go
next step to a new dimension of FCKEditor modul. Thanks to woudloper for the great work. And here are the new features:
Editorwindow supports the style from your template
Styles from Template are shown in the styles dropdownlist
[/b]
So from now on we can speak from a real
W
hat
Y
ou
S
ee
I
s
W
hat
Y
ou
G
et.
I've done some tests, and all should work, but i cannot test all platforms and browsers. Before releasing in completed modules should it be more testet. So please feel free to test this new version. Attached you find the RC1.
Note:
The Background and the Font from the Editorwindow are taken from the "body" Tag in the screen.css.
Have fun
Matthias
I use a template based on the round template and in fckeditor it puts the background as the menu bakground with the text as black. it uses the same colors even if iselect a different style from the list.
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #58 on:
January 06, 2006, 10:01:29 AM »
@kibmcz
Thats what i mean as i say this:
Quote
Note: The Background and the Font from the Editorwindow are taken from the "body" Tag in the screen.css.
If for the content area in screen.css is defined another background and another Font and font color as in the body tag you got your described problem. To change a different style has no effect.
I had the same problem, and i think with the most templates you run into this problem. To get this solved we have to to some changes at the templates.
1. make a new class or id for the "body" tag. Change in the index.php from your template:
Code:
<body>
to
Code:
<body class="body">
2. Define this class or id in the screen.css from your template. Only change:
Code:
body {
........
}
to
Code:
.body {
.......
}
3. Copy your background and your font information from your content class to the body tag. Change:
Code:
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
to
Code:
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
background-color: #FFFFFF;
}
In WB 2.6.1 can this changes easily be done with the Template Addon you can download at the completed modules.
I don't know if this is the wright way, but it works. Because of the classes for the content area could have many different names it's i think not possible to write a fckeditor modul wich automaticly find the class or id for the contentarea, so the background and font informations must be defined in the body tag wich is on every homepage at the same place.
Hope this helps
Matthias
Logged
kibmcz
Offline
Posts: 217
Re: FCKEditor Modul
«
Reply #59 on:
January 06, 2006, 11:39:24 AM »
Quote from: ruebenwurzel on January 06, 2006, 10:01:29 AM
@kibmcz
Thats what i mean as i say this:
Quote
Note: The Background and the Font from the Editorwindow are taken from the "body" Tag in the screen.css.
Is there a possibilty to have a configure fckeditor button on the toolbar. In the config it would initialy let you set what tag to use as the style for the editor.
If for the content area in screen.css is defined another background and another Font and font color as in the body tag you got your described problem. To change a different style has no effect.
I had the same problem, and i think with the most templates you run into this problem. To get this solved we have to to some changes at the templates.
1. make a new class or id for the "body" tag. Change in the index.php from your template:
Code:
<body>
to
Code:
<body class="body">
2. Define this class or id in the screen.css from your template. Only change:
Code:
body {
........
}
to
Code:
.body {
.......
}
3. Copy your background and your font information from your content class to the body tag. Change:
Code:
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
to
Code:
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
background-color: #FFFFFF;
}
In WB 2.6.1 can this changes easily be done with the Template Addon you can download at the completed modules.
I don't know if this is the wright way, but it works. Because of the classes for the content area could have many different names it's i think not possible to write a fckeditor modul wich automaticly find the class or id for the contentarea, so the background and font informations must be defined in the body tag wich is on every homepage at the same place.
Hope this helps
Matthias
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #60 on:
January 06, 2006, 11:54:44 AM »
@kibmcz
Puuuh that was difficult to find out what you wanna say. But i found it. Maybe its better not to hide your question in quote.
Quote
Is there a possibilty to have a configure fckeditor button on the toolbar. In the config it would initialy let you set what tag to use as the style for the editor.
Feel free to write it
Matthias
Logged
pcwacht
Guest
Re: FCKEditor Modul
«
Reply #61 on:
January 06, 2006, 12:45:35 PM »
Another way to avoid the wrong body background colors
make a copy of the screen.css and call it something else, like fck_screen.css
remove the body tag from there and let fck work with that one
another benefit is you can delete more css tags if you don't need them in your wysiwyg
drawback, two files to edit if you alter any css
John
Logged
kibmcz
Offline
Posts: 217
Re: FCKEditor Modul
«
Reply #62 on:
January 06, 2006, 09:21:55 PM »
Quote from: ruebenwurzel on January 06, 2006, 11:54:44 AM
@kibmcz
Puuuh that was difficult to find out what you wanna say. But i found it. Maybe its better not to hide your question in quote.
Quote
Is there a possibilty to have a configure fckeditor button on the toolbar. In the config it would initialy let you set what tag to use as the style for the editor?.
Feel free to write it
Matthias
i would but i know nothing about php.
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #63 on:
January 06, 2006, 09:33:44 PM »
@pcwacht
The more i think about your idea the more i like it. So the user can decide whether he wants the normal layout of FCKEditor (if no fck_screen.css is in the template dir) or the Layout with user defined fck_screen.css. This could be the same as screen.css or anotherone where he could also define maybe only the the Font settings or whatever he want.
Okay if there are changes at the layout you have to change two files, but with the template edit addon from WB 2.6.1 this is very easy and could be done in a very short time.
Will have a look at the code tonight and do some testings.
Matthias
«
Last Edit: January 06, 2006, 09:37:38 PM by ruebenwurzel
»
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #64 on:
January 07, 2006, 01:38:46 AM »
We proudly presents RC2 of FCKEditor 2.1.
The style from the Editorwindow now is defined in a fck_screen.css within your template. If there is no fck_screen.css in your template, FCKEditor uses the default fckeditorarea.css from FCKEditor. So you can use this modul without any changes at the files of your templates.
To get the styles from your homepage displayed in the the editor window you have to create a fck_screen.css in your template dir. If you wanna have all your styles in the FCKEditor simply make a copy of your screen.css to fck_screen.css. You also can define completly new styles should be displayed in the styles Listg of FCKEditor. The font and the background of the Editorwindow must be defined in "body".
The only thing i don't get to work is, if no fck_screen.css is defined to switch back the styles list in FCKEditor to the default one. So now you see if no fck_screen.css is in the template dir no options for styles.
So what do you think is better. To define the Editor window and styles in a separate fck_screen.css or to use the screen.css from the template? The fck_screen.css give you all abilitys to configure FCKEditor but you have to make a new File in your Template. To use the screen.css could mean, that you have to rewrite some Classes or IDs in your template to get the results in FCKEditor you want (look the post above).
Waiting for your response
Matthias
Edit: Deleted the downloadlink for RC2, you find version 2.1
here.
«
Last Edit: January 16, 2006, 09:27:18 PM by ruebenwurzel
»
Logged
bkvernst
Offline
Posts: 35
Re: FCKEditor Modul
«
Reply #65 on:
January 07, 2006, 03:02:48 AM »
Wow! This is great!
We really are talking about WhatYouSeeIsWhatYou
Get! This is the best editor for any CMS ever made, for sure. Good job!!
Logged
kweitzel
Forum administrator
Offline
Posts: 6975
Re: FCKEditor Modul
«
Reply #66 on:
January 07, 2006, 11:02:16 AM »
i have to agree with bkvernst, that is a verry good mudule and Matthias found a verry good solution with the fck_screen.css file.
I actually consider now to split my screen.css file and load it with the template as well, so I don't need to update 2 files (is it actually possible?), lazy me ...
Thanks Matthias for this great module ...
Klaus
Logged
WebsiteBaker Org e.V. - for WebsiteBaker
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #67 on:
January 07, 2006, 12:11:12 PM »
In your template should be the following .css files
screen.css
print.css
fck_screen.css
The fck_screen.css could be a copy of the screen.css
Hope this helps
Matthias
Logged
melissa
Offline
Posts: 166
Re: FCKEditor Modul
«
Reply #68 on:
January 07, 2006, 08:34:16 PM »
This is a brilliant improvement, Matthias! Thanks!
Logged
Attila
Offline
Posts: 150
Re: FCKEditor Modul
«
Reply #69 on:
January 07, 2006, 11:22:33 PM »
Yeah! Matthias you are the hero!!!
-- Dave
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #70 on:
January 08, 2006, 12:38:42 AM »
Thanks,
but the most work was done by woudloper. He writes the code, i only cleaned and tested it. So please give your thanks more to him then to me.
So if you like it and there are now problems, could we release the RC2 as a final Version in Completed modules?
Have fun
Matthias
Logged
nish
Offline
Posts: 1
Re: FCKEditor Modul
«
Reply #71 on:
January 13, 2006, 03:53:30 AM »
this looks fantastic, many congratulations on creating what looks to be a brilliant mod.
unfortunately for me, i am having trouble enabling it.
i have downloaded RC2 version and installed it (no errors were reported)
but when i modify a page in the admin area the htmlarea based editor is active.
how do i switch on the FCKEditor?
(I am using version 2.6.1 of WB)
EDIT: Ok, I was being a little stupid there. All I had to do was go to the 'Advanced Options' in the Settings section of the admin area.
«
Last Edit: January 13, 2006, 04:07:53 AM by nish
»
Logged
Olli
Offline
Posts: 290
Re: FCKEditor Modul
«
Reply #72 on:
January 15, 2006, 11:18:14 PM »
hello,
that soooo nice to use a template embedded css for the editor
i love that idea!
but could it be it's not possible to use images as wb-links,yet? whenever i try to use a picture for wb page linking it say "mark some text first" or something like that
bye
Logged
Attila
Offline
Posts: 150
Re: FCKEditor Modul
«
Reply #73 on:
January 16, 2006, 06:26:16 AM »
Quote from: Olli on January 15, 2006, 11:18:14 PM
but could it be it's not possible to use images as wb-links,yet? whenever i try to use a picture for wb page linking it say "mark some text first" or something like that
@Olli
That sounds as if you would push the wrong button... The picture button is the one between the anchor and the flash-symbol.
-- Dave
Logged
ruebenwurzel
WebsiteBaker Org e.V.
Offline
Posts: 7973
Re: FCKEditor Modul
«
Reply #74 on:
January 16, 2006, 06:31:01 AM »
Hello,
Do what the message say and it should work. First mark the picture you wanna link and then hit the insert WB link. Tested on different installations, it should work.
If not, one idea, but not shure if this has something to do with your message. For a german projekt i changed in the plugins/Wbmodules folder from FCKEditor in the file wbmodules.html the charset from "utf-8" to "ISO-8859-1". As I released the FCKEditor modul at completed Modules i forgot to set this back to "utf-8". So change this yourself, in the next release (Vers. 2.1) it will be corrected.
Matthias
Logged
Pages:
1
2
[
3
]
4
5
...
17
Go Up
Jump to:
Please select a destination:
-----------------------------
General
-----------------------------
=> General Announcements
=> Security Announcements
=> Documentation
=> WebsiteBaker Website Showcase
=> Guest Area & Off-Topic
-----------------------------
English
-----------------------------
=> WebsiteBaker 2.9
===> Announcements
===> Help/Support
=====> Modules / Extensions
===> Suggestions
===> Software bugs
=> Help & Support
=> Modules
=> Droplets (PHP code for use with Droplet module) & Snippets (raw PHP code)
=> jQuery
=> Templates, Menus & Design
=> WebsiteBaker Language Files
=> WebsiteBaker 2.x discussion
=> WebsiteBaker 3
=> Archive (posts up to 2007)
-----------------------------
Deutsch (German)
-----------------------------
=> Ankündigungen
=> WebsiteBaker 2.9
===> Ankündigungen
===> Hilfe/Support
=====> Module / Extensions
===> Vorschläge
===> Softwarefehler
===> Erfahrungs und Testberichte
=> Hilfe/Support
=> Module & Snippets
=> Templates & Design
=> Tutorials
=> jQuery
=> Diskussion über WB
=> Off-Topic
=> Archiv für Themen bis 2007
-----------------------------
Nederlands (Dutch)
-----------------------------
=> Aankondigingen
=> Hulp & Ondersteuning
=> Niet-Terzake (Off Topic)
-----------------------------
Francais (French)
-----------------------------
=> Help/Support
-----------------------------
Italiano (Italian)
-----------------------------
=> Help/Support
-----------------------------
Bakery (WB shop module)
-----------------------------
=> Bakery English
=> Bakery Deutsch
-----------------------------
KeepInTouch (Multi Contact Module)
-----------------------------
=> KeepInTouch English
=> KeepInTouch Deutsch
Loading...