Reading through http://docs.fckeditor.net/CKEditor_3.x/ ... _(Uploader), I'm a little confused on how to actually set up file uploading. The page says that "The filebrowserUploadUrl setting is the location of a script that 'handles' file uploads". What exactly does that mean? Does the script need to produce a form that the user is going to then see and use? Or are file uploads handled through some CKEditor form which will pass the file object to the given script?
Fri, 09/04/2009 - 20:38
#1
Re: how to write uploader.php?
The filebrowserUploadUrl setting is the location of a script that 'handles' file uploads
You need to "install" some server side script that can handle a file upload.
This has nothing to do with a html form or something like that....
Take a look at: http://www.w3schools.com/PHP/php_file_upload.asp
(skip "Create an Upload-File Form" because fck handles the sending of the data and you don't need any form
to write)....
or try to google for: php file upload script
regards