Re: IIS 8.5 truncating file download

2014-11-10 Thread Russ Michaels
Try setting the maxAllowedContentLength in your web.config On Mon, Nov 10, 2014 at 2:44 AM, John Blayter jblay...@gmail.com wrote: Yes there is a mismatch on the Content-Length variable. I tried setting it manually without any luck. cfset variables.temporaryFilePath =

Re: Scheduled Tasks Error

2014-11-10 Thread John M Bliss
Only by restoring from backup. No clue as to root-cause / preventing it from happening again. On Sun, Nov 9, 2014 at 6:37 PM, Sebastian Powell bas...@gmail.com wrote: [crickets] :-) -- John Bliss - http://www.linkedin.com/in/jbliss I am experiencing the same issue on CF 11,

Re: Scheduled Tasks Error

2014-11-10 Thread Byron Mann
I've seen this before when the CF service suddenly terminates. Could be the service terminated during an update to the xml file rendering it empty. A subsequent restart of CF may have created a backup of the xml file before stopping, rendering the bak file empty as well. We moved to clustered

Re: Scheduled Tasks Error

2014-11-10 Thread Russ Michaels
is this a new feature in CF10/11 to install the tasks in DB ? On Mon, Nov 10, 2014 at 1:37 PM, Byron Mann byronos...@gmail.com wrote: I've seen this before when the CF service suddenly terminates. Could be the service terminated during an update to the xml file rendering it empty. A

Re: Scheduled Tasks Error

2014-11-10 Thread Byron Mann
This was a new feature implemented in CF10. There were a ton of improvements to scheduling for that release. http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d31851899e53a51353e870493-8000.html On Mon, Nov 10, 2014 at 9:08 AM, Russ Michaels r...@michaels.me.uk wrote: is

Re: Scheduled Tasks Error

2014-11-10 Thread Russ Michaels
cool, it was about time. I haven't really bothered with CF since CF9 since I use Railo for everything now. On Mon, Nov 10, 2014 at 2:11 PM, Byron Mann byronos...@gmail.com wrote: This was a new feature implemented in CF10. There were a ton of improvements to scheduling for that release.

Redirects

2014-11-10 Thread Steve LaBadie
We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www and the production server sit at www4. We are taking down www so the redirects have to be recreated on our new production server which will be taking www. Current redirect structure: HTML BODY META

Re: Redirects

2014-11-10 Thread John M Bliss
Not sure I understand your question. Check out https://wikidocs.adobe.com/wiki/display/coldfusionen/cflocation On Mon, Nov 10, 2014 at 3:39 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www and the

RE: Redirects

2014-11-10 Thread William Seiter
Unless you need these redirects to be dynamically controlled by a datasource, I would handle them outside of CF. You could use a mod_rewrite on the server or even a virtual directory. If you are determined to utilize CF for this, look into the cflocation tag.

Re: Redirects

2014-11-10 Thread Jon Clausen
Sorry: typo. You should use a 307 status code for temporary redirects. Jon On Nov 10, 2014, at 3:53 PM, Jon Clausen jon_clau...@silowebworks.com wrote: Is the current “www4” a Linux or Windows machine? I would suggest handling those at the web server level, with a 303 status code to let

RE: Redirects

2014-11-10 Thread Steve LaBadie
www4 is a windows box Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Jon Clausen [mailto:jon_clau...@silowebworks.com] Sent: Monday, November 10, 2014 3:54 PM To: cf-talk Subject: Re: Redirects Is the current www4

Re: Redirects

2014-11-10 Thread Jon Clausen
Then use the Linux mod_rewrite redirect below on the current “www” box and you should be good to go. Since you’ve got Linux on www, you could also install NGINX (which makes a great HTTP proxy server) or use Apache to proxy traffic to ww4 while maintaining the “www” in the URL. You’ll need

RE: Redirects

2014-11-10 Thread Steve LaBadie
The Unix box (www) is going away and the www4 (windows box) will be renamed www. I need to be able to recreate the directory without making a mess out of the new server directory structure. I thought about creating a www folder and putting all of the redirects/forwards in it. Is this

Re: Redirects

2014-11-10 Thread Russ Michaels
Is there a specific reason you are not using url rewrite? On Mon, Nov 10, 2014 at 21:17 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: The Unix box (www) is going away and the www4 (windows box) will be renamed www. I need to be able to recreate the directory without making a mess out of

RE: Redirects

2014-11-10 Thread Steve LaBadie
I didn't give it any thought. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Monday, November 10, 2014 4:21 PM To: cf-talk Subject: Re: Redirects Is there a specific

Re: Redirects

2014-11-10 Thread Jon Clausen
Can’t you just put an .htaccess file in the directory and use mod_rewrite to handle all of the redirects in the short-term? You can certainly recreate the physical files and have redirect code in place, if you want to, but the mod_rewrite will save you a lot of time and will be faster. If

Re: Redirects

2014-11-10 Thread Jon Clausen
Is the current “www4” a Linux or Windows machine? I would suggest handling those at the web server level, with a 303 status code to let the search engines know the redirect is temporary, rather than through the application - with the exception of perhaps some dynamic redirects that need to be

List_Question?

2014-11-10 Thread robert
I recently move to a new company and updated my profile to have my work email as my second email address in my profile. I'm not getting any list email to the secondary address. How do I correct that? I want list mail to go to both email addresses. Thanks, Robert

Re: List_Question?

2014-11-10 Thread Bryan Stevenson
May be best to send that question directly to the list owner Michael Dinowitz - pretty sure his e-mail is available at houseoffusion.com *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS^(TM) phone: 250.480.0642 cell: 250.920.8830 e-mail:

Re: Redirects

2014-11-10 Thread Russ Michaels
I would suggest doing so now then as it is a more efficient solution than using meta refresh tags. On Mon, Nov 10, 2014 at 21:22 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: I didn't give it any thought. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu

Re: Redirects

2014-11-10 Thread Michael Grant
Plus meta refresh is awful for SEO. Though that might not be a problem for you. On Monday, November 10, 2014, Russ Michaels r...@michaels.me.uk wrote: I would suggest doing so now then as it is a more efficient solution than using meta refresh tags. On Mon, Nov 10, 2014 at 21:22 PM, Steve

Re: Redirects

2014-11-10 Thread Byron Mann
Is the site coded in a manner where it is not using absolute paths for anything? If this is the case, the new server can probably just have a virtual directory in IIS off the root for /police, that points to the physical path for about/offices/police And by the way, I hope you are not using the