RE: Handling invalid recipient in mailing list

2015-04-02 Thread William Seiter
is, but I would try to not bother them with testing emails. Just my 2 pence, William -- William Seiter -Original Message- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 3:55 PM To: cf-talk Subject: RE: Handling invalid recipient

CF Builder 3

2015-03-02 Thread William Seiter
am just 'playing with' yet. Thanks, William -- William Seiter ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

RE: Cannot access session variables in a cfc

2015-01-28 Thread William Seiter
later when the fires are out. Thanks, William -- William Seiter -Original Message- From: John Pullam [mailto:jpul...@mcleansystems.com] Sent: Wednesday, January 28, 2015 8:57 AM To: cf-talk Subject: Re: Cannot access session variables in a cfc I know

RE: Cannot access session variables in a cfc

2015-01-28 Thread William Seiter
required=yes / Hope this helps, William -- William Seiter -Original Message- From: John Pullam [mailto:jpul...@mcleansystems.com] Sent: Wednesday, January 28, 2015 8:08 AM To: cf-talk Subject: Cannot access session variables in a cfc My app is running

RE: Call Rail API / CF

2015-01-19 Thread William Seiter
=MYKEYHERE' / -- William Seiter -Original Message- From: Robert Harrison [mailto:rharri...@aimg.com] Sent: Monday, January 19, 2015 8:48 AM To: cf-talk Subject: RE: Call Rail API / CF Yes. The PHP version does pull the data. The CF version comes up empty

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
Phillip, I like your sense of humor. --- William Seiter On Dec 23, 2014, at 4:00 PM, Phillip Vector vec...@mostdeadlygame.com wrote: *stares blankly at the screen* *gets up and goes to get some popcorn* Ok.. Proceed. On Tue, Dec 23, 2014 at 3:58 PM, Matthew Smith

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
That's not it... --- William Seiter On Dec 23, 2014, at 4:05 PM, Maureen mamamaur...@gmail.com wrote: It is fairly clear that the path you are using for the include is invalid. It needs to be a physical path, not a url, and I doubt if your physical path includes /site_

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
My best guess, without looking at your admin, is that you did not setup your directories (for includes) in the administrator. Take a look at the live sites admin settings and mimic them on your local admin --- William Seiter On Dec 23, 2014, at 3:58 PM, Matthew Smith chedders

RE: Creating columns that aren't included in a query result

2014-12-11 Thread William Seiter
. By checking the second list for a matching value to the first, you are comparing 'column header' strings to 'row result values (possibly numeric?)'. -- William Seiter -Original Message- From: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Thursday

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
/td /cfcase cfcase value=Strongly Disagree td/tdtd/tdtd/tdtd/tdtdX/td /cfcase /cfswitch /tr /cfoutput -- William Seiter -Original Message- From: Torrent Girl

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
... -- William Seiter -Original Message- From: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Wednesday, December 10, 2014 4:29 PM To: cf-talk Subject: Re: Creating columns that aren't included in a query result Russ there is only one loop. It's a very simple table with a static

RE: Redirects

2014-11-10 Thread William Seiter
/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0 811cbec22c24-7cac.html) It does what you are looking to do. Hope this helps, William -- William Seiter -Original Message- From: Steve LaBadie [mailto:slaba...@po-box.esu.edu] Sent: Monday, November 10, 2014 12:39

RE: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-10 Thread William Seiter
) Then you can instruct whichever method you end up using to correlate the correct column with the correct data. William -- William Seiter -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Thursday, October 09, 2014 5:51 PM To: cf

RE: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-09 Thread William Seiter
Have you investigated using a Stored Procedure that does both inserts? -- William Seiter -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Thursday, October 09, 2014 9:31 AM To: cf-talk Subject: Avoiding a boat load of queries

RE: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-09 Thread William Seiter
What kind of database? MSSql? Mysql? Oracle? ... -- William Seiter -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Thursday, October 09, 2014 1:29 PM To: cf-talk Subject: Re: Avoiding a boat load of queries inserting multiple

