Note that there are some explanatory texts on larger screens.

plurals
  1. POCustomize baseUrl and baseDir in CKFinder
    primarykey
    data
    text
    <p>We use CKEditor and CKFinder for Coldfusion in many of our CMS applications. These apps point to different sites on our server, so we want CKFinder setup to upload files to directories specific to each app. But we one want one shared location for the CKEditor and CKFinder files on the server.</p> <p>In the config.cfm file, we have setup the default baseURL and baseDir like this:</p> <pre><code>config.baseUrl = "http://www.oursite.com/_files/site1/ckfinder_uploads/"; config.baseDir = '\\ourserver01\_files\site1\ckfinder_uploads\'; </code></pre> <p>In the header file for each app, we include the following to instantiate CKEditor and CKFinder (including the jQuery adapter):</p> <pre><code>&lt;script type="text/javascript" src="/shared/ckeditor/ckeditor.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="/shared/ckeditor/adapters/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="/shared/ckfinder/ckfinder.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ CKFinder.setupCKEditor( null, '/shared/ckfinder/' ); }); &lt;/script&gt; </code></pre> <p>When I open a CKFinder window in one of the apps, it correctly opens to the default baseURL/baseDir. However, how can I override those defaults? I tried changing the CKFinder setupCKEditor function to the following with no luck:</p> <pre><code>CKFinder.setupCKEditor( null, { basePath:'/shared/ckfinder/', baseUrl:"http://www.oursite.com/_files/NEWSITE/ckfinder_uploads/", baseDir:"\\\\ourserver01\\_files\\NEWSITE\\ckfinder_uploads\\" } ); </code></pre> <p>It just ignored this and used the defaults. Thoughts? Thanks!!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload