doesn't work if in path containing 'admin'
<?
include("../fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = "/vtt/admin/fckeditor/" ;
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="<a href="http://www.fckeditor.net/" target="_blank">http://www.fckeditor.net/</a>">FCKeditor</a>.' ;
$oFCKeditor->Create() ;
?>
<?
include("../fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = "/vtt/admin2/fckeditor/" ;
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="<a href="http://www.fckeditor.net/" target="_blank">http://www.fckeditor.net/</a>">FCKeditor</a>.' ;
$oFCKeditor->Create() ;
?>
RE: doesn't work if in path containing 'admin
does it explode?
does it gives errors? javascript errors? php errors?
etc...
Have you checked that it isn't something in your server setup (sure it looks like some restriction based on folder name, maybe an htaccess rule)?
RE: doesn't work if in path contains 'admin'