RE: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-09 Thread William Seiter
Off the top of my head... To insert the last inserted unique id in a transaction... cfquery INSERT dbo.table(column) SELECT 1; SELECT @newID = SCOPE_IDENTITY(); INSERT dbo.table_2 (column) SELECT @newID; /cfquery -- William Seiter -Original Message

Re: Using a variable to dynamically specify table name in CF10?

2013-03-29 Thread William Seiter
What is the error message that you receive? -- William Seiter On Mar 29, 2013, at 9:40 AM, Marty Franklin ma...@assetresearch.com wrote: I am in the process of moving from CF8 to 10. I have a couple of queries where I dynamically specify the table name. For some

RE: validating query string error

2012-06-11 Thread William Seiter
From the Coldfusion docs: If TestValue = 234A56?7', Val(TestValue) returns 234. If TestValue = 234'5678'9?', Val(TestValue) returns 234. If TestValue = BG234, Val(TestValue) returns the value 0, (not an error). If TestValue = 0, Val(TestValue) returns the value 0, (not an error).

Re: bizarre cffile upload bug.

2012-05-07 Thread William Seiter
Is that location inside of the web root? You say the file exists but isn't openable, right? If it is outside of the web root, you may need to add a mapping to the server. -- William Seiter On May 7, 2012, at 6:32 PM, Tony tonyw...@gmail.com wrote: hi there. im

Re: (ot) SEO

2012-01-20 Thread William Seiter
post what it is that your index page is doing, being as specific as possible. Or hit me up off list -- William Seiter On Jan 20, 2012, at 7:15 AM, Dave Hatz daveh...@hatzventures.org wrote: Sorry about the OT here, but I know there are some really good SEO people

Re: CFSELECT - Required

2011-12-13 Thread William Seiter
The message isn't appearing because your form element has a value. the blank space is considered a value. William -- William E. Seiter On Dec 13, 2011, Robert Harrison rob...@austin-williams.com wrote: According to the CF documentation you can make a select list required and you

Re: RE: CFSELECT - Required

2011-12-13 Thread William Seiter
I would be curious as to what adobe documentation said that is the way to do it. I guess the classification as a 'bug' would be determined by the definition of why that message would launch. CF does not actually process the form when submitted. CF creates the javascript and form elements

RE: Amazingly annoying concurrent CFC variable issue

2011-10-15 Thread William Seiter
Inside your methods (cffunction) use scoping. For example. cffunction name=DoSomeAction output=no returntype=any cfargument name=RecordID required=yes type=numeric cfset var local = StructNew() / cfset local.GetRecord =

RE: Amazingly annoying concurrent CFC variable issue

2011-10-15 Thread William Seiter
I was not referring to 'var'ing, I was referring to 'scoping'. When you create a scope inside of the function, that scope only has value within that function. You will want to upgrade the ' GetRecordFromRecordID' to also use scoping as well. William -Original Message- From: Tavs Dalaa

Re: How CF works

2011-10-14 Thread William Seiter
Post code -- William Seiter On Oct 14, 2011, at 2:09 PM, Stephens, Larry V steph...@indiana.edu wrote: Thanks. I found the culprit. Odd thing is I've used it on a lot of pages without a problem but this page (and one other) acts up with it. It's a third party js

Re: Caching ajax / dhtml

2011-09-13 Thread William Seiter
JavaScript is run on the client side, so unless that JavaScript is pointed to your server to get the information... You will need to find another way. -- William Seiter On Sep 13, 2011, at 4:12 PM, Matt Williams mgw...@gmail.com wrote: I have some divs

RE: Way to send data as a form without using a form?

2011-08-21 Thread William Seiter
There are different ways to handle this, posting your form variables into your subsequent URL variables being one of them. A few questions to establish what you are actually looking for. 1. The 'conditional' redirect; Are you redirecting the user to a different website, or just to a different

RE: SerializeJSON is Undefined

