intramanga
Posts: 12
|
| Posted: 06/19/2006, 2:03 AM |
|
The above link seems to be dead. 
Anyone know how to incorporate wysiwygpro in CCS replacing
text field.
Many thanks in advance.
Eddy,
|
 |
 |
Damian Hupfeld
|
| Posted: 06/19/2006, 4:53 AM |
|
I couldnt find anything on WYSIWYFPRO but FCKEDITOR is free and easy to
implement.
"intramanga" <intramanga@forum.codecharge> wrote in message
news:54496686c9f641@news.codecharge.com...
> The above link seems to be dead. 
> Anyone know how to incorporate wysiwygpro in CCS replacing
> text field.
> Many thanks in advance.
> Eddy,
>
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
intramanga
Posts: 12
|
| Posted: 06/19/2006, 5:59 AM |
|
quote=Damian Hupfeld]
I couldnt find anything on WYSIWYFPRO but FCKEDITOR is free and easy to
implement.
Thanks Damian, I now about FCKEDITOR but I bought WYSIWYFPRO a few years ago and find it richer in features. Seems that some people were able to implement it here http://forums.codecharge.com/posts.php?post_id=48414
but the links seems to be dead. I managed it to open in a new window but not replacing text field.
Eddy,
|
 |
 |
Damian Hupfeld
|
| Posted: 06/19/2006, 6:38 AM |
|
I searched for the article - even tried google cache but couldnt find it -
sorry.
I use FCK because its free and it works. It is however clumsy at times.
"intramanga" <intramanga@forum.codecharge> wrote in message
news:544969fca00895@news.codecharge.com...
> quote=Damian Hupfeld]
> I couldnt find anything on WYSIWYFPRO but FCKEDITOR is free and easy to
> implement.
>
>
>
> Thanks Damian, I now about FCKEDITOR but I bought WYSIWYFPRO a few years
> ago
> and find it richer in features. Seems that some people were able to
> implement
> it here http://forums.codecharge.com/posts.php?post_id=48414
> but the links seems to be dead. I managed it to open in a new window but
> not
> replacing text field.
>
> Eddy,
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
feha
Posts: 712
|
| Posted: 06/19/2006, 2:12 PM |
|
Yes it is implemented in Vision.To CMS and works great ...
http://www.yessoftware.com/marketplace/details.php?exchange_id=4
_________________
Regards
feha
www.vision.to
feedpixel.com |
 |
 |
intramanga
Posts: 12
|
| Posted: 06/19/2006, 4:13 PM |
|
Quote feha:
Thanks, I noticed that , but $1,500 is a bit too much to get the know-how 
Ed,
|
 |
 |
mamboBROWN
Posts: 1713
|
| Posted: 06/19/2006, 10:21 PM |
|
intramanga
I was able to successfully integrate TinyMCE into one of my apps ( http://forums.codecharge.com/posts.php?post_id=74329 ). I did not use all of the features but I thought that it was fairly easy. Maybe it may meet your needs as well. I followed the installation instructions and integrated it (TinyMCE) into CCS ( http://tinymce.moxiecode.com/tinymce/docs/installing.html ).
|
 |
 |
feha
Posts: 712
|
| Posted: 06/20/2006, 12:49 AM |
|
well you get lot more than that , ready development of 3 years work 
here some tips:
if(file_exists("../Editor/config.php"))
{
include_once ("../Editor/config.php");
include_once ("../Editor/editor_class.php");
include_once ("../Editor/editor_functions.php");
}
before you show the form
ob_start();
//echo WP_FILE_DIRECTORY;
global $CMS_CONFIG;
$editor=new wysiwygPro();
if($CMS_CONFIG['USE_XHTML'] == 1)
{
$editor->usexhtml(true,"utf-8","en");
}
$editor->usep(true);
$editor->removebuttons('font');
$editor->removebuttons('size');
/*
$editor->set_formatmenu(array(
'p' => 'Paragraph'
));
*/
$editor->set_name('WYSIWYG_CONTENT');
$editor->set_code($cms_pages1->content->GetValue());
$cms_pages1->WYSIWYG_EDITOR->SetValue($editor->return_editor(580,500));
ob_end_flush();
}
// the WYSIWYG_EDITOR is html label
//before insert and before update should have this code:
if(file_exists("../Editor/config.php"))
{
if(stripslashes($_POST['WYSIWYG_CONTENT']) !="")
{
$cms_pages1->content->SetValue(stripslashes($_POST['WYSIWYG_CONTENT']));
}
}
hope this helps 
_________________
Regards
feha
www.vision.to
feedpixel.com |
 |
 |
intramanga
Posts: 12
|
| Posted: 06/20/2006, 2:17 AM |
|
Quote feha:
well you get lot more than that , ready development of 3 years work
Hi Feha,
Will give your tips a try - thanks !
Sure your ready development is worth his price , no doubt about , but having my own little cms for personal use already running and just would like this nice editor which I own already from earlier projects to use also with CCS. Both are GREAT 
Thanks a lot,
Ed,
|
 |
 |
intramanga
Posts: 12
|
| Posted: 06/20/2006, 2:22 AM |
|
Quote mamboBROWN:
Hi mamboBROWN,
Thanks for the tip , IŽll keep it in mind if I keep struggling with wysiwygpro , but not giving up yet as I am not in a hurry and it only is for personal use.
Thanks anyway,
Ed,
|
 |
 |