Hi All,
I'm new here.
Ive just uploaded a test page including the fckeditor to a server and am getting the following error message
"Fatal Error - Cannot instantiate non-existent class: fckeditor in :.........line 12"
Line 12 relates to :
$oFCKeditor = new FCKeditor('FCKeditor1') ;
Is this an issue with the editor package i have, a path error...or the fact that I'm running php4.4.8 (as i know php4 doesn't like running some classes) ??
Thanks in advance
I'm new here.
Ive just uploaded a test page including the fckeditor to a server and am getting the following error message
"Fatal Error - Cannot instantiate non-existent class: fckeditor in :.........line 12"
Line 12 relates to :
$oFCKeditor = new FCKeditor('FCKeditor1') ;
Is this an issue with the editor package i have, a path error...or the fact that I'm running php4.4.8 (as i know php4 doesn't like running some classes) ??
Thanks in advance

Re: Newbie: Issues with PHP4 ?
viewtopic.php?f=6&t=6443&p=17354&hilit=+fatal+error#p17354
Re: Newbie: Issues with PHP4 ?
<?php include_once("/var/virtual/web/user/html/editor/fckeditor/fckeditor.php") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="sampleposteddata.php" method="post" target="_blank"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/var/virtual/web/user/html/editor/fckeditor/fckeditor.php' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html>