RE: Update: error emails firing for no reason (I still need help)

2007-01-24 Thread Barthle, Robert \(Contractor\)
Government Solutions, Inc. 202-245-6484 [EMAIL PROTECTED] -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:53 PM To: CF-Talk Subject: RE: Update: error emails firing for no reason (I still need help) I've never seen that happen before but I'm

Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Barthle, Robert \(Contractor\)
Update: I have the cause for why this is happening. The reason is that the form processing page is calling itself mere seconds after it is first called. The second time around, the form field do not exist, and that's the reason for the error. The problem is, there is nothing in the code that

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Adkins, Randy
. Just a thought. I may be way off base but worth a look. -Original Message- From: Barthle, Robert (Contractor) [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:37 PM To: CF-Talk Subject: Update: error emails firing for no reason (I still need help) Update: I have the cause

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Bobby Hartsfield
I've never seen that happen before but I'm sure it's caused by some bad code (no offense) but without seeing some code, I doubt anyone can help unless they’ve seen the exact same thing happen. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Dave Watts
Update: I have the cause for why this is happening. The reason is that the form processing page is calling itself mere seconds after it is first called. The second time around, the form field do not exist, and that's the reason for the error. The problem is, there is nothing in the

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Russ
As was mentioned, try another browser. Also you don't have any weird programs like a web accelerator installed, do you? Russ -Original Message- From: Barthle, Robert (Contractor) [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:37 PM To: CF-Talk Subject: Update: error

Re: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Richard Cooper
I seem to remeber a colleague had a similar problem before (not 100% on this). I believe it was to do with the company proxy. Try a pc at an offsite location ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Russ
Try using httplook and see if the traffic is really coming from your browser. Russ -Original Message- From: Richard Cooper [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:48 PM To: CF-Talk Subject: Re: Update: error emails firing for no reason (I still need help) I

Re: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Claude Schneegans
But anywhere from 1-3 seconds later, a GET request is sent from the same IP address for the form submission page, and the listed referring page is the forms processing page. Would you have by any chance some onsubmit function that does a submit() on the form? That would cause the form to be

Re: Homesite+ update error

2003-02-19 Thread Patric Stumpe
Hi Critz, as far as I remember there are two Updaters for Homesite. One for the normal Homesite 5 - Homesite 5.2 and another for Homesite+ 5 - 5.2. Saw them at the HS-Support. Patric C oi CF-Talk,!! C My homesite+ started throwing errors, so I thought I would un/reinstall it... C now, I

Homesite+ update error

2003-02-18 Thread Critz
oi CF-Talk,!! My homesite+ started throwing errors, so I thought I would un/reinstall it... now, I am trying to run the 5.2 updater, and I get a valid version of homesite 5 was not found on this machine any ideas? Crit

update error

2002-04-18 Thread Judy
When I edit data in a form and click update, I get an error and cannot see why I'm getting it. The field name is spelled correctly as it is in the database. Error Diagnostic Information An error occurred while evaluating the expression: #form.title# Error near line 7, column 19.

Re: update error

2002-04-18 Thread Douglas Brown
: Judy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 9:23 AM Subject: update error When I edit data in a form and click update, I get an error and cannot see why I'm getting it. The field name is spelled correctly as it is in the database. Error Diagnostic

Re: update error

2002-04-18 Thread Jamie Jackson
Please post the pertinent form html. Jamie On Thu, 18 Apr 2002 12:23:22 -0400, in cf-talk you wrote: When I edit data in a form and click update, I get an error and cannot see why I'm getting it. The field name is spelled correctly as it is in the database. Error Diagnostic Information An

Re: update error

2002-04-18 Thread Judy
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 12:38 PM Subject: Re: update error Please post the pertinent form html. Jamie On Thu, 18 Apr 2002 12:23:22 -0400, in cf-talk you wrote: When I edit data in a form and click update, I get an error and cannot see why

Re: update error

2002-04-18 Thread Judy
Jamie, I just happened to think - are all these field names case sensitive when referring to them? If so, that could be my problem Judy - Original Message - From: Jamie Jackson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 12:38 PM Subject: Re: update

RE: update error

2002-04-18 Thread Mark A. Kruger - CFG
P.S. - looking at the debug information at the bottom of the page would show you this very clearly and quickly. -Original Message- From: Judy [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 12:03 PM To: CF-Talk Subject: Re: update error Jamie, I just happened to think

RE: update error

2002-04-18 Thread Mark A. Kruger - CFG
Judy, In your form tag is Method set to POST? If not, then all the form inputs are actually passed as URL parameters - not form parameters. Mark -Original Message- From: Judy [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 12:03 PM To: CF-Talk Subject: Re: update error

RE: update error

2002-04-18 Thread Dave Watts
I just happened to think - are all these field names case sensitive when referring to them? If so, that could be my problem No, they're not case-sensitive. Variables in CF are case-insensitive. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202)

Re: update error

2002-04-18 Thread Stephen Moretti
Judy, I just happened to think - are all these field names case sensitive when referring to them? If so, that could be my problem No CFs not particular about what cases you use in your variables. tdinput type=text name=Title value=#GetEventtoUpdate.Title# size=67 maxlength=255 Is there

Re: update error

2002-04-18 Thread Jamie Jackson
Jackson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 12:38 PM Subject: Re: update error Please post the pertinent form html. Jamie On Thu, 18 Apr 2002 12:23:22 -0400, in cf-talk you wrote: When I edit data in a form and click update, I get an error and cannot

Re: update error

2002-04-18 Thread Judy
Yes, it is. cfoutput query=GetEventtoUpdate form action=updateaction.cfm method=post input type=Hidden name=ID value=#ID#br - Original Message - From: Mark A. Kruger - CFG [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 1:11 PM Subject: RE: update error

RE: update error

2002-04-18 Thread Trusz, Andrew
? andy -Original Message- From: Judy [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 12:56 PM To: CF-Talk Subject: Re: update error Here's the form code in my updateform.cfm file. cfquery name=GetEventtoUpdate datasource=Events SELECT Events.Title, Events.InterDesc Here's

RE: weird insert/update error

2002-04-17 Thread Paul Ihrig
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 11:50 AM To: CF-Talk Subject: RE: weird insert/update error no. download the MDAC checker from MS (http://www.microsoft.com/mdac) and run it at the server console. christopher olive cto, vp of web development, vp it security atnet

RE: weird insert/update error

2002-04-17 Thread Craig Thomas
this help you at all?) -Craig Thomas -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 1:23 PM To: CF-Talk Subject: RE: weird insert/update error found the problem when i copied the files the data base to the server, the file permissions

RE: weird insert/update error

2002-04-17 Thread Paul Ihrig
Subject: RE: weird insert/update error I am receiving the same error message after migrating an app from my laptop (wok, CIF, Silk) to our dev box (same). Can you tell me what permissions needed to be reset/set? All seems to be in order. (I have also checked, per earlier comment, both MAC

RE: weird insert/update error

2002-04-17 Thread Craig Thomas
Thanks. -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 2:59 PM To: CF-Talk Subject: RE: weird insert/update error just right click on the database file you copied over. make sure the web client or what ever your server calls it has read

RE: weird insert/update error

2002-04-17 Thread Christopher Olive
To: CF-Talk Subject: RE: weird insert/update error just right click on the database file you copied over. make sure the web client or what ever your server calls it has read/write privileges to the db. that's it. -paul -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent

Update Error

2000-11-09 Thread Jeremy Toevs
I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this one just doesn't seem to work. Can you help me out? === Error Occurred While Processing Request Error Diagnostic Information ODBC

RE: Update Error

2000-11-09 Thread James Maltby
ehave" "Get Carter" 1964 -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: 09 November 2000 16:37 To: CF-Talk Subject: Update Error I recieved the following error and can not figure out how to fix it. My query looks just like the r

RE: Update Error

2000-11-09 Thread Simon Horwith
ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 09, 2000 11:37 AM To: CF-Talk Subject: Update Error I recieved the fo

Re: Update Error

2000-11-09 Thread Dylan Bromby
Message - From: "Jeremy Toevs" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 09, 2000 8:37 AM Subject: Update Error I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this o

RE: Update Error

2000-11-09 Thread Nardi, Gaston
maybe the "from" field, that is a reserved SQL word ? Greets, Gastón -Mensaje original- De: Jeremy Toevs [SMTP:[EMAIL PROTECTED]] Enviado el: Jueves 9 de Noviembre de 2000 13:37 Para: CF-Talk Asunto: Update Error I recieved the follo

Re: Update Error

2000-11-09 Thread pan
From: "Jeremy Toevs" [EMAIL PROTECTED] I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this one just doesn't seem to work. Can you help me out? === Error Occurred While Processing

Re: Update Error

2000-11-09 Thread Gregory Harris
PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 09, 2000 8:37 AM Subject: Update Error I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this one just doesn't seem to work.

RE: Update Error

2000-11-09 Thread Christopher Olive, CIO
you don't need ticks around valid if it's a yes/no field. chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 09, 2000 11:37 AM To: CF-Talk Subject: Update Error I

RE: Update Error

2000-11-09 Thread Craig M. Rosenblum
doesn't it need a name for the query? it would be helpful to know field typing. is this a form update? -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 09, 2000 10:37 AM To: CF-Talk Subject: Update Error I recieved the following error

Re: Update Error

2000-11-09 Thread Jamie Jackson
How's bout giving us the post-parse SQL in the debug output? J On Thu, 09 Nov 2000 08:37:26 -0800, in cf-talk you wrote: I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this one just doesn't seem to work. Can you

Re: Update Error

2000-11-09 Thread Lucy Walker
If your database is in Microsoft Access, I think that a yes/no field is actually numeric, so you don't need the single quotes around #valid#. No=0 and Yes=1 or -1. Lucy From: "Jeremy Toevs" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Update

Re: Update Error

2000-11-09 Thread Todd Ashworth
Isn't FROM a reserved SQL word? from='#from#', Todd Ashworth - Original Message - From: "Simon Horwith" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 09, 2000 12:45 PM Subject: RE: Update Error | try replacing : cfif isdefined

Re: Update Error

2000-11-09 Thread Deanna L. Schneider
Access reads a yes/no field as a 1 or a zero. Take your quotes off and pass a 1 for yes, or a zero for no. See if that helps. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103

Update Error 2

2000-11-09 Thread Jeremy Toevs
lto:[EMAIL PROTECTED]] Sent: 09 November 2000 16:37 To: CF-Talk Subject: Update Error I recieved the following error and can not figure out how to fix it. My query looks just like the rest of my other ones, but this one just doesn't seem to work. Can you help me out? ==

Re: Update Error

2000-11-09 Thread Todd Ashworth
Or .. if you *must* use FROM for a field name, put it in " " Todd Ashworth | I recieved the following error and can not figure out how to fix it. My | query looks just like the rest of my other ones, but this one just doesn't | seem to work. Can you help me out? | |

RE: Update Error

2000-11-09 Thread Simon Horwith
- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 09, 2000 2:30 PM To: CF-Talk Subject: Re: Update Error Isn't FROM a reserved SQL word? from='#from#', Todd Ashworth - Original Message - From: "Simon Horwith" [EMAIL PROTECTED] To: "CF-Talk&qu

Re: Update Error 2

2000-11-09 Thread Todd Ashworth
ying to do. This is in Sybase, but I assume it's the same for Access "from" = '#from#' Todd Ashworth - Original Message - From: "Jeremy Toevs" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 09, 2000 2:37 PM Subject: Update Error 2 Before

CFGRID UPDATE ERROR:

2000-06-06 Thread Angél Stewart
SQL operation updated no rows. The SQL operation UPDATE affected no rows.Either the Key value has changed or the row has been deleted. Refresh the grid and try again. Data Source = "paging" SQL = "UPDATE `subs2000` SET `MetrocallID` = ? , `Activate` = ? WHERE `ID` = ? AND `MetrocallID` = ?