[ This topic is solved ]
marc
24 August 11 / 14:17
CKEditor doesn't work. I get the javascript error
init empty or no object. (ckeditor.js , line 23 character 1977)
what to do?
marc
31 August 11 / 12:23
sorry for late reply. Thought i would get an e-mail notification when someone replies to my forum post.
But you can check my installed version at: http://www.hegrowolvega.nl/test/
I simply downloaded the new FH release (v1.3) unzipped it and
called the editor with the follow code in index.php
marc
31 August 11 / 12:24
<?php
require_once( "class.dbFormHandler.php" );
$form = new FormHandler ();
//error_reporting(0);
// set the database info
//$form->dbInfo($db, "tbl_contents", "mysql" );
//$form->dbConnect($host,$user,$pass);
$form -> editor ( "Content" , "content" , "" , "" , "" , "silver" , "100%" , 520 );
echo $form -> flush ( true );
die();
?>
tested with FF6 and IE8, but no positive result
marc
31 August 11 / 12:31
ahh maybe usefull php on server is: 5.3.3-7 phpinfo (for few day exposed) can be found in same folder under info.php.
also i saw in above code i include the dbfh instead of regular fh. Although i now it doesn't much matter is changed to include normal fh class file.
Help is very welcome!!
Johan Wiegel (Admin)
01 September 11 / 11:59
You are using a skin, (silver) which is not available in the new version.
marc
05 September 11 / 15:34
thanks, issue solved!