2011-08-13 Thread William Seiter
SerializeJSON was added in CF8 http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_f_21. html William -Original Message- From: Joshua O'Connor-Rose [mailto:joshua.oconnorr...@gmail.com] Sent: Saturday, August 13, 2011 9:45 AM To: cf-talk Subject: SerializeJSON is

Re: loop timing out

2011-06-27 Thread William Seiter
Hey Daniel, In order to assist you, it would be helpful to see the code that has the loop as well as some knowledge of what the 'database call' is doing. (maybe the database call isn't returning?) The cfsetting that you mention, does only change the timeout setting for the page that it is

RE: DateDiff Weirdness/Possible bug

2011-06-09 Thread William Seiter
It looks like the times are off by 1 hour. Did you check your server's clocks to make sure they are both set to the same time? -Original Message- From: Ruslan Sivak [mailto:cfli...@ruslansivak.com] Sent: Thursday, June 09, 2011 9:43 PM To: cf-talk Subject: DateDiff Weirdness/Possible

RE: Problem Using QueryNew

2011-04-23 Thread William Seiter
You are using a simple cfloop from to, instead of a cfquery or a cfloop query. Because of this, when you call #stockTable.stockTitle#, it defaults to the first line of the query. Either change your loop to a cfloop query=stockTable Or change your data call to #stockTable.stockTitle[R]# William

Re: Re: file upload - preventing double or more full stops in file name

2011-03-07 Thread William Seiter
Please have a look at this post: http://www.williamoncoldfusion.com/index.php/knowledgebase/file-uploading If you are referring to the cffile.serverfilename key that is available after the cffile upload command, that brings back somefile.mack, the extension is in a different key off of cffile

Re: RE: Database Lookup - Possible with CF?

2011-03-03 Thread William Seiter
Curious... Where are you that they are moving away from CF onto .NET and Java(ADF)? -- William E. Seiter On Mar 3, 2011, Ian Vaughan i.vaug...@neath-porttalbot.gov.uk wrote: Hi Dave I'm willing to give CF a go, even though here the move is away from CF onto .NET and Java (ADF)

Re: Change in ColdFusion management

2011-02-14 Thread William Seiter
Anyone have Adam's announcement? I keep trying to access it and get a blank page. Thanks, William -- William E. Seiter On Feb 14, 2011, cft...@fusionlink.com wrote: In case people don't know and many may not due to the way it was announced late last friday, there is a debate

Re: Re: Change in ColdFusion management

2011-02-14 Thread William Seiter
:3G9LdiSkodEJ:www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusion+http://www.adrocknaphobia.com/post.cfm/the-modern-age-of-coldfusioncd=1hl=enct=clnkgl=usclient=safarisource=www.google.com - Original Message - From: William Seiter [mailto:will...@seiter.com] To: cf-talk@houseoffusion.com Sent: Mon, 14 Feb 2011

Re: Re: Re: Re: Change in ColdFusion management

2011-02-14 Thread William Seiter
:53pm, William Seiter will...@seiter.com wrote: Got it, thanks everyone for the google cache link... must be a bad brain day monday for me ;) William -- William E. Seiter On Feb 14, 2011, cft...@fusionlink.com wrote: It's cached by Google.. http

Re: Multiple applications with a single codebase issues

2011-02-08 Thread William Seiter
I had a similar issue that came up a couple of years ago for me. As it turned out I had the name of the application the same across all of the sites, so the application variables weren't unique to each site. -- William E. Seiter On Feb 8, 2011, Pete Ruckelshaus

RE: Coldfusion Hosting

2011-01-28 Thread William Seiter
Yeah, you're dreaming. But you can check out gearhost.com. I moved to them a couple years ago and have never had a problem creating robust OO based coldfusion 8 websites there. William -Original Message- From: Adam Bourg [mailto:adam.bo...@gmail.com] Sent: Friday, January 28, 2011

Re: http://mail.seiter.com/webmail/driver?nimlet=showcanvas#Lions, Tigers and Images, Oh My!

