The forum operates in read-only mode. Please head to StackOverflow for support.
<form action="<?php echo $PHP_SELF; ?>" method="post">
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/FCKeditor/'; $oFCKeditor->Height = '400'; include_once("/var/www/vhost/glquebec.org/Karnak/editor/display.inc") ; display(); $oFCKeditor->Value = $contents; $Config['Enabled'] = true ; $Config['UserFilesPath']= '/Karnak/'; $Config['UserFilesAbsolutePath'] = '/var/www/vhost/glquebec.org/Karnak/' ; $oFCKeditor->Create() ; ?>
RE: UserFilesPath
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = '/Karnak/' ;
$Config['UserFilesAbsolutePath'] = '/var/www/vhost/glquebec.org/Karnak/' ;
This has got me No-Where too:
include("/var/www/vhost/glquebec.org/FCKeditor/fckeditor.php") ;
?>
<form action="<?php echo $PHP_SELF; ?>" method="post"><?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/FCKeditor/'; $oFCKeditor->Height = '400'; include_once("/var/www/vhost/glquebec.org/Karnak/editor/display.inc") ; display(); $oFCKeditor->Value = $contents; $Config['Enabled'] = true ; $Config['UserFilesPath']= '/Karnak/'; $Config['UserFilesAbsolutePath'] = '/var/www/vhost/glquebec.org/Karnak/' ; $oFCKeditor->Create() ; ?>RE: UserFilesPath
http://wiki.fckeditor.net/Developer%27s ... ration/PHP