Text Area Rich for now. I'm hoping to develop my own eventually though.
I am also having an issue when I try to create a new page....The editor locks up with a javascript error saying the viewMode is undefined. This problem came about after changing the blank.html file that loads into the editor. I tried to change it back but it still doesn't seem to work.
blank.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
</html>
I'm pretty sure it has something to do with this file because if I try to edit a page it works fine.
editable.php:
<?php
require'connect.php';
if(isset($_GET['id'])){
$getContents= 'Select content, title FROM pages WHERE keyword="'.$_GET['id'].'" LIMIT 1';
$content=$conn->Execute($getContents);
if($content->EOF){
die('The Page You Have Requested Is Currently Unavailable.');
}else{
echo '<html>'.$content->fields[0]->value.'</html>';
}
}
?>
BTW...the editor is configured to only save from <body> to </body>...I then trim these tags off before I send to database.