Same include file for multiple websites in classic ASP on IIS 6
How do I let several websites on my server access the same include-file? I want my websites to access the same file so that central functions do not have to be uploaded to each and every /public_html/
Web DevelopmentMicrosoft IIS Web Server
Last Comment
Alfahane
8/22/2022 - Mon
epochasset
Standard practice would be to create a directory 1 level up from each site, give the users the sites run as access to that directory, and when doing includes use relative paths. For example, ../includes would refer to a 'include' directory up one folder, and when doing the includes use ../includes/whatevercodefile.php, etc.