Line 13: | Line 13: | ||
The '''$baseUrl''' is the base path used to build the final URL for the resources handled in CKFinder. Examples: | The '''$baseUrl''' is the base path used to build the final URL for the resources handled in CKFinder. Examples: | ||
− | + | <pre>$baseUrl = 'http://example.com/ckfinder/files/'; | |
$baseUrl = '/userfiles/';</pre> | $baseUrl = '/userfiles/';</pre> | ||
If you leave this field empty the default value (/userfiles/) will be used. Notice that the trailing slash is required. | If you leave this field empty the default value (/userfiles/) will be used. Notice that the trailing slash is required. | ||
Line 22: | Line 22: | ||
You may point it to a directory directly: | You may point it to a directory directly: | ||
− | <pre><pre>$baseDir = '/home/login/public_html/ckfinder/files/';</pre> | + | <pre><pre>$baseDir = '/home/login/public_html/ckfinder/files/';</pre><pre></pre> |
$baseDir = 'C:/SiteDir/CKFinder/userfiles/';</pre> | $baseDir = 'C:/SiteDir/CKFinder/userfiles/';</pre> | ||
Or you may let CKFinder discover the path, based on $baseUrl: | Or you may let CKFinder discover the path, based on $baseUrl: |
Revision as of 11:31, 21 December 2007
Contents
Enabling
The first step you should take in order to configure your CKFinder is enabling it. This option is essential for the programm to work properly.
You should enable this option by setting it to true:
$config['Enabled'] = true;
License
If you purchesed CKFinder you should put your license key in the config.php file:
$config['LicenseName'] = 'put your license name here'; $config['LicenseKey'] = 'put your license key here';
If you leave this fields blank CKFinder will be fully functional bu it will be runing in demo mode.
baseUrl
The $baseUrl is the base path used to build the final URL for the resources handled in CKFinder. Examples:
$baseUrl = 'http://example.com/ckfinder/files/'; $baseUrl = '/userfiles/';
If you leave this field empty the default value (/userfiles/) will be used. Notice that the trailing slash is required.
baseDir
The $baseDir is the path to the local directory (in the server) which points to the above $baseUrl URL. This is the path used by CKFinder to handle the files in the server. Full write permissions must be granted to this directory. Examples:
You may point it to a directory directly:
<pre>$baseDir = '/home/login/public_html/ckfinder/files/';
$baseDir = 'C:/SiteDir/CKFinder/userfiles/';</pre> Or you may let CKFinder discover the path, based on $baseUrl:
$baseDir = resolveUrl($baseUrl);
Remeber that CKFinder will only discover the path when the base url is a local web path ( relative to document root ).
Example:
$baseUrl = '/userfiles/'
If it is a full URL adress.
Example:
$baseUrl = 'http://example.com/ckfinder/files/'
the path won't be discovered. Notice that the trailing slash is required.