RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
That was what you wanted... yes? Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be &. Plug in to ou

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
attribute Yes Robert, instead of using form="#form.email# just put mine in there. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu slaba...@esu.edu -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, Septem

RE: detecting mobile devices

2011-10-04 Thread Robert Harrison
This works. Yes, I am a mobile device. No, I'm not a mobile device Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great ad

Clean URLs: Preferred IIS Method

2011-10-06 Thread Robert Harrison
We have a request to use only "clean" URLs. That is, URLs with not file name, like http://www.mysite/news/2011/this-is-my-story I've gotten this to work like http://www.mysite/news.cfm/2011/this-is-my-story, but can't quite get to the format above. We are runn

RE: Clean URLs: Preferred IIS Method

2011-10-06 Thread Robert Harrison
Does anyone have any experience with this: http://iirf.codeplex.com/ This has also been suggested as a solution... and the one thing I like is that is utilizes an .ini file in the root of the site. That would mean we could make the CF programs rewrite or update the .ini file when there are add

cgi.HTTP_USER_AGENT

2011-10-19 Thread Robert Harrison
I have an issue where user agent (cgi.HTTP_USER_AGENT) for IE 9 is being reported correctly on one server and incorrectly on another... http://www.vaughn.edu/test_useragent.cfm Reporting IE 9 correctly on CF8 server http://www.austin-williams.com/test_useragent.cfm Reporti

RE: cgi.HTTP_USER_AGENT

2011-10-19 Thread Robert Harrison
Even stranger now... https://portal.vaughn.edu/test_useragent.cfm this is reporting IE9 incorrectly. http://www.austin-williams.com/test_useragent.cfm this is reporting IE9 correctly. These site are on the same CF9 server. The only difference I can think of now would be some setting we

RE: cgi.HTTP_USER_AGENT

2011-10-19 Thread Robert Harrison
> Your browser is what is sending that data - it's part of the HTTP request > packet the browser sends when it requests a file. Same browser from same machine reporting differently on different environments. Exact same CF file generating the output. There is something more going on here. Rob

RE: cgi.HTTP_USER_AGENT

2011-10-19 Thread Robert Harrison
I added the meta tags: and it's still reporting back as IE7 in the https://portal.vaughn.edu/test_useragent.cfm environment. That code should have forced it to IE9 standards. What the heck! Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Su

RE: Error message

2011-10-20 Thread Robert Harrison
It appears you are allowing user to enter some values then storing them as cookies. The error you are showing looks like it may be a syntax error in the CF code where some line is not seeing the values correctly. This could happen if you get a stray " or stray # in your user values somewhere an

RE: Question about SQL Encryption VS CF Encryption

2011-10-20 Thread Robert Harrison
Actually you don't need to decrypt passwords at all. For something like passwords you could use HASH store them in the data base. Then to check to see that a user's password is correct, also convert that to a has value and compare hash value to hash value. At least, that's how I do it. Some sa

Annoying CF Form Validation Error

2011-10-20 Thread Robert Harrison
Well, this is just an annoyance, but it seems there is a minor error in the CF form validation when you use validate="float". It does not validate correctly. It allows both a $ sign and/or a , to be inserted in the field. That's just wrong. Robert B. Harrison Director of Interactive Services

RE: Annoying CF Form Validation Error

2011-10-21 Thread Robert Harrison
> there is a minor error in the CF form validation when you use > validate="float". It does not validate correctly. It allows both a $ sign > and/or a , to be inserted in the field. And, to make it worse, if you enter a $ sign in a field with validate="float" it kills all validation on the f

RE: CF in the news

2011-10-21 Thread Robert Harrison
Link appears to be broken. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be &. Plug in to our blog:

Query Errors

2011-11-18 Thread Robert Harrison
I've been using the query below in a CFC for months and today it started throwing random time out errors. Nothing has changed. Any thought as to why I may be getting errors on this query all of the sudden? SELECT TOP 1 portal_polls.poll_id, portal_polls.question, portal_polls.answer1, porta

RE: Query Errors

2011-11-18 Thread Robert Harrison
Well, the errors stopped. Everything on the query checks out fine and the logs don't show any issues. I'm stumped. Probably a connectivity problem but see no other evidence of that. I guess I'll let it ride as a glitch and see what happened. Strange. Robert B. Harrison Director of Interact

application vars

2011-11-21 Thread Robert Harrison
If I have an application variable "application.myvar" and I reset it on any page, it resets that variable for the entire application. Is there a way I can reset an application variable for just the page where the reset lives? Robert B. Harrison Director of Interactive Services Austin & Will

