i am new to fckeditor. everything seems to be working fine, except for the file browser. if i upload a file, it works correctly, but does not show the links in the file browser. the files on the server are in the right place, etc. the directories are chmod 777. here are my config settings. any help would be appreciated. thanks...
File manager connector:
// SECURITY: You must explicitelly enable this "connector". (Set it to "true").
$Config['Enabled'] = true ;
// Path to user files relative to the document root.
$Config['UserFilesPath'] = '/kb_upload/' ;
// Fill the following value it you prefer to specify the absolute path for the
// user files directory. Usefull if you are using a virtual directory, symbolic
// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
// Attention: The above 'UserFilesPath' must point to the same directory.
$Config['UserFilesPath'] = $conf['fck_upload_dir']; {this variable = '/htdocs/www/kb_upload'}
PHP file uploader:
// SECURITY: You must explicitelly enable this "uploader".
$Config['Enabled'] = true ;
// Set if the file type must be considere in the target path.
// Ex: /UserFiles/Image/ or /UserFiles/File/
$Config['UseFileType'] = true ;
// Path to uploaded files relative to the document root.
$Config['UserFilesPath'] = '/kb_upload/' ;
// Fill the following value it you prefer to specify the absolute path for the
// user files directory. Usefull if you are using a virtual directory, symbolic
// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
// Attention: The above 'UserFilesPath' must point to the same directory.
$Config['UserFilesAbsolutePath'] = '' ;
File manager connector:
// SECURITY: You must explicitelly enable this "connector". (Set it to "true").
$Config['Enabled'] = true ;
// Path to user files relative to the document root.
$Config['UserFilesPath'] = '/kb_upload/' ;
// Fill the following value it you prefer to specify the absolute path for the
// user files directory. Usefull if you are using a virtual directory, symbolic
// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
// Attention: The above 'UserFilesPath' must point to the same directory.
$Config['UserFilesPath'] = $conf['fck_upload_dir']; {this variable = '/htdocs/www/kb_upload'}
PHP file uploader:
// SECURITY: You must explicitelly enable this "uploader".
$Config['Enabled'] = true ;
// Set if the file type must be considere in the target path.
// Ex: /UserFiles/Image/ or /UserFiles/File/
$Config['UseFileType'] = true ;
// Path to uploaded files relative to the document root.
$Config['UserFilesPath'] = '/kb_upload/' ;
// Fill the following value it you prefer to specify the absolute path for the
// user files directory. Usefull if you are using a virtual directory, symbolic
// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
// Attention: The above 'UserFilesPath' must point to the same directory.
$Config['UserFilesAbsolutePath'] = '' ;

RE: file browser is empty
http://www.clubrunner.net/kb/admin/tool ... ntFolder=/
RE: file browser is empty
PHP Fatal error: Call to undefined function: utf8_encode() in /htdocs/www/kb/admin/tools/FCKeditor/editor/filemanager/browser/default/connectors/php/util.php on line 35
i'm using php4, why isn't this working?
RE: file browser is empty
http://