2010-10-12 Thread William Seiter
http://www.williamoncoldfusion.com/index.php/knowledgebase/file-uploading -- William E. Seiter On Oct 12, 2010, Everett Alexander reac...@anizanmedia.com wrote: Hello, I have a an form that will be updating a database for creating webpages. That form will need to upload images

Re: How to point to a Directory?

2010-10-04 Thread William Seiter
AIR is not the only method, but you can't get it done with just html. You will need A java applet or flash or air or some other program that can talk to the system as well as your app. -- William Seiter On Oct 4, 2010, at 4:39 PM, Gonzo Rock gonzor...@gmail.com wrote

Re: Re: sending a form through CF and catching the results

2010-08-26 Thread William Seiter
The page you are trying to hit with cfhttp is expecting a numeric value for 'di_20156'. try changing the value in your script from SPHL-School of Public Health to 20 William -- William E. Seiter On Aug 26, 2010, daniel kessler dani...@umd.edu wrote: Seems like the error isn't

West Side Rentals

2010-07-11 Thread William Seiter
Hey, Does anyone know who is the developer or involved with IT at Westside Rentals in Los Angeles? Contact me offline. William [at] Seiter [dot] com Thanks, William ~| Order the Adobe Coldfusion Anthology now!

Re: Seriously PO'd - cfqueryparam and/or struct dereference flakes out

2010-06-24 Thread William Seiter
When CF throws an error on a stored proc, it will usually reference the last line of the stored proc, not necessarily which line has bad data. If I were you, I would dump the values that are being sent into the stored proc and review to see if any of it is null or blank (or string) going into

Re: list of declared functions

2010-06-18 Thread William Seiter
this can be built rather simply. 1. add to your Application.cfc in the OnRequestStart function cfset request.loadedFunctions = ArrayNew(1) / 2. change all of your functions to read like this: cfif not ListFindNoCase(ArrayToList(request.loadedFunctions,'[name of the function]',','))

RE: How to loop over a dataset twice.

2010-06-08 Thread William Seiter
We will need to see more of the code. If the second loop doesn't work then there is probably something in the code that is stopping your action. Once the query has been created, it will persist until it is erased by the code. -Original Message- From: Dave Hatz daveh...@hatzventures.org

Re: Redirect question

2010-06-02 Thread William Seiter
The easiest way I can think of would be to change the page name from: http://www.domain.com/acme.cfm to: http://www.domain.com/acme/index.cfm Your 'http://www.domain.com/acme' call would automatically call the index.cfm page, and it will be easier for future maintenance needs. William

RE: Comma delimited list

2010-05-28 Thread William Seiter
Break out the comma dilimited list into a cross ref table then you query the tables with an inner join to get the features. -Original Message- From: Bill Hartley b...@whdservices.com Sent: Friday, May 28, 2010 7:37 PM To: cf-talk cf-talk@houseoffusion.com Subject: Comma delimited list

Re: How to make a select option tag selected in CF?

2010-05-27 Thread William Seiter
on page load, to default to the previously saved data... option value=nothing cfif form.choice eq 'nothing'selected=selected/cfifChoose From Below/option and  input type=radio name=pagetype value=notapplicable cfif form.pagetype eq 'notapplicable'checked=checked/cfif /Not Applicable if,

Re: FIXED: cflock and cfloop question

2010-05-26 Thread William Seiter
Please be sure to post the fix that was used so that persons using the archive in the future will be able to troubleshoot their stuff as well. William -- William E. Seiter On May 26, 2010, cfcom cf...@aceligent.com wrote: ISSUE IS FIXED - THANKS EVERYONE!

RE: Need CF help- is anyone available

2010-05-25 Thread William Seiter
It sounds like the images were moved to their new homes, but the site code might still be pointing to the old location. Or the old location isn't accessible to the new site. If the code is pointing to an image that does exist, take a look at the permissions on the directory to verify that your

RE: idea paint