RE: application vars

2011-11-21 Thread Robert Harrison
Ok. So if I want to create a global var that's almost always the same (with a few exceptions), I could do the following in the application.cfc: Set up the application vars I always want available. Set up the most standard use like below (whic

RE: application vars

2011-11-21 Thread Robert Harrison
Sent: Monday, November 21, 2011 4:20 PM To: cf-talk Subject: Re: application vars That would work just fine. Note that you don't need the "##" when assigning variables like that. will do. On 11/21/11 1:15 PM, Robert Harrison wrote: > Ok. So if I want to create a global v

RE: application vars

2011-11-21 Thread Robert Harrison
> if you have both variables stored in application scope, why bother copying > them to local scope, just use the one you need directly from application > scope. Because many of the pages use include files that also use that var. Using them like this makes the var change on the include file and

RE: application vars

2011-11-21 Thread Robert Harrison
> ok, as a side note, another way to handle the https requirement is with url > rewriting, just store a list of url's that need to be https and redirect if > they are accessed at http. These sites tend to get moved around and I use a custom built framework. This works so I can just move this s

CFSELECT - Required

2011-12-13 Thread Robert Harrison
According to the CF documentation you can make a select list required and you can get around the need to set the size gt 1 by entering " " as the value of the first option. This is the documentation: REQUIRED... Note: This attribute has no effect if you omit the size attribute or set it

RE: CFSELECT - Required

2011-12-13 Thread Robert Harrison
> The message isn't appearing because your form element has a value. the blank > space is considered a value. According to the CF documentation that is how to make it work. Regardless, it also does not work if you say value="" or leave out the value clause altogether. I looked this up on

Very disappointing statis

2011-12-14 Thread Robert Harrison
Very disappointing statistics for ColdFusion market penetration. http://w3techs.com/technologies/overview/programming_language/all Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022

RE: Very disappointing statis

2011-12-14 Thread Robert Harrison
> The following server-side programming languages are used by less than 0.1% of > the websites >JavaScript >> All credibility is lost with that statement I don't think so. There are a few people using Javascript on the server. I've actually seen it once. Crazy, but nonetheless it is rea

RE: Very disappointing statis

2011-12-14 Thread Robert Harrison
Yes you can run JS server side. It's rare: http://en.wikipedia.org/wiki/Nodejs However, the focus is 1.2% ColdFusion. OMG. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://

RE: Very disappointing statis

2011-12-14 Thread Robert Harrison
> ColdFusion has a huge market "behind the firewall" in corporate and > government intranets and other places that these kinds of surveys can't > report on That may be true. Does anyone know of solid statistics on CF market share of CMS driven sites. Any stats that look more promising than thi

RE: CFSELECT - Required

2011-12-16 Thread Robert Harrison
> Try adding 'selected' property to your first option tag: > Month Thanks, but I've tried pretty much every variation you can think of, including that. Button line was on this form we abandoned use of CFForm and I just wrote a custom validation for the form. I hate having to do that though. I

RE: CFSELECT - Required

2011-12-16 Thread Robert Harrison
> Button line was Uhm... that's supposed to be Bottom line. Auto spelling correction on typos can be unpredictable some times. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 ht

RE: PHP The Anthem

2012-01-27 Thread Robert Harrison
Sounds like gangstas ... perfect positioning for PHP. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups

Opinion: Abuse of session variables

2012-01-31 Thread Robert Harrison
I'm an old school programmer who watches every bit and byte and really practices resource management in my coding practices. I've got a new programmer working for me (on contract) and I'm finding he's using session Vars all over the place. He creating session Vars on forms that have a hundred

RE: Opinion: Abuse of session variables

2012-01-31 Thread Robert Harrison
Thanks for all the input. Besides the fact that the application could conceivably have hundreds of thousands of session Vars in memory, I'm concerned about collision too. I see no scope referencing in these Vars and see they are all 'common names'. I also see no routines to clear any vars af

Image Crop/Resize Tool

2012-02-24 Thread Robert Harrison
Does anyone know of a decent utility or CF compatible code that could be used to help users resize/crop the images they've uploaded. I know I could use CFIMAGE to do it, but I'd like to add something to the CMS that let users see what they are doing before they do it. Any ideas on what may be

RE: Browser and OS detection with CF

2012-03-19 Thread Robert Harrison
Check out the cgi vars: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Expressions_8.html Should all be available there. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 63

cf-talk@houseoffusion.com

2012-04-17 Thread Robert Harrison
Does anyone know where you can download the custom tag and where you can find decent documentation on the PHP functions that are available when using that tag? Thanks, Robert Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788

