virtual-directory

ASP.NET Virtual Directory For Common Markup

I have a few applications that need to share a common set of markup. Scenario: I might have www.site1.com, www.site2.com, and www.site3.com. On all sites, /care/contact-us.aspx and /care/faqs.aspx will be exactly the same, but every other page will be totally different. Issue: I'm attempting to not duplicate the .aspx files for eac...

Weird behavior regarding IIS virtual directory names

Hello, I'm new to using Microsoft IIS 6.0 and I'm encountering this weird behavior regarding virtual directory names. I once created a virtual directory with the following details: Alias: Y2YY Application name: Y2YY Execute permissions: Scripts and Executables Local path: D:\Y2YY\content With D:\Y2YY\content containing a valid html fi...

Single Sign On for Web Application and Application in Virtual Directory

To enable single sign-on for a web application and a web application in a virtual directory, I set the machinekey in both apps to the same: <machineKey validationKey="xxx" decryptionKey="yy" validation="SHA1" /> The single sign on works just fine, but existing users can't sign in any more; their passwords are rejected. The machinekey ...

Detect mapped virtual directories from an ihttpmodule in a c# .net application

I have a .net website which contains an IHttpModule I wrote to do certain tasks (authorisation etc). But within the website there are a number of virtual directories that are mapped to third party applications which unfortunately I can't change or move (e.g. community server forums, adxstudio cms and others). I am looking for a way to p...

IIS Default Web Site locking down virtual directories

I have a Web Site in IIS 6.0 that hosts several virtual directories. Some of the virtual directories in the Web Site need to be served out to the internet, so there is a public DNS entry for the Web Site as a whole. Other virutal directories should not be served to the internet, but they get exposed by default through the public DNS ho...

why it is still necessary to create virtual directory in IIS when website content is placed in IIS root directory

As virutal directory points to physical path of the application, so if the IIS root directory is C:\inetpub\wwwroot and the application is stored at D:\websites, than we need to create a virtual directory but if the application content is placed at C:\inetpub\wwwroot, then why still need to create virtual directory. ...

Apache virtual directory without redirect

What I'm trying to accomplish is pulling content from a directory that is not the same as the url path. For example: URL: example.com/ path: /www/production/ Currently, the root url pulls content from the path above. What I want to do is something like this: URL: example.com/ path: /www/production/root/ So the base URL "example...

Virtual directories not showing up in VS 2005

How come when I create an IIS based website, any virtual directories created under the main app show up in VS2005 but if I create a file-system based website, then use IIS to configure a virtual directory and use it to run the app, the sub-virtual directories do not show up in VS2005 ? Thanks in advance. -SK ...

IIS Virtual Folder URL encryption

We have a c# asp.net web application that, amongst other things, allows users to download previously uploaded files such as PDF's, Word docs etc. The asp.net app is served up via an IIS6 server and the file resources live on a different server. When the user requests a file (i.e. click a button on the web form), we stream the file back ...

How to configure apache (ubuntu) such that www.mysite.com will direct to www.mysite.com/drupal6/ ?

Dear All, I am a newbie to ubuntu and apache. Can someone tell me how I could direct to www.mysite.com/drupal6 when user address www.mysite.com? Thanks a lot. Cheers. ...

Virtual Directory App within a Asp.net MVC app

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, Public...

How do I set up for sharing code (ASP.NET) across multiple domain names?

I have built a website and now the customer wants to split it between three different domains. What is the best way to do this? This is what I have so far. c:/website1/ points to www.website1.com c:/website1/vd1/ points to www.website2.com c:/website1/vd2/ points to www.website3.com The webhost I'm working with has done it the fo...

one site or many?

I have about 10-12 websites (main site is classic ASP, others are ASP.NET 2). Each site has his own virtual directory. They are related to each other, mainly from main site other sites are calling to perform some service. Each site has from 2 to 5 pages. Does it make sense to unite them and create one bigger site with one virtual directo...

What is the simplest way to map a folder on the file system to a url in Tomcat?

Here's my problem... I have a small prototype app (happens to be in Grails hosted on AWS) and I want to add the ability of the user to upload a few (max 10) images. I want to persist these images on disk on the server machine, in a folder location which is outside my WAR. I realise that there is probably a super-scalable solution invo...

Forms authentication ignored in virtual application

I have an admin site set up as a virtual applcation inside of another website. I would like visitors to the sub directory (the virtual application) to be promtped for credentials using the same Forms authentication set up on the main parent site Have tried all sorts of things but can't get it to work, including Removing all <authentic...

Create Virtual Directory and Set Permissions IIS7 - Cannot read configuration file due to insufficient permissions

I am trying to create a virtual directory and set it's permissions using IIS7 and C#. Here is a sample of my code: using (ServerManager serverManager = new ServerManager(webSite)) { ConfigurationSection anonymousAuthenticationSection = config.GetSection( @"system.webServer/security/authentication/anonymousAuthenticat...

how to set ASP.NET version for virtual directory using .net

how to set ASP.NET version for virtual directory using c#.net FROM CODE for all iis version? ...

How to Properly Reference a JavaScript File in an ASP.NET Project?

Hi Guys I have some pages that reference javascript files. The application exists locally in a Virtual Directory, i.e. http://localhost/MyVirtualDirectory/MyPage.aspx so locally I reference the files as follows: <script src="/MyVirtualDirectory/Scripts/MyScript.js" type="text/javascript"></script> The production setup is different ...

virtual directory asp redirector for php app necessary ?

I created a virtual directory for my php app. Now I get the "Directory Listing Denied This Virtual Directory does not allow contents to be listed." Do I need to make some kind of dummy index.asp file that redirects (OR PREFERRED: just displays index.php) or how to solve this? I have restricted access to webserver, but index.php is set...

getting base url of web site's root (absolute/relative url)

I want to completely understand how to use relative and absolute url address in static and dynamic files. ~ : / : .. : in a relative URL indicates the parent directory . : refers to the current directory / : always replaces the entire pathname of the base URL // : always replaces everything from the hostname onwards This example ...