Hi,
I've managed to install fckeditor succesfully, except that I can't get file and image uploads to work. When I click on the image button, I simply see a window that requests a url, but no browse button or anything like that. I've taken a screenshot that you can see here:
http://img174.imageshack.us/my.php?imag ... lemle8.jpg
Please help me!
Thu, 09/28/2006 - 16:39
#1
RE: No Browse button for image uploads
Just incase this helps anyone else in the future, I might as well explain how I solved this problem.

Well, I basically created the problem in the first place. I did a silly thing when installing it onto my site. I renamed the basedirectory 'fck' from 'FCKeditor'. Obviously not a wise thing to do. Once I reverted it back to the original name, it was ok.
Yes I know, a silly mistake, but hey
RE: No Browse button for image uploads
Just to be sure:
1) get a "fresh" download now. I recommend this for a PHP connector.
2) Create your own uploadable directories:
/home/.../public_html/yourpath/Image
/home/.../public_html/yourpath/File
/home/.../public_html/yourpath/Flash
/home/.../public_html/yourpath/Media
3) CHMOD 777 them yourself. Avoid letting FCKeditor create them for you. If FCKeditor has created them delete them and create and CHMOD them yourself.
Don't forget to chmod 777 /home/.../public_html/yourpath/ also!!!!!!!
4) Don't forget to configure BOTH:
FCKeditor/editor/filemanager/upload/php/config.php
and
FCKeditor/editor/filemanager/browser/default/connectors/php/config.php
5) Do this in BOTH:
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = '/yourpath/' ;
$Config['UserFilesAbsolutePath'] = '/home/.../public_html/yourpath/' ;
6) Do not forget this in fckconfig.js
var _FileBrowserLanguage = 'php' ;
var _QuickUploadLanguage = 'php' ;
Or it will NEVER work
7) God help you if your server is run in safe mode!
8) Use this file to test your uploading:
FCKeditor/editor/filemanager/upload/test.html
JOhn