I am left with just this error:
The requested URL /fckeditor/editor/fckeditor.html was not found on this server.
I have the following in the code:
$oFCKeditor->BasePath = '../fckeditor/editor/';
$oFCKeditor = new FCKeditor('fckeditor1') ;
The include include("../fckeditor/fckeditor.php") ; seems to be working.
Any help is appreciated.
The requested URL /fckeditor/editor/fckeditor.html was not found on this server.
I have the following in the code:
$oFCKeditor->BasePath = '../fckeditor/editor/';
$oFCKeditor = new FCKeditor('fckeditor1') ;
The include include("../fckeditor/fckeditor.php") ; seems to be working.
Any help is appreciated.
Re: Some progress but ...
'/fckeditor/editor/fckeditor.html' points to the root directory (because of the single leading slash), yet ../fckeditor/editor/ is outside the root (because you have ../ before the slash.
One of them is incorrect.