(Text proof-reading and formatting) |
|||
Line 1: | Line 1: | ||
− | + | <note>There is still no officially released version of CKFinder that would contain the changes described below. | |
+ | </note> | ||
− | If you want to use CKFinder for | + | |
+ | If you want to use CKFinder for ASP.NET in an environment with Windows Authentication and use ASP.NET to handle the images, then you might need to perform a little adjustment on your side. | ||
== Overview == | == Overview == | ||
+ | The ASP code of CKFinder calls an ASP.NET page on the same server, so if the server is using some authentication method, we must forward the credentials to this new request. This is done automatically by CKFinder when Basic authentication is used, but for Windows Authentication we must rely on the configuration of the server as explained by Microsoft (see [http://support.microsoft.com/kb/314404/en-us How to forward the Kerberos authentication]). | ||
− | + | That is the idea, but surely you do not want to read too much, and you want something that works, so this [http://groups.google.com/group/microsoft.public.xml.msxml-webrelease/msg/cf30bb4d61cbf3fd post shows an easy way]. | |
− | |||
− | |||
== Solution == | == Solution == | ||
+ | First run <code>proxycfg</code> to see the current configuration. It should show that there is no proxy configured and there are no servers with direct access. | ||
− | + | Now we want to add the domain to the list of direct access and that way the server will forward the authentication credentials. In order to achieve this, run this command: | |
− | + | <source> | |
− | Now we want to add the domain to the list of direct access and that way the server will forward the authentication credentials, run this command:< | + | proxycfg -d -p " " "*.domain.com" |
− | + | </source> | |
− | (note that after the -p the first parameter is a quoted space and the second one your domain name). | + | (note that after the <code>-p</code> the first parameter is a quoted space and the second one is your domain name). |
After this step the wizard should be able to pass this test correctly. | After this step the wizard should be able to pass this test correctly. |
Revision as of 13:30, 7 December 2011
There is still no officially released version of CKFinder that would contain the changes described below.
If you want to use CKFinder for ASP.NET in an environment with Windows Authentication and use ASP.NET to handle the images, then you might need to perform a little adjustment on your side.
Overview
The ASP code of CKFinder calls an ASP.NET page on the same server, so if the server is using some authentication method, we must forward the credentials to this new request. This is done automatically by CKFinder when Basic authentication is used, but for Windows Authentication we must rely on the configuration of the server as explained by Microsoft (see How to forward the Kerberos authentication).
That is the idea, but surely you do not want to read too much, and you want something that works, so this post shows an easy way.
Solution
First run proxycfg
to see the current configuration. It should show that there is no proxy configured and there are no servers with direct access.
Now we want to add the domain to the list of direct access and that way the server will forward the authentication credentials. In order to achieve this, run this command:
proxycfg -d -p " " "*.domain.com"
(note that after the -p
the first parameter is a quoted space and the second one is your domain name).
After this step the wizard should be able to pass this test correctly.