RE: Coldfusion MS acess question

2012-04-19 Thread Robert Harrison
>datepart("q", datecolumn) AS quarter, column1, column2 Did you verify the datecolumn is a properly defined as a date field in the data base and does not have 'null' values? Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P

(ot) Blocking IPs

2012-05-02 Thread Robert Harrison
sites other parts of the world, like places in Asia, the Middle East, South and Central America, etc. I'm not surprised at the complaints. Is this a normal practice, or is this host over-zealous? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Brandi

RE: (ot) Blocking IPs

2012-05-02 Thread Robert Harrison
inst blanket IP blocking. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog: http://www.austi

CFIMAGE Killing the Server

2012-05-07 Thread Robert Harrison
loads the server whiles until it catches up... then everything comes back. What is the best approach we can take to ensure we don't overload the server when doing this? Would that be CFTHREAD or something? Any ideas? Thanks Robert Harrison Director of Interactive Services Austin

RE: CFIMAGE Killing the Server

2012-05-07 Thread Robert Harrison
> CORRECTION: The images are also being resized to a large and standard view > size using CFIMAGE Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600

RE: CFIMAGE Killing the Server

2012-05-07 Thread Robert Harrison
GE does convert the CYMK to RGB, but that apparently requires significant processing resources. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 6

RE: CFIMAGE Killing the Server

2012-05-07 Thread Robert Harrison
> Are you informing the user when a specific image is rejected? Yes. Of course. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.4

RE: Holy sweet mother of Jeremy Allaire...

2012-05-15 Thread Robert Harrison
When did CF10 come out? http://www.adobe.com/products/coldfusion-family.html I saw no mention of this anywhere, and to find this page you have to go to Products / More Products - then scroll down the alphabetic listing and click on Cold Fusion. Robert Harrison Director of Interactive

RE: Variables

2012-05-16 Thread Robert Harrison
If the var is used only within a single program a regular local var is fine. If the var needs to persist and be recalled from another program later (i.e., a program where the var is not passed as a URL or form value), then use the session.var. Robert Harrison Director of Interactive

Get First Paragraph

2012-06-04 Thread Robert Harrison
endTag = endTag + 3; extract = left(str, endTag); } else { extract = str; } if (startTag gt 0) { startTag = startTag + 4; extract = right(extract, startTag); } else { extract = str; } return extract; } #getFirstParagraph(comment)# Tha

RE: Get First Paragraph

2012-06-04 Thread Robert Harrison
> Don't forget to check CFLib for things like this... > http://www.cflib.org/udf/firstParagraph That was my starting point. That does not work if the string starts with something other than a paragraph. Robert Harrison Director of Interactive Services Austin & William

RE: Get First Paragraph: Remove Empty Paragraphs

2012-06-04 Thread Robert Harrison
Getting close, no I'm trying to consider any empty paragraphs. Tried this: , , "," , , ")> But it does not work completely. How could I remove all paragraphs that are empty, or contain only blanks or non-breaking spaces? Robert Harrison Director of Inter

RE: Get First Paragraph: Remove Empty Paragraphs

2012-06-04 Thread Robert Harrison
? No one know a method to strip empty paragraphs from a string? I'd like to remove all occurrences of paragraphs that have no content - stuff like: , OR OR   Any ideas? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital

RE: Get First Paragraph: Remove Empty Paragraphs

2012-06-04 Thread Robert Harrison
 )*', '', 'all' )# To This: #reReplaceNoCase(myString,'([^\w*?])*','','all' )# This seems to be working. Can someone that knows regex better that I confirm the "to this" says:Strip from to UNLESS it contains a letter or

RE: Get First Paragraph: SOLVED

2012-06-04 Thread Robert Harrison
a pain that was. Thanks for the help. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog:

RE: finding html tags

2012-06-07 Thread Robert Harrison
Yes, remove the htmlCodeFormat from your statement. What exactly are you trying to do? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.

Date Truncation on CFquery Update

2012-06-13 Thread Robert Harrison
t the culprit. Any ideas what is causing the truncation? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-wil

RE: Data Truncation on CFquery Update: SOLVED

2012-06-13 Thread Robert Harrison
Thanks Rob Parkhill. It was the Max data length in cf admin.It was set to 64,000 characters by default. Adjusting that solved the problem. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100

CF Header to Serve a File

2012-06-14 Thread Robert Harrison
physical path to the file and the file name No matter what I do it does not seem to know where the file is (get_file) is the full drive path and file name. It always tries to download from the web root. What am I missing here? Thanks, Robert Harrison Director of Interactive Services

