Posted on: 5/28/2014 7:06:27 PM | Views : 442

Trying to get an older project functional again on our intranet and got everything setup, firewall setup and opened for the site, web config has been updated to point to new db and all login and functionality of the site work. with the exception of the background images and styling..
ive checked and because the site is all secure, we had added the following to the web.config to allow users access to the images and styles.
 
<location path="inc"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> <location path="imgs"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> Is there anything else we need to check?

Go to the complete details ...