2010-05-22 Thread William Seiter
I am not certain the reason for the link, but that website is one of the worst i've seen recently when viewed from my smartphone browser. william -Original Message- From: Brian Thornton vegasthorn...@gmail.com Sent: Friday, May 21, 2010 8:27 PM To: cf-talk cf-talk@houseoffusion.com

Re: CF 9 Hosting

2010-05-20 Thread William Seiter
GearHost has all of their servers on CF9. I just spoke to Adam Patton in sales who confirmed that the servers are updated, but the website hasn't been yet. http://www.gearhost.com/hosting/shared/coldfusion/ William -- William E. Seiter On May 20, 2010, Kelly Matthews

Re: Re: CF 9 Hosting

2010-05-20 Thread William Seiter
I wouldn't use them anymore at all, if they had told one of my clients that. William -- William E. Seiter On May 20, 2010, Dawn Sekel dawnt...@yahoo.com wrote: I have used them for years too -- but I have recently had a really bad experience with them. I signed one of my new

Re: Re: Re: Adobe ColdFusion Anthology released

2010-05-20 Thread William Seiter
good to know, Thanks! -- William E. Seiter On May 20, 2010, Sean Corfield seancorfi...@gmail.com wrote: On Mon, May 17, 2010 at 1:25 PM, William Seiter will...@seiter.com wrote: I bought mine through amazon a couple weeks ago.  Can you let us know what was wrong with the original

Re: Re: Adobe ColdFusion Anthology released

2010-05-17 Thread William Seiter
I bought mine through amazon a couple weeks ago. Can you let us know what was wrong with the original so that we can verify we didn't receive a corrupted copy? Thanks, William -- William E. Seiter On May 17, 2010, Reed Powell r...@powellgenealogy.com wrote: Mike: 2 copies

Re: Anyone done this before???

2010-05-07 Thread William Seiter
Having very little knowledge of MS Access for the web, can you have the report output to a static table, where the web page reads the data from the table, and the report runs hourly, or more/less often? Or, can you port the report functionality to a 'view' and have the web page read its data

Re: Re: Anyone done this before???

2010-05-07 Thread William Seiter
I am confused as to what language they changed on you? the database? the report scripting language? the web server language? as far as pass the id, it will all depend on what your system actually looks like and what you are trying to accomplish. I would suggest that you give us a longer,

RE: query for experts?

2010-05-05 Thread William Seiter
I think I am a bit confused as to what your scenario is... Is 5 the minimum a customer can purchase? If they order 5 or more, is $12 their price, or if they order 1-5 it is $12? If the pricing is for 1-5 = $12 each, then I think you can adjust your table a little to get the proper results. Add

RE: query for experts?

2010-05-05 Thread William Seiter
Is this just a list of price breaks where the single item price is in a different table? -- William E. Seiter -Original Message- From: Mike Little [mailto:m...@nzsolutions.co.nz] Sent: Wednesday, May 05, 2010 8:49 PM To: cf-talk Subject: Re: query for experts?

RE: cfqueryparam question (null attribute)

2010-05-04 Thread William Seiter
You can do nested iif, but not a full cfif/cfelseif/cfelse -Original Message- From: Matthew Lowrey rid...@gmail.com Sent: Tuesday, May 04, 2010 12:26 PM To: cf-talk cf-talk@houseoffusion.com Subject: Re: cfqueryparam question (null attribute) Sean, I'm pretty sure I already know this

Re: cfform won't submit

2010-05-04 Thread William Seiter
Without seeing your full application, my assumption would be that the code that is running (after the username unique validation) is not returning to the browser any data. I would take a look at any querries you are running and possibly add a timeout to them so you can see if they are

Re: Re: Using two submit buttons to control form action

2010-04-29 Thread William Seiter
When using a regular HTML form, we rely on the browser to act like a regular browser. Only the 'activated' elements of a form are sent. Form elements with the same name and are 'activated' will be received by the server as a comma-delimited list. In a regular form, only the button that is

Looking in LA?

