RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-07 Thread Andrew Tyrone
My company currently has multiple load balanced web servers. Each time we deploy code, we have to manually FTP it to each server. We'd love to be able to upload (or SVN) code to one location and have an automated process to replicate the code to the other servers. I've used Super

Re: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-07 Thread Mike Kear
The last time i worked on a site with multiple servers, they had a simple scheduled task set up to run every half hour or so. It looks for files in an upload directory, and if it finds anything, copies the files over to the production servers, creating new folders if necessary, then deleting the

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Russ
Andy, We use SVN to deploy to code to a single server, and then we use DFS to automatically propagate the changes. Once you set it up, it doesn't require any intervention, unless it breaks, which happened to me a few times to date. It is, however, very useful in that once you push the code to

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Richard Kroll
My company currently has multiple load balanced web servers. Each time we deploy code, we have to manually FTP it to each server. We'd love to be able to upload (or SVN) code to one location and have an automated process to replicate the code to the other servers. We currently have a similar

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Russ
is on site there as well). Either way, the beauty of DFS is that it auto replicates things without your intervention, unless it breaks. Russ -Original Message- From: Richard Kroll [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 06, 2007 11:23 AM To: CF-Talk Subject: RE: Uploading

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Paul Vernon
You mentioned a program called Robocopy in this post. Can you provide some additional information? Robocopy is in the Windows Resource Kit AFAIK, it's a pretty powerful command line tool that you can script to keep folders in sync. As an example, robocopy C:\source \\server\C$\source

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Paul Vernon
We use SVN to deploy to code to a single server, and then we use DFS to automatically propagate the changes. That of course is the better option if your environment supports it :) Paul ~| Upgrade to Adobe ColdFusion MX7

Re: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Eric Haskins
We use UNC shares in our current enviroment but now we are integrating Linux Apache boxes on the front end so in the interim we have a 1TB File (750Mb Raid 5) Server that does NFS and CIFS shares. We are moving to a Netapps Filer in a bit so we just picked up a SNAP Server to hold us over Eric

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Russ
-Talk Subject: RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough? We use SVN to deploy to code to a single server, and then we use DFS to automatically propagate the changes. That of course is the better option if your environment supports

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Russ
Message- From: Eric Haskins [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 06, 2007 2:49 PM To: CF-Talk Subject: Re: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough? We use UNC shares in our current enviroment but now we are integrating

Re: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-06 Thread Eric Haskins
That SNAP server was the similar solution. Windows boxes can access it as a Mapped Drive or in our case the SNAP server is in the domain so it is a UNC share. The linux boxes access it via NFS so we have one repository for all our files. Now if I can get Serena Mover setup and running it would

RE: Uploading Files with CFFile

2003-06-24 Thread webguy
user has been bounced to a different machine (3 server hardware load balanced environment) No that can't be it. The user will (well should) be on the same machine for the full http request. I think that temporary network failures to your UNC path is more likely. Code something like this is

RE: Uploading files via CFHTTP?

2002-04-30 Thread Dave Watts
Hi everyone! I'm looking at the CFHTTP documentation trying to divine the answer to the following question: Is it possible to use CFHTTP to push a datafile to another website? My app currently stores the user documents (word, excel, etc) on the local server, but we're looking at using a

RE: uploading files

2000-10-06 Thread Warrick, Mark
: http://www.fusioneers.com ICQ: 346566 -- -Original Message- From: Claremont, Timothy S [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 05, 2000 10:44 AM To: CF-Talk Subject: RE: uploading files Does anyone have any

RE: uploading files

2000-10-05 Thread Claremont, Timothy S
Does anyone have any advice for having a random image appear on my web page? I have a collection of about 25 images. I want to randomly choose an imgage from a directory on my site and have that image appear on the home page. If the user hits the refresh button the image should change. One

RE: uploading files

2000-10-05 Thread Eric Dawson
ED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: uploading files Date: Thu, 05 Oct 2000 13:44:11 -0400 Does anyone have any advice for having a random image appear on my web page? I have a collection of about 25 images. I want to randomly choose an imgage from a directory on my site and have that im

Re: uploading files

2000-10-05 Thread Dave Hannum
MAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 1:44 PM Subject: RE: uploading files Does anyone have any advice for having a random image appear on my web page? I have a collection of about 25 images. I want to randomly choose an imgage from a directory on my

Re: uploading files

2000-10-05 Thread tom muck
filename from the list: cfset randomnumber = RandRange(1,ListLen(mylist)) cfset myRandomFilename = ListGetAt(mylist,randomnumber) tom www.basic-drumbeat.com - Original Message - From: "Claremont, Timothy S" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursda

RE: uploading files

2000-10-05 Thread dougn
d also use application variables with timeouts. --Doug -Original Message- From: Claremont, Timothy S [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 05, 2000 10:44 AM To: CF-Talk Subject: RE: uploading files Does anyone have any advice for having a random image appear on my web pag

RE: uploading files

2000-10-04 Thread Giesbrecht, Jeffrey
Sebastian, I set a variable to file.serverfile and the original file name is returned. i.e.: cfset myfile = file.serverfile Regards, Jeff Giesbrecht -Original Message- From: "sebastian palmigiani" [EMAIL PROTECTED] Sent: Wednesday, October 04, 2000 2:05 PM To: [EMAIL

RE: uploading files

2000-10-04 Thread HappyToad.com
I just did this yesterday by using this code for image uploads: cfoutput cfquery name="updatename" datasource="datasource" UPDATE settings SET fieldname='#File.ClientFile#' /cfquery /cfoutput Rich -Original Message- From: sebastian palmigiani

RE: uploading files

2000-10-04 Thread Bob Silverberg
Once you execute the CFFILE tag there are a whole bunch of attributes that you can look at, including: CFFILE.ClientFile - which is the name of the file on the client's machine check the online help for CFFILE to see the complete list of attributes I'm not sure if it's possible to access this