Re: drive mapping for CF to use

2005-02-16 Thread George Abraham
hink that about covers it, right? > > - Calvin > > -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 15, 2005 4:31 PM > To: CF-Talk > Subject: RE: drive mapping for CF to use > > > I tried googling for this, but had n

RE: drive mapping for CF to use

2005-02-16 Thread Calvin Ward
:31 PM To: CF-Talk Subject: RE: drive mapping for CF to use > I tried googling for this, but had not success. Sorry about > my lack of awareness of networking. How does one use the UNC > path in say cfdirectory and specify credentials for the share? Well, you can't specify cr

RE: drive mapping for CF to use

2005-02-15 Thread Dave Watts
> I tried googling for this, but had not success. Sorry about > my lack of awareness of networking. How does one use the UNC > path in say cfdirectory and specify credentials for the share? Well, you can't specify credentials with CFDIRECTORY. However, if CF is running as a user with the appropr

Re: drive mapping for CF to use

2005-02-15 Thread George Abraham
I tried googling for this, but had not success. Sorry about my lack of awareness of networking. How does one use the UNC path in say cfdirectory and specify credentials for the share? George On Tue, 15 Feb 2005 15:12:16 -0500, Dave Watts <[EMAIL PROTECTED]> wrote: > > So then if there are multip

RE: drive mapping for CF to use

2005-02-15 Thread Burns, John D
, February 15, 2005 2:58 PM To: CF-Talk Subject: Re: drive mapping for CF to use Hmm, So then if there are multiple mapped network drives (hence with multiple credentials), you have to have a startup script that runs and maps all these drives. I guess this is part of a bigger problem when you are working

RE: drive mapping for CF to use

2005-02-15 Thread Dave Watts
> So then if there are multiple mapped network drives (hence > with multiple credentials), you have to have a startup script > that runs and maps all these drives. > > I guess this is part of a bigger problem when you are working > with distributed storage of media and you have one > applicati

RE: drive mapping for CF to use

2005-02-15 Thread Dave Watts
> Would this drive-mapping technique do anything like what > WebDrive (WebDrive.com) does? No. Regular mapped drives in Windows use drive letters to point to SMB/CIFS shares, and typically you wouldn't open SMB traffic to public networks. > I've been looking for a way to have an FTP network driv

Re: drive mapping for CF to use

2005-02-15 Thread George Abraham
Hmm, So then if there are multiple mapped network drives (hence with multiple credentials), you have to have a startup script that runs and maps all these drives. I guess this is part of a bigger problem when you are working with distributed storage of media and you have one application trying to

RE: drive mapping for CF to use

2005-02-15 Thread Rick Faircloth
n far with that either... Thanks, Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 2:41 PM To: CF-Talk Subject: RE: drive mapping for CF to use > Will this persistence happen even if newUserAccount on the CF > server needs a use

RE: drive mapping for CF to use

2005-02-15 Thread Dave Watts
> Will this persistence happen even if newUserAccount on the CF > server needs a username and password to map the network > drive? This username and password are different from the > username and password of newUserAccount. No, it won't work if you're using different credentials than those of t

Re: drive mapping for CF to use

2005-02-15 Thread George Abraham
Will this persistence happen even if newUserAccount on the CF server needs a username and password to map the network drive? This username and password are different from the username and password of newUserAccount. George On Tue, 15 Feb 2005 14:08:26 -0500, Dave Watts <[EMAIL PROTECTED]> wrote:

Re: drive mapping for CF to use

2005-02-15 Thread George Abraham
Whoops forgot to mention that before step 5 you have to change the logon properties of the CF Application server in the Services console to logon as newUserAccount. Then reboot the server. George On Tue, 15 Feb 2005 13:55:39 -0500, George Abraham <[EMAIL PROTECTED]> wrote: > The follow-up to thi

RE: drive mapping for CF to use

2005-02-15 Thread Dave Watts
> The follow-up to this. Most or all of this solution was > derived from posts on this list and Macromedia's Knowledge > Base at http://tinyurl.com/6xf62. > > 1. Make a new user account. Call it newUserAccount (or whatever). > 2. Refer to the url above for the steps in assigning access > rights

Re: drive mapping for CF to use

2005-02-15 Thread George Abraham
The follow-up to this. Most or all of this solution was derived from posts on this list and Macromedia's Knowledge Base at http://tinyurl.com/6xf62. 1. Make a new user account. Call it newUserAccount (or whatever). 2. Refer to the url above for the steps in assigning access rights to all the direc

RE: drive mapping for CF to use

2005-02-11 Thread Dave Watts
> As a side note, I don't believe will read UNC file paths. Yes, it will, in my experience. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Balti

Re: drive mapping for CF to use

2005-02-11 Thread Jehiah Czebotar
If the UNC path doesn't work out, you can create a system level mounted drive (as opposed to a user level mounted drive and setting coldfusion to run as a specific user) and set your web root there or use cffile to pull files from it. This will work because coldfusion naturally runs at the 'system'

RE: drive mapping for CF to use

2005-02-11 Thread Dave Watts
> Thanks for the suggestions. The use of UNC appears to be the > way I would want to do it. What happens when the shared > folder on the other server is locked down with a username and > password? Are there any switches I could use with the UNC path? > > For example, I do a cfdirectory with the

RE: drive mapping for CF to use

2005-02-11 Thread Justin D. Scott
> I would recommend using a UDF path in the code > and running CF as a user that has access to it > instead of using a mapped drive letter. Doh, as others have said, it's UNC not UDF. I've got functions on the brain today. -Justin ~~~

Re: drive mapping for CF to use

2005-02-11 Thread George Abraham
Thanks for the suggestions. The use of UNC appears to be the way I would want to do it. What happens when the shared folder on the other server is locked down with a username and password? Are there any switches I could use with the UNC path? For example, I do a cfdirectory with the (supposedly) m

RE: drive mapping for CF to use

2005-02-11 Thread Dave Watts
> CF 5 (sigh!!) on a Win 2003 Server box with IIS. The web > application needs to access a drive that has to be mapped > through the network from a different server using its IP > address. Now mapping a drive is easy enough using say 'net > use' or even doing it via the Windows 'Map Network dri

RE: drive mapping for CF to use

2005-02-11 Thread Stefan
Why do you use a drive mapping? Can you not use the \\IPADDRES\sharename notation? -Original Message- From: George Abraham [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 15:02 To: CF-Talk Subject: drive mapping for CF to use Hi all, CF 5 (sigh!!) on a Win 2003 Server box with

RE: drive mapping for CF to use

2005-02-11 Thread Justin D. Scott
> CF 5 (sigh!!) on a Win 2003 Server box with IIS. The > web application needs to access a drive that has to > be mapped through the network from a different server > using its IP address. I would recommend using a UDF path in the code and running CF as a user that has access to it instead of usin

RE: drive mapping for CF to use

2005-02-11 Thread Ian Skinner
Give the CF service through the services control panal a specific user account that has access to the desired mapped drive ours has it own user account just for this reason. We do this on our network to allow us to use CF templates to read directories on other network resources. --

Re: drive mapping for CF to use

2005-02-11 Thread Howie Hamlin
Don't use a mapped drive - use a UNC path instead. For example: instead of x:\inetpub\wwwroot use \\server\sharename\inetpub\wwwroot HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent