0
Hello,
I have an application installed in IIS 8 whose default file includes other files in folders located before the default.asp directory. Exemplifying:
the default.Asp file is located in:
httpdocs/www/pasta1/pasta2/pasta3.1/pasta4/default.asp
and I want it to upload files located in:
httpdocs/www/pasta1/pasta2/pasta3.2/pasta3.2.1/ficheiro.asp
No default.SP I have:
<!-- #include file="../../pasta3.2.1/lang.asp"-->
however I get the IIS’s Internal server error.
If I place the lang.Asp file in the same directory as the default.Asp, it is loaded. The idea is that (lang.Asp) be loaded by other applications in other directories.
Can you help me?
However it was possible to correct this problem. I leave the resolution here in case someone with the same situation appears. It was necessary, in the Application Pool of the site, in the ASP settings to put to True the parameter "Enable Parent Paths". I then re-started the app pool and the app worked.
– lfprata