2010-04-22 Thread William Seiter
A friend and I were at lunch the other day and he was telling me how hard it was for his company to find any CF developers in Los Angeles. I told him that there were plenty if you know where to look. I would like to take a very rudimentary poll of the members of this list who reside in, are

Re: FileExists using variable - not working

2010-04-08 Thread William Seiter
try cfif FileExists('#variables.ImageSource#') or cfif FileExists(variables.ImageSource) -- William E. Seiter On Apr 8, 2010, Fred Grainger i...@fredgrainger.com wrote: Ok - I'm about to pull my hair out. I am using fileexists() function to determine whether a image file exists on

Re: Re: FileExists using variable - not working

2010-04-08 Thread William Seiter
try: cfset variables.blah = '[filelocation filename you know exists]' cfif fileExists(variables.blah) Success!! cfelse Failed!! /cfif cfdump var=#variables.blah# -- William E. Seiter On Apr 8, 2010, Fred Grainger i...@fredgrainger.com wrote: Took the hash marks out. Put quotes,

Re: RE: storing a cfinput inside of a variable

2010-04-08 Thread William Seiter
Hey Steve, Can you tell us what the bigger picture is, what is it that you are trying to accomplish by saving the cfinput in a variable? cfinput is rendered by coldfusion for the browser in respect to the cfform tags that are around it. Are you trying to create a reuseable form field where

Re: populate cf variable using javascript array

