virtual-directory

Default path for MSDN Reports Services /ReportServer and /Reports virtual directories

我怕爱的太早我们不能终老 提交于 2019-12-11 03:56:52
问题 I'm trying to use MSDN Reports Services 2005, but I'm realising that I broke the installation, so I'm trying to fix it without having to rebuild it entirely. (Though I'm becoming more tempted the longer this goes on.) Unfortunately, all the documentation assumes you haven't done something stupid. ;) Amongst the things I've broken in the process is that I've lost the IIS virtual directories that used to point to the server and reports directories (/ReportServer, /Reports), and I can't remember

IIS virtual directory from web.config

孤者浪人 提交于 2019-12-10 20:28:23
问题 I have a IIS problem that I think this blog gives me a fix for: To resolve it, Right Click on the virtual directory - select properties and then click on "Create" next to the "Application" Label and the textbox. It will automatically create the "application" using the virtual directory's name. Now the application can be accessed. However I don't have access to the IIS GUI. Is there a way to do the same thing by editing the web.config file? 回答1: I'm afraid this isn't possible. Configuring a

Visual Studio 2015 add virtual directory

痞子三分冷 提交于 2019-12-10 18:03:05
问题 I have a web project in VS2015 (using IIS Express) and need to add a virtual directory for files that can be downloaded but are created by another process. I have added an entry to my applicationhost.config file as shown below. Whenever I start my server and go directly to a file at the location I receive a 404 in the IIS Express log. <site name="CustomerPortal" id="2"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="C:\Dev\WebApps

IIS Config file in virtual directory

丶灬走出姿态 提交于 2019-12-10 10:47:01
问题 I have multiple websites that all have the same code, but different app settings. I want to place my app settings in a separate configuration file that is located in a virtual directory. This will allow me to have a single copy of all of the code shared across all of the sites with a different virtual directory for each site. Unfortunately, when I try to configure this, IIS doesn't process the config file when it is in a virtual directory. If you have a solution to this, I would appreciate

MVC bundles and IIS virtual directories (URL rewrite)

馋奶兔 提交于 2019-12-10 03:12:34
问题 I'm hosting multiple applications on IIS server virtual directories and I'm using URL Rewrite to facilitate them. All images and other assets that are manually written like this "~/path/to/my/content" has a correct output "/path/to/my/content" , but bundle paths like "~/client/js" gives an output "/myapplication/client/js" which should be "/client/js" . How can I fix that? How I initiate Script bundle: var scriptBundle = new ScriptBundle("~/client/js"); Rewrite configuration: <rule name=

Configure URL in IIS

谁都会走 提交于 2019-12-08 09:19:37
问题 I have an existing DNN site set up in IIS and I want to link to another ASP.NET application in a separate folder. I want to maintain the same domain URL as follows: http://dnn9.dnndev.me/otherapplication Can anyone point me in the right direction? UPDATE Currently, the main DNN site is set up as its own site in IIS (not under Default Web Site)., with its own App Pool. I tried adding a virtual directory to the main DNN site, pointing to the other application folder. It gives a 404. I added

SELinux Enforcing not honouring httpd_enable_homedirs -> off

ε祈祈猫儿з 提交于 2019-12-08 06:15:38
问题 Why am I able to access http://localhost/~myusername in Fedora20 with SELinux set to Enforcing , if the httpd_enable_homedirs boolean is set to off ? The following is a direct excerpt from the fedoraproject's wiki on SELinux about the httpd_enable_homedirs boolean: httpd by default is not allowed to access users home directories. If you want to allow access to users home directories you need to set the httpd_enable_homedirs boolean and change the context of the files that you want people to

SELinux Enforcing not honouring httpd_enable_homedirs -> off

…衆ロ難τιáo~ 提交于 2019-12-07 23:43:26
Why am I able to access http://localhost/~myusername in Fedora20 with SELinux set to Enforcing , if the httpd_enable_homedirs boolean is set to off ? The following is a direct excerpt from the fedoraproject's wiki on SELinux about the httpd_enable_homedirs boolean: httpd by default is not allowed to access users home directories. If you want to allow access to users home directories you need to set the httpd_enable_homedirs boolean and change the context of the files that you want people to access off the home dir. I have a directory within the /home/user/ directory that I had set up in a

Two websites with single application pool to share resources

久未见 提交于 2019-12-07 22:11:49
问题 Is it possible to have two web application projects (one main website and one running in a virtual directory such as an admin site) share the same application pool to allow the sharing of content in the back end such as static lists, session state etc? 回答1: A quick google search turned up this related question IIS App Pools & Static Classes with the answer that the two web sites will still be in different AppDomains and will not share Static instances. If you need to share data between your

Virtual Directory App within a Asp.net MVC app

廉价感情. 提交于 2019-12-07 14:26:04
问题 I am having issues trying to host screwturn wiki as a virtual directory application within my current domain. the domain is hosted as something.com and the wiki would look like something.com/wiki when i browse to something.com/wiki I get Could not load file or assembly 'System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. Why is the virtual directory falling back to the root application.