FCKeditor having problem with url rewriting in asp.net?

812 views Asked by At

I have used FCKeditor in my project. It worked fine before i add url rewriting in my project. Now i can not upload images from my fckeditor properly.

I am using Intelligencia.UrlRewriter for url rewriting in asp.net.

Can any one help me to get out of this kind of problem?

2

There are 2 answers

1
NakedBrunch On BEST ANSWER

I'm guessing that the ISAPI rewrite rules are affecting where FCKEditor accesses the necessary html files causing a permanent 404.

Add a rule to exclude the images folder from being rewritten and you should be good to go.

Take a look here for some information about setting rules: http://urlrewriter.net/index.php/support/using

0
yogsma On

Do you have web.config file? If yes, try these settings in that file

<appsettings>
<add key="FCKeditor:UserFilesPath" value="~/UserFilesUpload" /> 
</appsettings>