2010-03-11 Thread William Seiter
Hey Charlie, Once the 'cfinput' is viewed in the browser, it is translated into a regular input statement (view source to see) Javascript only runs after the page is translated to the regular input statement, so you should be able to interact with that input with javascript directly (no need

Re: jquery ajax tabs cfinclude

2010-02-17 Thread William Seiter
if you show us the code that is breaking, we might be able to assist you better. -- William E. Seiter On Feb 17, 2010, Sachin Mohan send.sac...@yahoo.com wrote: Hi, Just wondering if someone has come across such an issue. I am loading in coldfusion content into jquery tabs using

Re: Code Review?

2010-02-10 Thread William Seiter
without seeing the context of the code, it appears to be holding values that may be used for 'tracking' the user on the site. What is the error that you are receiving from it? -- William E. Seiter On Feb 10, 2010, Glyn Jackson glyn.jack...@newebia.co.uk wrote: I have been asked to

Re: setting cf var with javascript

2010-02-05 Thread William Seiter
There is a misunderstanding about how the coldfusion works with JavaScript, I think. On the server, the coldfusion is translated to pure HTML and Javascript (or any language that is 'client side'). Once the page is delivered to the browser, there is no coldfusion left on the page. This

RE: IE8 is killing my website

2010-02-02 Thread William Seiter
I have heard that if you replicate this tag as a cfheader tag, it works. (although I don't know why) -Original Message- From: Marc Funaro subscripti...@advantex.net Sent: Tuesday, February 02, 2010 11:21 AM To: cf-talk cf-talk@houseoffusion.com Subject: Re: IE8 is killing my website

RE: Why i fear ColdFusion is on its last legs

2010-01-20 Thread William Seiter
I can't speak to your experience with [A] or [C], but I will try to do a parallel to [B]. In Los Angeles, we have had what amounts to a 'dead' CF user group. I think 2 meetings in the last year since it was resurrected, after being shelved for many many years. However, the job market for CF

RE: line-through in select tag

2010-01-04 Thread William Seiter
In this page ' http://htmlhelp.com/reference/css/text/text-decoration.html', this code is used: span style=text-decoration: line-throughline-through/span I am able to view the desired effect using IE8 and FF 3.5.6 I cannot test this on IE7 and earlier at the moment, however. William

RE: adding ip address to email body

2009-12-09 Thread William Seiter
Alex, to make your code modular, you can create a custom function that wraps around the cfmail tag and adds all of your intended updates. Then you would call the new function instead of cfmail, directly. This will allow easy server migrations withot 'hacking' cf settings. -Original

RE: Possible thread issue?

2009-12-07 Thread William Seiter
Last_insert_id does just that, gets the last inserted id. No matter who entered it. This means that under intense traffic, that select may not return the id associated with that transactions action. You should find the mysql equivalent to ScopeIdentity() Or if you are using a newer version of

Re: Scheduled Tasks

2009-09-28 Thread William Seiter
sounds like a great reason to follow his advice of creating a log file for the http responses. If its not recreatable, yet you know it happens. -- William E. Seiter Sep 28, 2009 03:53:19 PM, cf-talk@houseoffusion.com wrote: ===

RE: Web service error

2009-08-05 Thread William Seiter
1. The scope is arguments, note the s 2. If the query returns a recordcount of 0, what does the function return? -Original Message- From: ch g chr_...@yahoo.com Sent: Wednesday, August 05, 2009 10:40 AM To: cf-talk cf-talk@houseoffusion.com Subject: Re: Web service error After i

Re: CFFORM METADATA

2009-06-11 Thread William Seiter
I guess keeping track of the field types at the time the form is created is better than what I'm doing now. My field names are coded, so I loop through FORM.fieldNames looking for a keyword which triggers the correct type of validation. I could save the field name and field type in a

Re: CFFORM METADATA

2009-06-11 Thread William Seiter
Since the form submit won't inherently send the 'type' of the field that was sent, you could use a method of naming your fields according to the type of form field that was used. eg. select name=sel_stateoption... or input type=text name=txt_Name_First or textarea name=tarea_comments Just a

Re: CFFORM METADATA

2009-06-11 Thread William Seiter
I guess keeping track of the field types at the time the form is created is better than what I'm doing now. My field names are coded, so I loop through FORM.fieldNames looking for a keyword which triggers the correct type of validation. I could save the field name and field type in a

Re: new to cflayout/cflayoutarea

2009-06-11 Thread William Seiter
If you want your form to load its action page into the current 'container' then you will need to use lt;cfform tags instead of plain lt;form tags. William I've tried using cflayout/cflayoutarea for the first time. ~| Want

Re: how to deal with Delivery Status Notification (Failure) cfmail

2009-06-11 Thread William Seiter
email is correct on receiving server but the recipient is over its size limit Yes, the generic code that is returned is 'failure', thus the 'fail to' email address gets the response. I would suggest that your cfpop do a quick and dirty search for possible reasons for non-delivery of the

Re: Moving from CF to Java - redirecting old pages to new ones

2009-06-11 Thread William Seiter
I would suggest handling it at the webserver level. If you just put the cfheader data in the page, then the redirect won't occur until after the page has already been processed and sent back to the user's browser. By handling it at the server level, you reduce your companies processing for

[sot] Postgres?

2009-05-14 Thread William Seiter
Hey all, I am venturing into using postgres for the first time. I have read that you can setup postgres to accept network connections, but I can't find a sample on the internet on how to do it. Currently only accepting localhost. Any ideas? Thanks, William

RE: Storing SSN ... I know, I know

2009-05-11 Thread William Seiter
I would suggest you contact the banks/financial companies that your client is working with. Ask them what their encryption requirements are for SSNs. If they don't have one, then you can use any system that you like, I prefer ones that have variable seeds to them, but that is just me. If they do

RE: making new tab the target of a url

2009-05-11 Thread William Seiter
Gonzo, I am assuming that you are referring to the 'browser' tabs as opposed to a tab in a cfajax element. The control over that part of the browser is only available to the computer user. There is a setting in most of the browser with tabs that I have looked at, that allows new windows to be

RE: making new tab the target of a url

2009-05-11 Thread William Seiter
. Gonzo On Mon, May 11, 2009 at 5:07 PM, William Seiter will...@seiter.com wrote: Gonzo, I am assuming that you are referring to the 'browser' tabs as opposed to a tab in a cfajax element. The control over that part of the browser is only available to the computer user. There is a setting

RE: billing

2009-05-04 Thread William Seiter
A practice I usually do is invoice weekly on a project. I rarely do 'quoted' jobs anymore, however I do give a guesstimate if the client wants one. I don't have the relationship that you have with your client, but if you have racked up legitimate hours on a project, I would charge them full

RE: billing

2009-05-04 Thread William Seiter
In the case of 'no pay until complete', the situation has arisen in the past where the concept of 'complete' was at issue. We worked it out well, and both of us got good on the deal, but hopefully mentioning this will work as a word of caution... Clients don't always know the 'ins and outs'

RE: js question - getting rusty

2009-05-03 Thread William Seiter
For this, pretend that the contents of the iframe actually resides in a different browser window. When you click on bn1, you are changing the computers focus to a different window. So all other commands, without using the mouse to change to the other window, will only effect that window. I

RE: SQL Injection

2009-04-24 Thread William Seiter
Justin, That is a great piece of code, thank you for publishing it. I have a question about it. In the process of it, you create a structure, use it, then delete that structure. If I am using an Application.cfc, would there be any benefit of putting the structure into the application scope,

RE: Cfform upload - Form Field contains no file

2009-03-31 Thread William Seiter
Fawzi, Are you saying that you removed the nested cf-tags and the problem persists? If that is what you are saying, please post your new code as edited, so we can see what else might be wrong. William -Original Message- From: Fawzi Amadu [mailto:abd...@gmail.com] Sent: Tuesday, March

RE: SQL server - Order totals by month, even without month data

2009-03-25 Thread William Seiter
There are 2 ways that come to mind right off the bat. 1. Create another table that has each month in it. Do an outer join that allows the other table to return 0 for the months where you have no records in your original table 2. Inspect the query in CF for missing months. If there are any

FFMpeg FlowPlayer

2009-03-24 Thread William Seiter
Hi all, I have been working on this for a few days now and haven't got a clue on how to continue. I was hoping that someone out there has some knowledge of this and can help me. I am building a video upload process that translates video into Flash. I am using a simple form to upload

RE: FFMpeg FlowPlayer

2009-03-24 Thread William Seiter
FlowPlayer William, Be sure to check your web server. It needs to be allowed to serve FLV files. I had this issue in IIS and just had to add the appropriate MIME type. Fro -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Tuesday, March 24, 2009 11:53 AM

RE: FFMpeg FlowPlayer

2009-03-24 Thread William Seiter
That worked! Thank you! William -Original Message- From: John Drake [mailto:thedangerman...@yahoo.com] Sent: Tuesday, March 24, 2009 8:14 PM To: cf-talk Subject: Re: FFMpeg FlowPlayer Here is Adobe's Tech Note on making FLV files work by changing the MIME type in IIS.

CreativeCircle.com??

2009-03-17 Thread William Seiter
Has anyone heard of this recruiter firm before? I have been speaking to this company via email for about a week now and they are one of the only companies that I have come across that will not discuss the position that they have available, beyond the very generic job description, until I come

RE: CreativeCircle.com??

2009-03-17 Thread William Seiter
- From: William Seiter [mailto:will...@seiter.com] Sent: Tuesday, March 17, 2009 1:24 PM To: cf-jobs-talk Subject: CreativeCircle.com?? Has anyone heard of this recruiter firm before? I have been speaking to this company via email for about a week now and they are one of the only companies

RE: CreativeCircle.com??

2009-03-17 Thread William Seiter
I found 1 review for that office which described a company's experience with 'seth'. Do you have any personal experience with them? William -Original Message- From: ssl...@rubbergumball.net [mailto:ssl...@rubbergumball.net] Sent: Tuesday, March 17, 2009 10:34 AM To: cf-jobs-talk

RE: CreativeCircle.com??

2009-03-17 Thread William Seiter
] Sent: Tuesday, March 17, 2009 11:27 AM To: cf-jobs-talk Subject: RE: CreativeCircle.com?? They want to sign a contract that you willonly work with them which is a problem. -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Tuesday, March 17, 2009 1:49 PM To: cf

  1   2   3   4   >