Re: Scope Woes Virtual Directories

2006-01-24 Thread James Holmes
Create a common app name for all your shared application scope variables. In each site's Application.cfm file, use a CFAPPLICATION tag to get the variables from this scope and put them in the request scope. Then use a second CFAPPLICATION tag to swap the application to the unique one for that

Re: Virtual Directories under CF7 Developer

2005-12-08 Thread Wally Randall
mapping and appropriate access. You can have it run as you, but you will see the command prompt window when jrunsvc starts. -Original Message- From: Wally Randall [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 12:56 PM To: CF-Talk Subject: Re: Virtual Directories under CF7

Re: Virtual Directories under CF7 Developer

2005-12-08 Thread Marlon Moyer
To: CF-Talk Subject: Re: Virtual Directories under CF7 Developer Marlon, The virtual mapping seems to work OK for mapping to my local C:\ drive but not to a network mapped drive (ie: P:\PMNS\devwebsite\ ). Is the CF Website restricted to the local machine or do I need to provide a different

RE: Virtual Directories under CF7 Developer

2005-12-08 Thread Russ
] Sent: Thursday, December 08, 2005 7:08 AM To: CF-Talk Subject: Re: Virtual Directories under CF7 Developer I am running on Windows XP Pro. How do I set CF up running as a user as you suggest? Where is some documentation on that? If you have CF running as local system, it will not see your

Virtual Directories under CF7 Developer

2005-12-07 Thread Wally Randall
1. Can I set-up virtual directories to development websites on a server from the CF built-in webserver? I want to map to sites on a server with CM management but cannot figure out how to do this from the built-in server. 2. I know I can do this with IIS but we cannot get permission

Re: Virtual Directories under CF7 Developer

2005-12-07 Thread Marlon Moyer
On 12/7/05, Wally Randall [EMAIL PROTECTED] wrote: 1. Can I set-up virtual directories to development websites on a server from the CF built-in webserver? I want to map to sites on a server with CM management but cannot figure out how to do this from the built-in server. Yes you can

RE: Virtual Directories under CF7 Developer

2005-12-07 Thread Russ
Just use apache and solve both of those problems... -Original Message- From: Wally Randall [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 8:07 AM To: CF-Talk Subject: Virtual Directories under CF7 Developer 1. Can I set-up virtual directories to development websites

Re: Virtual Directories under CF7 Developer

2005-12-07 Thread Wally Randall
Thanks On 12/7/05, Wally Randall [EMAIL PROTECTED] wrote: 1. Can I set-up virtual directories to development websites on a server from the CF built-in webserver? I want to map to sites on a server with CM management but cannot figure out how to do this from the built-in server

Re: Virtual Directories under CF7 Developer

2005-12-07 Thread Wally Randall
PROTECTED] wrote: 1. Can I set-up virtual directories to development websites on a server from the CF built-in webserver? I want to map to sites on a server with CM management but cannot figure out how to do this from the built-in server. Yes you can. You'll need to edit your jrun

RE: Virtual Directories under CF7 Developer

