Sorry if this has been asked a thousand times before, but I can'f find any useful answers.
I integrated CKFinder 2.0.1 with CKEditor 3.2.1. Everything works fine when browsing images from CKEditor's Image button. But when I call CKFinder.popup(), the Upload button is disabled (clickable, but nothing happens).
This seems to be a known issue (?). Is there a solution/workaround?
I integrated CKFinder 2.0.1 with CKEditor 3.2.1. Everything works fine when browsing images from CKEditor's Image button. But when I call CKFinder.popup(), the Upload button is disabled (clickable, but nothing happens).
This seems to be a known issue (?). Is there a solution/workaround?

Re: Upload problem with popup()
I've tried to reproduce it using the sample provided with CKFinder:
_samples/popups.html
and it works for me.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Upload problem with popup()
function ckBrowse(controlId) { var finder = new CKFinder(); finder.basePath = '/admin/ckfinder/'; finder.selectActionFunction = function(fileUrl, data) { var control = document.getElementById(controlId); control.value = fileUrl; } finder.popup(); }Tried it in FF 3.5 and IE 6.0
Re: Upload problem with popup()
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Upload problem with popup()
I'll boil down the code to a small test project and post it.
Re: Upload problem with popup()
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script language="JavaScript"> function popup(url, name) { var newWindow = window.open(url, 'aName', 'scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,width=500,height=500'); if (window.focus) newWindow.focus(); } </script> </head> <body> <a href="javascript:popup('dialog.php')">Open popup</a> </body> </html><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script type="text/javascript" src="/admin/ckeditor/ckeditor.js"></script> <script type="text/javascript" src="/admin/ckfinder/ckfinder.js"></script> <script language="JavaScript"> function ckBrowse(controlId) { var finder = new CKFinder(); finder.basePath = '/admin/ckfinder/'; finder.selectActionFunction = function(fileUrl, data) { var control = document.getElementById(controlId); control.value = fileUrl; } finder.popup(); } </script> </head> <body> <!-- Popup ckfinder. Upload button is disabled. --> <input type="text" name="path" id="imagePath" value=""/> <input type="button" value="..." onclick="ckBrowse('imagePath')"/> <!-- Standard ckeditor. Upload button is enabled from Image function. --> <textarea name="ckEditor" rows="8" cols="60"></textarea> <script type="text/javascript"> //<![CDATA[ window.CKEDITOR_BASEPATH='/admin/ckeditor/'; CKEDITOR.replace('ckEditor', { "filebrowserBrowseUrl": "/admin/ckfinder/ckfinder.html", "filebrowserImageBrowseUrl": "/admin/ckfinder/ckfinder.html?type=Images", "filebrowserFlashBrowseUrl": "/admin/ckfinder/ckfinder.html?type=Flash", "filebrowserUploadUrl": "/admin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files", "filebrowserImageUploadUrl": "/admin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images", "filebrowserFlashUploadUrl": "/admin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash", "toolbar": [ [ "Image" ] ], "skin": "v2" }); //]]> </script> </body> </html>Re: Upload problem with popup()
Any news on this?
Re: Upload problem with popup()
CKEditor for SharePoint
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Upload problem with popup()
Is there a rough date the next release will be ready?
Re: Upload problem with popup()
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+