Hi all,
I have encountered a problem on deploying DNN in webserver.
Situation:
Multiple .net applications
Dnn is installed in root directory
other application are presented as virtual directory
I.e.
http://localhost/ <-- dnn (4.8.4)
http://localhost/appa <-- .net2.0 application
However, it will cause error on appa, since it is inherited the web.config from the dnn
to resolve the problem. I must add "" between in web.config in DNN
After that, I found that ajax wont work.
After tracing the code many times. I find that in AJAX.vb and Config.vb, when it parse the xml, it will only parse "configuration/system.web" (Now I have to use location to encapsulate the system.web, which should be configuration/location/system.web). That why the AJAX wont work. Moreover, if we are installing Non-PA modules to dnn, it should cause error also. As dnn cannot insert sub directory to web.config.
I am hoping DNN can provide a fix on this problem. As I dont wanna recompile the source code.
heeae