RE: CF Header to Serve a File

2012-06-14 Thread Robert Harrison
Thanks. Issue resolved. The problem was a corrupt test file. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.au

RE: getting back to indexing .cfm files

2012-06-19 Thread Robert Harrison
Yep. We use Google custom search all the time. It's easy. Why re-invent the wheel? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631

CFHeader Problem

2012-06-26 Thread Robert Harrison
in a CFTRY it does not thrown an error). When I abort (exit the spinning page) I get a diagnostic dump: Java heap space null The error occurred on line -1. What the heck? I I doing something wrong? Robert Harrison Director of Interactive Services Austin & Williams Advertis

RE: CFHeader Problem

2012-06-26 Thread Robert Harrison
According to the documentation the default is "yes". Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austi

RE: Thousand Separator ONLY

2012-06-26 Thread Robert Harrison
Should be able to do that with a number format mask http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_m-r_08.html Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100

RE: CFHeader Problem: SOLVED (sort of)

2012-06-26 Thread Robert Harrison
are >still looking. For now, increasing the Java Heap Size Max has solved the problem. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022  

RE: Thousand Separator ONLY

2012-06-26 Thread Robert Harrison
I believe you do your own format mask? I don't know the length of your number, but I think NumberFormat(myvar,"__,___.__") would work to cover most any number you throw at it. Robert Harrison Director of Interactive Services Austin & Williams Adver

RE: CFHeader Problem

2012-06-27 Thread Robert Harrison
> but I have a related question for you. If you're serving files in your web > root, why are you bothering to use CFCONTENT to serve them? This of that example as "foo". It's for illustration only :-) Robert Harrison Director of Interactive Services Austin & W

Replace Question

2012-06-27 Thread Robert Harrison
ed of being a Beatle... Is there a way I could do the replace to highlight the result and NOT change the case? Thanks, Robert Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788

RE: Replace Question

2012-06-27 Thread Robert Harrison
jagger" was guy with big lips who dreamed of being a Beatle... Is there a way I could do the replace to highlight the result and NOT change the case? Thanks, Robert Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct 12

RE: Replace Question

2012-06-27 Thread Robert Harrison
> # REReplaceNoCase(answer, '(#search_string#)', ' class="keyword">\1', 'all')# Nice. Works perfectly. Thank You... just waiting for someone to complain about the nested ##'s though LOL :-) Robert Harrison Director of Interactive Services A

RE: Replace Question

2012-06-27 Thread Robert Harrison
> Stop nesting #s. You're needlessly killing kittens!!! I was sooo waiting for that shoe to drop :-) Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.66

RE: Replace Question

2012-06-27 Thread Robert Harrison
Got it. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog: http://www.austin-williams

RE: Replace Question: Part II

2012-06-27 Thread Robert Harrison
tent is in an HTML tag (like an HREF tag)? Sorry, but this level of Regex is a bit over my regex skill level. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.66

More Complicated RegEx Replace

2012-06-28 Thread Robert Harrison
href or img src, OR UNDO the replace if it's inside an href or img src tag? Either would achieve the same results. Any help is appreciated. This is truly beyond my regex skill level. Thanks, Robert Robert Harrison Director of Interactive Services Austin & Williams Advertising I Bran

CF Long Text Truncation

2012-07-17 Thread Robert Harrison
using data truncation? 2. Is it possible the CFQUERYPARAM type CF_SQL_LONGVARCHAR is causing the truncation. I see I could also use cfsqltype="CF_SQL_CLOB", but that does not seem to be supported on MS SQL Server. Any thoughts as to where the truncation may be occurring? Tha

RE: CF Long Text Truncation

2012-07-17 Thread Robert Harrison
> are you sure that all the data is getting to your query ... are you hitting > the HTML Post limit Where is this setting? Is this an IIS setting or something? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Ken

RE: IsValid Integer 40+ and numeric argument???

2012-07-20 Thread Robert Harrison
Unfortunately, that's a CF bug. It's a major pain. I don't think they intend to fix it. It's been that way for several releases. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suit

RE: The requested URL not found

2012-07-24 Thread Robert Harrison
Probably, as you say, the / before the ? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com

RE: Empty file upload field causing 403 error.

2012-08-02 Thread Robert Harrison
Wrap the CFFILE (and related code) in a cftry. You can also wrap the code in a CFIF and say basically Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X

RE: Looking for Homesite+

2012-08-21 Thread Robert Harrison
. The tags are about 7Mb. Contact me off-list if you want these. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://w

