Posted: Wed 22. Dec 2004, 17:36
Nope sry....the strange is, i use an own developed CMS on which i include FCK, and there it works without problems...
I haven´t changed anything in FCKedtor RC1, so I don´t know why....
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Nope sry....the strange is, i use an own developed CMS on which i include FCK, and there it works without problems...
can you reproduce this?frold wrote:Nope sry....the strange is, i use an own developed CMS on which i include FCK, and there it works without problems...
I haven´t changed anything in FCKedtor RC1, so I don´t know why....
Code: Select all
function FCKeditor( $instanceName )
{
$this->InstanceName = $instanceName ;
$this->BasePath = "".$phpwcms["root"]."/include/inc_ext/FCKeditorv2/" ;
$this->Width = '540' ;
$this->Height = '500' ;
$this->ToolbarSet = 'default' ;
Code: Select all
function FCKeditor( $instanceName )
{
$this->InstanceName = $instanceName ;
$this->BasePath = "".$phpwcms["root"]."/include/inc_ext/FCKeditorv2/" ;
$this->Width = '540' ;
$this->Height = '500' ;
$this->ToolbarSet = 'silver' ;
Im not at home, so I cant give you the exact filepath but the toolbar styles is controled in the config file....Paal wrote:Hello!
How can I change toolbar skin this hack?
did you changes the settings in conf.inc.php`?ayamudua wrote:Does not work. I have changed everything and double checked the syntax, still does not work. I cant see the FCKeditor , the plain old default still shows up. Any idea where I may need to change things again to work?
When I look at that line in the default installation, all of that area is commented out. Is that the way I am supposed to leave it? or should remove the comments. I did remove the comment , tried it, did not work. Put the comments back, still did not work.Open
inc_tmpl/article.new.tmpl.php
Find:
Code:
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article_summary ;
$oFCKeditor->CreateFCKeditor( 'article_summary', '100%', '350' ) ;
break;
Replace with:
Code:
//load FCKeditor
case 2: include(PHPWCMS_ROOT."/include/inc_lib/fckeditor.editor.inc.php") ;
$oFCKeditor = new FCKeditor(article_summary) ;
$oFCKeditor->ToolbarSet = 'phpwcms' ;
$oFCKeditor->Value = $article_summary ;
$oFCKeditor->Create() ;
break;
I have the current version. Release 1.1-RC4 27-08-2004frold wrote:what version of phpwcms do you have?
I NOW ger this error:To use the style function inside the editor you need to place this in your template under "html head"
Code:
<link href="include/inc_ext/FCKeditorv2/editor/css/fck_editorarea.css" rel="stylesheet" type="text/css">
Please help. I know I have to go and remove the changes above. But I cannot get to the point to remove that code. So how do I remove that code without going through the admin backend. Thanks everyone for the suggestions.Warning: Cannot modify header information - headers already sent by (output started at /home/bonstron/public_html/obots/include/inc_conf/conf.inc.php:76) in /home/bonstron/public_html/obots/login.php on line 132
sometimes it is best to start all over...I may have to take it down and start from the begining.
yes ofcauseDo you want to take a look at some configuration file?