OM2 Posted October 8, 2008 Share Posted October 8, 2008 Cansomeone recommend an online text editor. OK, I've used FCKEditor and Tiny MCE. Both are excellent. Problem: they give toooo much power to the user, who ends up messing it all up! Is there an editor that is very simple, but allows making text bigger, change colours, change fonts - but not much else (like upload images!). I know there are looooads - but i just wanted a recommended one. ALSO, is there an editor that behaves properly when the return key is pressed? It's really annoying in FCKEditor: the problem is end users are harder to educate on how to use properly. Thanks. OM Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/ Share on other sites More sharing options...
CroNiX Posted October 8, 2008 Share Posted October 8, 2008 I believe that you can disable a lot of those options in the editors that you mentioned. Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659639 Share on other sites More sharing options...
OM2 Posted October 8, 2008 Author Share Posted October 8, 2008 yes, you're right im using fckeditor: and would like to stick with it! but do you know if we can get rid of the return key problem? AND: how about when a user get's text elswhere that is formatted? (i'm sure i have the flag on to paste all text as plain text, but it's not working well, since formatting still get's copied) thanks Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659640 Share on other sites More sharing options...
redarrow Posted October 8, 2008 Share Posted October 8, 2008 make ur own pal <?php $string = 'I [i]am[/i] so [b]cool[/b]'; $bb_replace=array('[b]','[/b]','[i]','[/i]'); $bb_replacements = array ('<b>','</b>','<i>','</i>'); $string = str_replace($bb_replace,$bb_replacements,$string); echo $string; ?> Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659641 Share on other sites More sharing options...
OM2 Posted October 8, 2008 Author Share Posted October 8, 2008 hmm... interesting not being lazy or anything but surely there must be a better way? Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659644 Share on other sites More sharing options...
R0bb0b Posted October 8, 2008 Share Posted October 8, 2008 hmm... interesting not being lazy or anything but surely there must be a better way? The documentation of TinyMCE tells you how to prohibit specific tags. Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659646 Share on other sites More sharing options...
redarrow Posted October 8, 2008 Share Posted October 8, 2008 have u even read the current forum for your current fckeditor editor m8....... http://www.fckeditor.net/forums/viewforum.php?f=5&sid=f72a1085d9e2d805560f55f02c3067d7 Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659647 Share on other sites More sharing options...
OM2 Posted October 8, 2008 Author Share Posted October 8, 2008 i made a psot 2 min beofr u sent ur reply their bulletin board does not work properly: i can't get with 2 previously created logins i had to create a new one to make a post thanks Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659650 Share on other sites More sharing options...
redarrow Posted October 8, 2008 Share Posted October 8, 2008 very easy to use.......... ur posted problam looks like u got a br on........ fckconfig.js <<< what in this file mate tell me lol........ what this all about hay hay hay lol http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Integration/PHP Quote Link to comment https://forums.phpfreaks.com/topic/127497-need-an-online-text-editor/#findComment-659653 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.