2005-12-07 Thread Russ
. -Original Message- From: Wally Randall [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 12:56 PM To: CF-Talk Subject: Re: Virtual Directories under CF7 Developer Marlon, The virtual mapping seems to work OK for mapping to my local C:\ drive but not to a network mapped drive (ie

Application Scope in Virtual Directories (IIS)

2005-04-21 Thread jonese
Any one know of a way to have application scoped variables availabe to code in a virtual directory? Our system is setup like so: d:\usr\clientFolder d:\usr\GlobalFolder virtual folder in clients IIS setup mapped folder in CF We want to store some CFC's in the global folder but there is

RE: Application Scope in Virtual Directories (IIS)

2005-04-21 Thread Gaulin, Mark
: jonese [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 3:27 PM To: CF-Talk Subject: Application Scope in Virtual Directories (IIS) Any one know of a way to have application scoped variables availabe to code in a virtual directory? Our system is setup like so: d:\usr\clientFolder d:\usr

Application.cfm and Virtual Directories

2005-03-09 Thread Ian Skinner
Is there information on how an Application.cfm file behaves with virtual directories? If one has a IIS virtual directory bar defined for a website foo, then it is accessed something like this http://foo/bar/myTemplate.cfm;. Should or should not an Application.cfm in the root directory of foo

RE: Application.cfm and Virtual Directories

2005-03-09 Thread Katz, Dov B \(IT\)
I'm pretty sure application.cfm propagation is only with physical directories... Not iis virtual ones... -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 12:08 PM To: CF-Talk Subject: Application.cfm and Virtual Directories

RE: Application.cfm and Virtual Directories

2005-03-09 Thread Dave Watts
Is there information on how an Application.cfm file behaves with virtual directories? If one has a IIS virtual directory bar defined for a website foo, then it is accessed something like this http://foo/bar/myTemplate.cfm;. Should or should not an Application.cfm in the root directory

Re: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Kwang Suh
11:35 AM To: CF-Talk Subject: Re: Virtual Directories for Websites...follow-up remarks You can also use different port numbers. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
Suh [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 10:44 AM To: CF-Talk Subject: Re: Virtual Directories for Websites...follow-up remarks You mean a different port number for each site under development? e.g http://66.79.46.138:85/DevelopmentSite/Index.cfm ? No, it would look

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Dave Watts
So, using ports like that would mean there would be no root directory for the websites? i.e., the port would act as the root for the site? I'm not sure I understand the actual directory structure for http://66.79.46.138:85/Index.cfm... No, you would still need to have separate virtual hosts

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
of port 80, port 85 would be specified for the site? And port 85 would have to be opened in the router, too? Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 12:26 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Dave Watts
So, when referencing the virtual server, I'd just use a URL like http://66.79.46.138:85/Index.cfm because it would take the visitor directly inside the root directory? Am I understanding that correctly? Yes. And I guess the key difference is in the properties for the virtual directory,

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Kevin Roche
One thing that makes life interesting in this case is that the CF root and the Web root will be different. Kevin -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 18 February 2005 17:26 To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks So

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
Thanks, Dave... Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 12:41 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks So, when referencing the virtual server, I'd just use a URL like http

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
: Friday, February 18, 2005 12:33 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks One thing that makes life interesting in this case is that the CF root and the Web root will be different. Kevin -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Dave Watts
One thing that makes life interesting in this case is that the CF root and the Web root will be different. This is the case whenever you have more than one virtual web server using a single CF server instance, though. To avoid any problems, just don't use the root CF mapping (/) within your

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
Dave... Does the mapping issue become a problem only when the alternate port is used as a solution? Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 1:42 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks

Re: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Douglas Knudsen
- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 12:26 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks So, using ports like that would mean there would be no root directory for the websites? i.e., the port would act as the root

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Rick Faircloth
Thanks for the info, Doug... Rick -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 1:49 PM To: CF-Talk Subject: Re: Virtual Directories for Websites...follow-up remarks yes, but in IIS these are called sites. So, for example you have

RE: Virtual Directories for Websites...follow-up remarks

2005-02-18 Thread Dave Watts
Does the mapping issue become a problem only when the alternate port is used as a solution? No, it's an issue whenever you have more than one virtual web server using a single CF server instance. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
Ok...I see that Virtual Directories work just like I thought they should for websites that have domains pointing to the server already. However, I usually show my clients their websites as they're being developed by using a direct URL, such as http://66.xx.xx.138/cfdocs/website/index.cfm

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
Ok...I've answered my own question with more experimentation... If I used an established site, then I can created virtual directories for development and point clients to http://www.development.com/clientsite/index.cfm Rick -Original Message- From: Rick Faircloth [mailto:[EMAIL

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Calvin Ward
: Thursday, February 17, 2005 12:07 PM To: CF-Talk Subject: Virtual Directories for Websites...follow-up remarks Ok...I see that Virtual Directories work just like I thought they should for websites that have domains pointing to the server already. However, I usually show my clients their websites

Re: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Kwang Suh
You can also use different port numbers. Ok...I've answered my own question with more experimentation... If I used an established site, then I can created virtual directories for development and point clients to http://www.development.com/clientsite/index.cfm Rick -Original Message

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 12:07 PM To: CF-Talk Subject: Virtual Directories for Websites...follow-up remarks Ok...I see that Virtual Directories work just like I thought they should for websites that have domains pointing to the server already

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
You mean a different port number for each site under development? e.g http://66.79.46.138:85/DevelopmentSite/Index.cfm ? Rick -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 11:35 AM To: CF-Talk Subject: Re: Virtual Directories

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Calvin Ward
significant. - Calvin -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 12:40 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks Is there any particular reason for removing the cfdocs directory? Space? Any

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
So...do I just move the folder to some other location? Any functional implications for doing that? Rick -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 12:50 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Jacob
Agree. If you need cfdocs, keep it on a development server. Use IP restrictions, IIS auth, etc... -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 9:24 AM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks I'd

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Calvin Ward
: Virtual Directories for Websites...follow-up remarks So...do I just move the folder to some other location? Any functional implications for doing that? Rick -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 12:50 PM To: CF-Talk Subject: RE

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Kevin Graeme
-Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 11:07 AM To: CF-Talk Subject: Virtual Directories for Websites...follow-up remarks Ok...I see that Virtual Directories work just like I thought they should for websites that have domains pointing

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
Good idea, Calvin... Thanks, Rick -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 1:13 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks Cfide is a bit more tricky because it is required to administer your

RE: Virtual Directories for Websites...follow-up remarks

2005-02-17 Thread Rick Faircloth
Good idea...thanks Kevin... Rick -Original Message- From: Kevin Graeme [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 1:54 PM To: CF-Talk Subject: RE: Virtual Directories for Websites...follow-up remarks Rick, Something you may want to consider is to have three instances

Re: CFCs and virtual directories.

2005-01-25 Thread Douglas Knudsen
virtual directories respond to HTTP calls, in other words calls to IIS. Mappings are used by CF only. If you want a CF mapping to be available via HTTP, you have to create a virtual dir. Doug On Tue, 25 Jan 2005 11:57:14 -0500, DURETTE, STEVEN J (AIT) [EMAIL PROTECTED] wrote: Ok, I did some

RE: CFCs and virtual directories.

2005-01-25 Thread DURETTE, STEVEN J \(AIT\)
, please let me know. Steve -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 1:42 PM To: CF-Talk Subject: Re: CFCs and virtual directories. virtual directories respond to HTTP calls, in other words calls to IIS. Mappings are used

RE: CFCs and virtual directories.

2005-01-25 Thread Ben Rogers
Duplicating the mapping should work. ColdFusion does not honor IIS virtual directories. You may be more used to ASP, in which virtual directory and mapping are synonymous. To further complicate things, you may have to duplicate the mapping in the JRun config files as well. I've found

RE: CFCs and virtual directories.

2005-01-25 Thread DURETTE, STEVEN J \(AIT\)
-Original Message- From: Ben Rogers [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 4:21 PM To: CF-Talk Subject: RE: CFCs and virtual directories. Duplicating the mapping should work. ColdFusion does not honor IIS virtual directories. You may be more used to ASP, in which virtual

Re: CFCs and virtual directories.

2005-01-25 Thread Dwayne Cole
OK. So let's say i have a mapping in cf administrator called /siteModel. I should be be able to invoke a cfc by either cfinvoke component=siteModel.myCFC method=... or createObject(component,siteModel.myCFC) ? Dwayne -- Original Message -- From:

Re: CFCs and virtual directories.

2005-01-25 Thread Dwayne Cole
I read this on livedocs.macromedia.com If you invoke a CFC method remotely, using a specific URL, form field, Flash Remoting MX, or a web service invocation, ColdFusion looks in the specified path relative to the web root. For form fields and URLs specified directly on local web pages,

Re: CFCs and virtual directories.

2005-01-25 Thread John Beynon
yes that will work...of course, if you had a folder named siteModel off the webroot it would work too, provided your '/' cfmapping goes to the web root jb. OK. So let's say i have a mapping in cf administrator called /siteModel. I should be be able to invoke a cfc by either cfinvoke

RE: CFCs and virtual directories.

2005-01-25 Thread DURETTE, STEVEN J \(AIT\)
in ColdFusion. Which would win out. Would it still work. Later, Steve -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 6:55 AM To: CF-Talk Subject: Re: CFCs and virtual directories. yes that will work...of course, if you had a folder named siteModel

RE: CFCs and virtual directories.

2005-01-24 Thread Dwayne Cole
, Steve -Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: Monday, January 24, 2005 1:42 PM To: CF-Talk Subject: Re: CFCs and virtual directories. It'll be available to everything on the server if it's at C:\CFusionMX\CustomTags (or equivalent) If you

Re: CFCs and virtual directories.

2005-01-24 Thread Jared Rypka-Hauer - CMG, LLC
CFCs can be accessed in a few ways... Via the standard CF custom tag directory, a custom-custom tag directory, or in the immediate folder of the calling template: createObject(component,myCFC) Or in a folder below any of the above: createObject(component,folder.from.current.location.myCFC)

CFCs and virtual directories.

2005-01-24 Thread DURETTE, STEVEN J \(AIT\)
Hi all, Got a quick question for you. I have created a cfc that I want available to all urls on our web server (this is on an intranet). So, I created a directory outside of the webroots and put the cfc there. Then I went into IIS and created virtual directories on each of the websites

RE: CFCs and virtual directories.

2005-01-24 Thread Cynthia Reece
Try creating a coldfusion mapping from your cf administrator. -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: Monday, January 24, 2005 1:20 PM To: CF-Talk Subject: CFCs and virtual directories. Hi all, Got a quick question for you. I have created

Re: CFCs and virtual directories.

2005-01-24 Thread jonese
urls on our web server (this is on an intranet). So, I created a directory outside of the webroots and put the cfc there. Then I went into IIS and created virtual directories on each of the websites that points to that directory. Problem is it doesn't work. If I delete the virtual directory

Re: CFCs and virtual directories.

2005-01-24 Thread Jared Rypka-Hauer - CMG, LLC
PROTECTED] wrote: Hi all, Got a quick question for you. I have created a cfc that I want available to all urls on our web server (this is on an intranet). So, I created a directory outside of the webroots and put the cfc there. Then I went into IIS and created virtual directories on each

RE: CFCs and virtual directories.

2005-01-24 Thread DURETTE, STEVEN J \(AIT\)
- CMG, LLC [mailto:[EMAIL PROTECTED] Sent: Monday, January 24, 2005 1:42 PM To: CF-Talk Subject: Re: CFCs and virtual directories. It'll be available to everything on the server if it's at C:\CFusionMX\CustomTags (or equivalent) If you want to instantiate, just use createObject(component,cfcName

Re: CFCs and virtual directories.

2005-01-24 Thread Jared Rypka-Hauer - CMG, LLC
Not if you have \CFCDir off the custom tag folder with menu.cfc inside it. And a CFC directly in the custom tag folder could be invoked directly, without any prefix or dots at all. And yeah... I mean... roughly speaking URL = .cfm file, and if an app contains many CFM files, then app = URL(s),

CF and Virtual Directories.

2004-04-15 Thread Che Vilnonis
I have 100 different clients that I would like to send printed marketing material to. What I would like to do is 'personalize' the printed piece for them. The printed piece would send them to a link on my website such as... http://www.xyz.com/Company-A http://www.xyz.com/Company-B

RE: CF and Virtual Directories.

2004-04-15 Thread d.a.collie
point your 404 handler at a custom CF template that processes the below... -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: 15 April 2004 14:20 To: CF-Talk Subject: CF and Virtual Directories. I have 100 different clients that I would like to send printed marketing

RE: CF and Virtual Directories.

2004-04-15 Thread d.a.collie
yikes... should read the post first some shared server spaces allow you to define a custom 404, my ASP one does anyway -Original Message- From: David Collie (itndac) Sent: 15 April 2004 14:38 To: CF-Talk Subject: RE: CF and Virtual Directories. point your 404 handler at a custom CF

OT: IIS virtual directories

2003-08-01 Thread Robert Orlini
With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o any problems to our website? I don't do any administration of the site except directly on the machine. Also, can I delete the Admin Web Site? What is it used or? Thanks. Robert O

RE: IIS virtual directories

2003-08-01 Thread Douglas.Knudsen
ugh...this would be part of best practices...along with removing most of the script mappings too. YMMV though Doug -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:40 AM To: CF-Talk Subject: OT: IIS virtual directories With IIS 5.0

RE: IIS virtual directories

2003-08-01 Thread Aidan Whitehall
With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o any problems to our website? I don't do any administration of the site except directly on the machine. Also, can I delete the Admin Web Site? What is it used or? Run the IIS Lockdown utility first

Re: OT: IIS virtual directories

2003-08-01 Thread Jochem van Dieten
Robert Orlini wrote: With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o any problems to our website? I don't do any administration of the site except directly on the machine. http://www.nsa.gov/snac/index.html guide number 14 (but reading and implementing

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-18 Thread webguy
: Virtual directories and UNC paths not working on CFMX? MX is running under a user acct w/access to the UNC dir. Nothing has changed except a simple upgrade to CFMX. You might want to test this by logging in as this user from the server console. Dave Watts, CTO, Fig Leaf Software http

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-18 Thread Bill Grover
WWW:http://www.euservices.com __ -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 3:13 PM To: CF-Talk Subject: RE: Virtual directories and UNC paths not working on CFMX? MX

Virtual directories and UNC paths not working on CFMX?

2003-07-17 Thread Bosky, Dave
Is there any way for CFMX to access network shares using UNC paths? CF5 worked fine but since upgrading to CFMX the UNC paths no longer function. Thanks, Dave HTC Disclaimer: The information contained in this message may be privileged and confidential and protected from disclosure. If the

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-17 Thread Mike Townend
How is MX running ? As a System Service or a Service under a User Account that has access to the UNC Dir ? -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 19:39 To: CF-Talk Subject: Virtual directories and UNC paths not working on CFMX

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-17 Thread Bosky, Dave
MX is running under a user acct w/access to the UNC dir. Nothing has changed except a simple upgrade to CFMX. -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 2:43 PM To: CF-Talk Subject: RE: Virtual directories and UNC paths not working

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-17 Thread Dave Watts
Is there any way for CFMX to access network shares using UNC paths? CF5 worked fine but since upgrading to CFMX the UNC paths no longer function. By default, neither UNC paths or drive letters mapped to shares would work with any version of CF. By default, the CF service runs within the

RE: Virtual directories and UNC paths not working on CFMX?

2003-07-17 Thread Dave Watts
MX is running under a user acct w/access to the UNC dir. Nothing has changed except a simple upgrade to CFMX. You might want to test this by logging in as this user from the server console. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Case-sensitivity bug (?) with .jsp, IIS and virtual directories

2003-06-03 Thread Aidan Whitehall
This is a follow-up to an e-mail posted a couple of weeks ago to CFDeveloper. I thought I'd found a bug when trying to view .jsp files using ColdFusion MX, but suspect it may be more of a side effect of Java being case sensitive. Has anyone seen a Translator.WrongCase error when they've created a

Application.cfm and Virtual Directories

2002-09-09 Thread Matt Kornguth
Have a virtual directory (named abc for example) that is included in several different sites, each site having its own application.cfm setting a variable called site_name: foo.blah.com (site_name is foo) bar.blah.com (site_name is bar) The virtual diretory is included in both sites. Then

CFMX Stand-alone virtual directories

2002-08-22 Thread todd
I just wanted to confirm with someone else because I don't run CFMX Stand-alone. I've done some looking around and I don't think it's possible to setup virtual directories in the default-web.xml file, is this correct? Can someone confirm this for me? I have looked online at the live docs

RE: CFMX Stand-alone virtual directories

2002-08-22 Thread Dave Watts
I just wanted to confirm with someone else because I don't run CFMX Stand-alone. I've done some looking around and I don't think it's possible to setup virtual directories in the default-web.xml file, is this correct? Can someone confirm this for me? I have looked online at the live

Nevermind - CFMX Stand-alone virtual directories (Solved)

2002-08-22 Thread todd
directories I just wanted to confirm with someone else because I don't run CFMX Stand-alone. I've done some looking around and I don't think it's possible to setup virtual directories in the default-web.xml file, is this correct? Can someone confirm this for me? I have looked online

Re: CFMX Stand-alone virtual directories

2002-08-22 Thread mark brinkworth
wanted to confirm with someone else because I don't run CFMX Stand-alone. I've done some looking around and I don't think it's possible to setup virtual directories in the default-web.xml file, is this correct? Can someone confirm this for me? I have looked online at the live docs, but I don't see

RE: Virtual Directories

2002-06-13 Thread Dave Watts
From my understanding of that article, the auto disconnect timeout is controlled by the server, is that right? Yes, that's correct. If that is the case I don't think it will help in this particular situation. The Snap servers are running some sort of Linux based NTLM emulation software

Virtual Directories

2002-06-12 Thread Kevin Schmidt
We have a IIS virtual directory to a SNAP server and it seems that it gets dropped about every 60 seconds, and ColdFusion has to wake it up. Basically we store images on this server and call them from the web server. First time around if the connection is severed we get broken images, hit

RE: Virtual Directories

2002-06-12 Thread Rob Baxter
5:01 PM To: CF-Talk Subject: Virtual Directories We have a IIS virtual directory to a SNAP server and it seems that it gets dropped about every 60 seconds, and ColdFusion has to wake it up. Basically we store images on this server and call them from the web server. First time around

RE: Virtual Directories

2002-06-12 Thread Rob Baxter
and as such are not true NT fileservers. /rob -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 5:42 PM To: CF-Talk Subject: RE: Virtual Directories We have a IIS virtual directory to a SNAP server and it seems that it gets dropped about every

Creating Virtual Directories using CF

2002-04-08 Thread Mike Connolly
Fellow CFers, Has anyone ever tried to connect to IIS using CFObject in order to create a low-pooled virtual directory? If so, how? Regards Mike Connolly __ Signup for the Fusion Authority news alert and keep up with the

RE: Creating Virtual Directories using CF

2002-04-08 Thread Dave Watts
can have it use the same application as the site in which it's created. In any case, you can certainly create virtual directories from CF, although I wouldn't use CFOBJECT to do all the work. You might take a look at some of the sample admin scripts that come with IIS (by default, they're in c

RE: Creating Virtual Directories using CF

2002-04-08 Thread Mario Martinez R.
rather than a regular virtual directory. Typically, when you create a virtual directory, you can have it use the same application as the site in which it's created. In any case, you can certainly create virtual directories from CF, although I wouldn't use CFOBJECT to do all the work. You

RE: Creating Virtual Directories using CF

2002-04-08 Thread Dave Watts
what is a virtual application ??? In IIS, when you create a virtual directory, you can specify that any ISAPI extensions referenced by that directory are run as a separate process, rather than as part of the same process as that used by ISAPI extensions in the parent web site. For CF, I've

CF IIS Virtual Directories

2002-03-12 Thread Bosky, Dave
I created a virtual directory that connects to share on another machine. When I try to view some files in the virtual directory using a browser it won't display cf files, it only shows html files. Any ideas what might be the cause? Thanks, Dave

RE: CF IIS Virtual Directories

2002-03-12 Thread Brunt, Michael
that worked just fine. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:58 AM To: CF-Talk Subject: CF IIS Virtual Directories I created a virtual directory that connects to share on another machine. When I try to view some files

RE: CF IIS Virtual Directories

2002-03-12 Thread Bosky, Dave
Yep its in there... Dave -Original Message- From: Brunt, Michael [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1:04 PM To: CF-Talk Subject: RE: CF IIS Virtual Directories Check the documents setting in IIS for that virtual directory and make sure you have at least index.cfm

RE: CF IIS Virtual Directories

2002-03-12 Thread Garza, Jeff
AM To: CF-Talk Subject: CF IIS Virtual Directories I created a virtual directory that connects to share on another machine. When I try to view some files in the virtual directory using a browser it won't display cf files, it only shows html files. Any ideas what might be the cause? Thanks

RE: CF IIS Virtual Directories

2002-03-12 Thread Bosky, Dave
404 Object not found. Dave -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1:12 PM To: CF-Talk Subject: RE: CF IIS Virtual Directories What error message do you get when trying to view the .cfm files? Jeff Garza Lead Developer/Webmaster

RE: CF IIS Virtual Directories

2002-03-12 Thread Bryan Love
-Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 10:12 AM To: CF-Talk Subject: RE: CF IIS Virtual Directories What error message do you get when trying to view the .cfm files? Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200

RE: CF IIS Virtual Directories

2002-03-12 Thread Bosky, Dave
That did the trick! Thanks Bryan.. Dave -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1:19 PM To: CF-Talk Subject: RE: CF IIS Virtual Directories The account that Cold Fusion runs under does not have permission to access the share

RE: ColdFusion, IIS and Virtual Directories

2002-03-03 Thread Dave Watts
I recently started administering a ColdFusion Server with Windows 2000 Advanced Server using IIS to deliver webpages, after being primarily a developer for the past couple of years I am having a real problem working with virtual directories due to IIS and Windows 2000 security features

ColdFusion, IIS and Virtual Directories

2002-03-02 Thread John Kivus
I recently started administering a ColdFusion Server with Windows 2000 Advanced Server using IIS to deliver webpages, after being primarily a developer for the past couple of years I am having a real problem working with virtual directories due to IIS and Windows 2000 security features working so

Re: ColdFusion, IIS and Virtual Directories

2002-03-02 Thread Jim McAtee
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 02, 2002 8:57 PM Subject: ColdFusion, IIS and Virtual Directories I recently started administering a ColdFusion Server with Windows 2000 Advanced Server using IIS to deliver webpages, after being primarily a developer for the past

CFINCLUDE and virtual directories

2002-02-26 Thread David Grabbe
I need to be able to CFINCLUDE files from a directory on a different website (same server though). In IIS I have set up a virtual mapping so the directory in question is available to both websites -- as a real directory in the first website (domain1) and a virtual directory in the second

Re:CFINCLUDE and virtual directories

2002-02-26 Thread C . Hatton Humphrey
I would think it would be easier to use CFHTTP and get the information from the page as opposed to using cfinclue. Hatton David Grabbe [EMAIL PROTECTED] wrote on 2/26/2002 1:48:19 PM: I need to be able to CFINCLUDE files from a directory on a different website (same server though). In IIS

RE: CFINCLUDE and virtual directories

2002-02-26 Thread Dave Watts
I need to be able to CFINCLUDE files from a directory on a different website (same server though). In IIS I have set up a virtual mapping so the directory in question is available to both websites -- as a real directory in the first website (domain1) and a virtual directory in the

Re: CFINCLUDE and virtual directories

2002-02-26 Thread Dave Hannum
-Talk [EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 1:48 PM Subject: CFINCLUDE and virtual directories I need to be able to CFINCLUDE files from a directory on a different webs ite (same server though). In IIS I have set up a virtual mapping so the directory in question is available to both

RE: CFINCLUDE and virtual directories

2002-02-26 Thread Bryan Love
26, 2002 11:02 AM To: CF-Talk Subject: RE: CFINCLUDE and virtual directories I need to be able to CFINCLUDE files from a directory on a different website (same server though). In IIS I have set up a virtual mapping so the directory in question is available to both websites -- as a real

<    1   2   3   >