m (moved CKFinder/Developers Guide/PHP/Configuration/Quick Start to CKFinder 1.x/Developers Guide/PHP/Configuration/Quick Start) |
|||
(7 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | == | + | == The CheckAuthentication() function<br> == |
− | + | By default, CKFinder will not work due to authentication restrictions. You must first be sure that you have configured it properly, and then enable it. | |
− | < | + | |
+ | Once you have completely configured CKFinder, you are ready to enable it for use. The CheckAuthentication() function is used for that. In this function, you must implement the code that ensures that the requests are coming from an authenticated user. This is usually done by assigning a session variable when the user logs on your system. | ||
+ | |||
+ | Return "true" if the user is properly authenticated. We strongly recommend you to NOT simply return "true" from this function without implementing authentication checks. Anonymous users would be able to use CKFinder, including uploading and deleting files from your server. | ||
+ | |||
+ | The following is a sample implementation for it: | ||
+ | <source>function CheckAuthentication() | ||
+ | { | ||
+ | return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized']; | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | {{CKFinder Sessions|lang=PHP}} | ||
=== License === | === License === | ||
If you purchased CKFinder you should put your license key in the config.php file: | If you purchased CKFinder you should put your license key in the config.php file: | ||
− | < | + | <source lang="php">$config['LicenseName'] = 'put your license name here'; |
− | $config['LicenseKey'] = 'put your license key here';</ | + | $config['LicenseKey'] = 'put your license key here';</source> |
− | If you leave this fields blank CKFinder will be fully functional | + | If you leave this fields blank CKFinder will be fully functional but it will be ruining in demo mode. |
=== baseUrl === | === baseUrl === | ||
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: | ||
− | < | + | <source lang="php">$baseUrl = 'http://example.com/ckfinder/files/'; |
− | $baseUrl = '/userfiles/';</ | + | $baseUrl = '/userfiles/';</source> |
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 34: | ||
You may point it to a directory directly: | You may point it to a directory directly: | ||
− | < | + | <source lang="php">$baseDir = '/home/login/public_html/ckfinder/files/'; |
− | $baseDir = 'C:/SiteDir/CKFinder/userfiles/';</ | + | $baseDir = 'C:/SiteDir/CKFinder/userfiles/';</source> |
Or you may let CKFinder discover the path, based on $baseUrl: | Or you may let CKFinder discover the path, based on $baseUrl: | ||
<pre>$baseDir = resolveUrl($baseUrl);</pre> | <pre>$baseDir = resolveUrl($baseUrl);</pre> |
Latest revision as of 07:46, 28 May 2010
The CheckAuthentication() function
By default, CKFinder will not work due to authentication restrictions. You must first be sure that you have configured it properly, and then enable it.
Once you have completely configured CKFinder, you are ready to enable it for use. The CheckAuthentication() function is used for that. In this function, you must implement the code that ensures that the requests are coming from an authenticated user. This is usually done by assigning a session variable when the user logs on your system.
Return "true" if the user is properly authenticated. We strongly recommend you to NOT simply return "true" from this function without implementing authentication checks. Anonymous users would be able to use CKFinder, including uploading and deleting files from your server.
The following is a sample implementation for it:
function CheckAuthentication() { return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized']; }
License
If you purchased 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 but it will be ruining 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:
$baseDir = '/home/login/public_html/ckfinder/files/'; $baseDir = 'C:/SiteDir/CKFinder/userfiles/';
Or you may let CKFinder discover the path, based on $baseUrl:
$baseDir = resolveUrl($baseUrl);
Remember 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 address.
Example:
$baseUrl = 'http://example.com/ckfinder/files/'
the path won't be discovered. Notice that the trailing slash is required.