ckeditor_3.0.2.zip
+
ckfinder_php_1.4.1.1.zip
folder plugin
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1',
{
filebrowserBrowseUrl : '/plugin/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : '/plugin/ckfinder/ckfinder.html?Type=Images',
filebrowserFlashBrowseUrl : '/plugin/ckfinder/ckfinder.html?Type=Flash',
filebrowserUploadUrl : '/plugin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
filebrowserImageUploadUrl : '/plugin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl : '/plugin/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
}
);
//]]>
</script>config.php\plugin\ckfinder
Not Found
The requested URL /plugin/ckfinder/core/connector/php/connector.php was not found on this server.

Re: Connector.php was not found on this server
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Connector.php was not found on this server
Re: Connector.php was not found on this server
File setting is
directly to the file
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Re: Connector.php was not found on this server
Image uploads are working. It's just PDF uploads that don't work.
Re: Connector.php was not found on this server
I would appreciate any help that you might offer. Thank you.
Re: Connector.php was not found on this server
Re: Connector.php was not found on this server
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Connector.php was not found on this server
http://docs.cksource.com/CKFinder_2.x/D ... uick_Start
function CheckAuthentication() { // WARNING : DO NOT simply return "true". By doing so, you are allowing // "anyone" to upload and list the files in your server. You must implement // some kind of session validation here. Even something very simple as... return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized']; // ... where $_SESSION['IsAuthorized'] is set to "true" as soon as the // user logs in your system. To be able to use session variables don't // forget to add session_start() at the top of this file. }you must be sure of the user
function CheckAuthentication() { return true; }Re: Connector.php was not found on this server
is actually equal to putting in config.php:
function CheckAuthentication() { return true; }which is obviously not safe in most cases.
The correct way (more or less) is to set "$_SESSION['IsAuthorized']" (or whatever), once the user is logged in and has correct permissions to the application where CKFinder is enabled.
I'm writing this just in case someone misunderstood the explanation above.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Hello,
Hello,
Even in following the instructions above, I still have the message :
Not Found. The requested URL /ckfinder/ckfinder.html was not found on this server.
I tryed to change the next line in the config.js file :
$baseUrl = 'http://localhost/Symfony/web/addons/ckfinder/userfiles';
$baseDir = resolveUrl($baseUrl);
Where is the issue ?
Thanks.
Bye,
The server encountered an
The server encountered an internal error or misconfiguration and was unable to complete your request.