RE: Looking for Homesite+

2012-08-21 Thread Robert Harrison
> Robert, what are the most recent tag updates that you have? I have the updates for CF8 and CF8.01. I think that was the last update issued. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite

RE: question on cfhtmlhead

2012-08-21 Thread Robert Harrison
You should also put a disallow for this page in the Robots.txt file. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.au

cfmailparam

2012-08-22 Thread Robert Harrison
hanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog: http://www.austin-williams.com/blog Twitt

RE: cfmailparam

2012-08-22 Thread Robert Harrison
"Name of header", that seems a bit ambiguous to me. If it's clear to you, great. It doesn't leave me with any more understanding of what I can put there. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct  

cfmailparam

2012-08-22 Thread Robert Harrison
he email has been delivered, or at least that it was relayed. Is there an equivalent command I can use to emulate that function? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppaug

RE: credit card fraud

2012-08-23 Thread Robert Harrison
What I'd like to know is why does the CFTALK list let anyone post with no name and no email address? -Original Message- From: Sent: Thursday, August 23, 2012 3:02 PM To: cf-talk Subject: Re: credit card fraud ~| Or

RE: cfmail settings

2012-08-30 Thread Robert Harrison
Try changing to: cfmail server="127.0.0.1" Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austi

RE: cfmail settings

2012-08-30 Thread Robert Harrison
And also be sure you've enabled the internal mail server in IIS. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://w

CFMAIL Problem with new TLDs

2012-09-27 Thread Robert Harrison
bombs and halts. If I wrap it in CFTRY with a CFCATCH to show me the failures, it's failing on several of the new TLDs. Does anyone know if there is a patch for this or something? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I 

RE: Another weird SQL Injection attempt

2012-10-01 Thread Robert Harrison
Hmmm. One of my sites also had this exact attack (and some variations tried about a dozen times) yesterday also. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 117

Ensuring a section of code completes

2012-10-18 Thread Robert Harrison
happens rarely. Question is, how do I force the code that checks the cookies and reset the vars to completed before the rest of the page loads? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100

RE: Ensuring a section of code completes

2012-10-18 Thread Robert Harrison
ars Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog: http://www

RE: Ensuring a section of code completes

2012-10-18 Thread Robert Harrison
vars... which were being set further down the page. Boy, was that a pain to find. Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.

RE: strip ntext chars

2012-10-18 Thread Robert Harrison
You're converting from Ntext to Text? Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog:

RE: strip ntext chars

2012-10-18 Thread Robert Harrison
Reread your post. You may want to look at Ben Nadel's blog: http://www.bennadel.com/blog/1155-Cleaning-High-Ascii-Values-For-Web-Safeness-In-ColdFusion.htm Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kenn

CFZIP file protection

2012-11-08 Thread Robert Harrison
Need to create a password protected zip file using CFZip. Not seeing how to do this in the documentation. The file contains confidential bank documents so it need to be protected. Anyone know how protect a CFZip file? Thanks Robert Harrison Director of Interactive Services Austin

RE: CFZIP file protection

2012-11-08 Thread Robert Harrison
It seems like if they'd allow you to password protect a PDF file they'd have the sense to allow you to protect a zip file. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppau

Read / Serve a file with CFHEADER

2012-11-09 Thread Robert Harrison
use the path to the physical file this works; but it bombs with the file data in the var server_file) Anyone see what I'm doing wrong here? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125

RE: Read / Serve a file with CFHEADER

2012-11-09 Thread Robert Harrison
ta on disk. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com B

RE: cflocation not working

2012-11-15 Thread Robert Harrison
Your problem is the cgi vars. Test it without the if statements and see if it works. If it does, it's you cgi var statements that need some work. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suit

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
You can send the file to different definitions if you loop over your file sets rather than handle them all with one command. Then you can change destination on each loop. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct  

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
I have definitely gotten around that by using loops, but I also have not been using file sets. I've been using single file fields named in such a way that I have a key to tell me which files belongs to a set. Robert Harrison Director of Interactive Services Austin & Williams Adve

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
> I've been using single file fields ... That's not always true. I do also use a multi-file uploader utility but I consider each multi-file upload to be one set when that is used. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I

CFERROR Handler

2012-12-06 Thread Robert Harrison
s is bad cftag name; shows the error on screen. Any idea why the second error is not working with my error handler? Thanks Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788

RE: CFERROR Handler

2012-12-06 Thread Robert Harrison
Thanks all. That's enough for my needs. I'm actually troubleshooting a related problem, but had to understand this problem first. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I

<    1   2   3   4   5   6   7   8   >