My script has the option to upload the image, I downloaded the latest version and the time to insert an image does not have the option to upload, can you help me? How should I install? Use with PHP.
onedeesain wrote:Yes, i'm too...i can't find browse button....maybe that it for licence version...
I dont think so, image upload is one of the main module in this editor.... issue is there , with the new version (Topic View Counter is 167 now) Please help us..
I'm Chinese,my English is not very well,so I hope you would understand what i said,and could get something helpful to you. get the source code of 3.0.1 CKeditor.Under the folder " _source\plugins\image\dialogs" ,open the file "image.js",find the keyword "upload" and delete the line which written "hidden : true". at last copy the floder "image" to the "plugins\". The all operations done are under the folder "ckeditor".
The filebrowserUploadUrl setting is the location of a script that handles file uploads. If set, the "Upload" tab(2) will appear in dialog boxes (only where such functionality is available, i.e. in "Link", "Image" and "Flash" dialog windows).
Configure your Editor like CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl : '/browser/browse.php', filebrowserUploadUrl : '/uploader/upload.php' }); For example to set a special upload url for the image dialog, set the filebrowserImageUploadUrl property: CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl : '/browser/browse.php', filebrowserImageBrowseUrl : '/browser/browse.php?type=Images' filebrowserUploadUrl : '/uploader/upload.php', filebrowserImageUploadUrl : '/uploader/upload.php?type=Images' });
Re: Image Upload not exists
nothing??????
Re: Image Upload not exists
Re: Image Upload not exists
I dont think so, image upload is one of the main module in this editor....
issue is there , with the new version (Topic View Counter is 167 now)
Please help us..
Re: Image Upload not exists
get the source code of 3.0.1 CKeditor.Under the folder " _source\plugins\image\dialogs" ,open the file "image.js",find the keyword "upload" and delete the line which written "hidden : true".
at last copy the floder "image" to the "plugins\".
The all operations done are under the folder "ckeditor".
Re: Image Upload not exists
I'm sorry for my last answer.
U can get the infomation you want here.
http://docs.cksource.com/CKEditor_3.x/Developers_Guide
Re: Image Upload not exists
Here is the answer
The filebrowserUploadUrl setting is the location of a script that handles file uploads. If set, the "Upload" tab(2) will appear in dialog boxes (only where such functionality is available, i.e. in "Link", "Image" and "Flash" dialog windows).
Configure your Editor like
CKEDITOR.replace( 'editor1',
{
filebrowserBrowseUrl : '/browser/browse.php',
filebrowserUploadUrl : '/uploader/upload.php'
});
For example to set a special upload url for the image dialog, set the filebrowserImageUploadUrl property:
CKEDITOR.replace( 'editor1',
{
filebrowserBrowseUrl : '/browser/browse.php',
filebrowserImageBrowseUrl : '/browser/browse.php?type=Images'
filebrowserUploadUrl : '/uploader/upload.php',
filebrowserImageUploadUrl : '/uploader/upload.php?type=Images'
});
Image Upload tab will automatically appear!
please http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_%28Uploader%29 for more details
http://www.phpproficient.com/
Re: Image Upload not exists
I have almost got this successfully working. But I am missing the upload.php and browse.php files. Can some give me a link to get these files please?
Thanks.
Re: Image Upload not exists