Re: Code Review?

2010-02-11 Thread Glyn Jackson
yep the error was because of a users firewall not sending the http_referer so the value was - which mid function does not like. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

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: Code Review?

2010-02-10 Thread Jason Fisher
All this code is doing is setting 2 variables, based on values that existed in the user's previous request, as tracked in cgi.http_referer. referer_itemID: holds the value of a url param called item_id: or '0' if the param is invalid or missing or '-1' if there is already a variable called

re: Code Review?

2010-02-10 Thread Al Musella, DPM
Does it always cause an error or just sometimes? If it is sometimes, it might be the browser not sending the http_referer.. try using cfparam on it. At 12:23 PM 2/10/2010, you wrote: All this code is doing is setting 2 variables, based on values that existed in the user's previous request,

RE: Code Review?

2010-02-10 Thread brad
CGI scoped variables always exist. #cgi.I_like_cheese_burgers# should return an empty string-- unless of course, there is a web server out there that implements that variable. :) ~Brad Original Message Subject: re: Code Review? From: Al Musella, DPM muse

Re: Code Review?

2010-02-10 Thread Charlie Stell
, there is a web server out there that implements that variable. :) ~Brad Original Message Subject: re: Code Review? From: Al Musella, DPM muse...@virtualtrials.com Date: Wed, February 10, 2010 12:17 pm To: cf-talk cf-talk@houseoffusion.com Does it always cause an error

RE: Code Review

2006-03-16 Thread Kevin Aebig
Probably 3/4 of the people on this list are more than qualified, depending on what specifically you're looking for. !k -Original Message- From: Mehdi, Agha [mailto:[EMAIL PROTECTED] Sent: March 16, 2006 1:53 PM To: CF-Talk Subject: Code Review Hi Guys, We need to have ColdFusion code

Re: Code Review

2006-03-16 Thread Michael Traher
We use brainbench http://www.brainbench.com/xml/bb/business/hiring/hireemployees.xml for all our candidates as a first test, followed by a practical test at the interview (we get them to write some code). The brainbench test gives an accurate assessment of CF knowledge and is time limited. On

RE: Code Review

2006-03-16 Thread Mehdi, Agha
through the application and point out deficiencies (if any). Thanks Agha Mehdi IDT - eBusiness Program Manager -Original Message- From: Michael Traher [mailto:[EMAIL PROTECTED] Sent: Thursday, March 16, 2006 1:18 PM To: CF-Talk Subject: Re: Code Review We use brainbench http

Re: Code Review

2006-03-16 Thread Jerry Johnson
Does Allaire/Macromedia/Adobe still have a unit that does this? Didn't Allaire have a testing facility and engineers available? On 3/16/06, Mehdi, Agha [EMAIL PROTECTED] wrote: Michael, I don't want experienced analysts go through the brainbench test. One of our vendors developed our

Re: Code Review

2006-03-16 Thread Michael Traher
] Sent: Thursday, March 16, 2006 1:18 PM To: CF-Talk Subject: Re: Code Review We use brainbench http://www.brainbench.com/xml/bb/business/hiring/hireemployees.xml for all our candidates as a first test, followed by a practical test at the interview (we get them to write some code

RE: Code Review

2006-03-16 Thread Munson, Jacob
You might check out About Web, or contact Simon Horwith directly. I've heard him mention that their company does code reviews. -Original Message- From: Mehdi, Agha [mailto:[EMAIL PROTECTED] Sent: March 16, 2006 1:53 PM Hi Guys, We need to have ColdFusion code for one of our

RE: Code Review

2006-03-16 Thread Munson, Jacob
Here's Simon's blog: http://www.horwith.com/ -Original Message- From: Munson, Jacob Sent: Thursday, March 16, 2006 4:31 PM You might check out About Web, or contact Simon Horwith directly. I've heard him mention that their company does code reviews. -Original

Re: Code Review

2006-03-16 Thread Adam Churvis
Agha, We not only perform application analysis, we also have a full load testing lab complete with hardware load balanced cluster and multiple database servers. Just let us know if you're interested. Respectfully, Adam Phillip Churvis Certified Advanced ColdFusion MX 7 Developer

RE: Code review, PLEASE

2001-03-19 Thread Paul Ihrig
input type="hidden" name="id" value="selectcandidate" doesn't the value need # symbols? -paul Web Developer, NBBJ Work: [EMAIL PROTECTED] 614 241-3534 fax:614 485-5534 Home: [EMAIL PROTECTED] 614 449-1681 icq: 47658358 -Original Message- From: Mike

RE: Code review, PLEASE

2001-03-19 Thread Phoeun Pha
It would be best if u can tell us what the problem is and what ua re tyring to get the page to do. then i can understand the code better -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 1:27 PM To: CF-Talk Subject: Code review, PLEASE I have

Re: Code review, PLEASE

2001-03-19 Thread Mike
Sorry bout that: This is the error Error Occurred While Processing Request Error Diagnostic Information ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement. The error occurred while

RE: Code review, PLEASE

2001-03-19 Thread Savan Thongvanh
glad you said that, i was feeling kind of dense "Dylan Bromby" [EMAIL PROTECTED] on 03/19/2001 01:39:53 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc:(bcc: Savan Thongvanh/DSM/Seabury) Subject: RE: Code review, PLEASE why don't you p

Re: Code review, PLEASE

2001-03-19 Thread Mike
This is what I get now with the ## Error Occurred While Processing Request Error Diagnostic Information Expression result cannot be converted to a string Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must evaluate to a value that can be converted to a string

Re: Code review, PLEASE

2001-03-19 Thread Greg Wolfinger
whats the error that you are getting with this code? - Original Message - From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 19, 2001 2:26 PM Subject: Code review, PLEASE I have to be missing something: and I cant put my mouse on it !DOCTYPE HTML

RE: Code review, PLEASE

2001-03-19 Thread Hayes, David
selectCandidate is your query name; a query can't be converted to a string. You may want one of your query column names instead. -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I

RE: Code review, PLEASE

2001-03-19 Thread Robert Long
I don't see any query that is updating anything in the code you sent. -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 1:51 PM To: CF-Talk Subject: Re: Code review, PLEASE Sorry bout that: This is the error Error Occurred While Processing Request

RE: Code review, PLEASE

2001-03-19 Thread Howarth, Craig (IBK-NY)
iginal Message- From: Mike [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 3:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I get now with the ## Error Occurred While Processing Request Error Diagnostic Information Expression result cannot

RE: Code review, PLEASE

2001-03-19 Thread Robert Long
ue="#id" ... rest of code... /cfoutput -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 2:01 PM To: CF-Talk Subject: Re: Code review, PLEASE This is what I get now with the ## Error Occurred While Processing Request Error Diagnostic In

RE: Code review PLEASE

2001-03-15 Thread Sicular, Alexander
change mawrows = 1 to something else, like user definable. Alexander Sicular Technical Director, Information Technology The Neurological Institute of New York Columbia University 212.305.1318 [EMAIL PROTECTED] -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday,

Re: Code review PLEASE

2001-03-15 Thread Mike
Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael "Cami Lawson" [EMAIL PROTECTED] wrote in message 010001c0ad87$6836dcb0$[EMAIL

Re: Code review PLEASE

2001-03-15 Thread Deanna L. Schneider
Are you trying to have the user page through one record at a time? Cause that's what you're going to get with this. You'll only ever get one user whose id equals the passed id ---snip--- WHERE ID=#ID# What I think you want is something like the following (quickly cut from existing code, so

RE: Code review PLEASE

2001-03-15 Thread Stephenie Hamilton
, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael "Cami Lawson" [EMAIL PROTEC

Re: Code review PLEASE

2001-03-15 Thread David E. Crawford
From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 14:46 Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see

Re: Code review PLEASE

2001-03-15 Thread Mike
OK my miss understanding, another developer showed me the prev and next code and when they did, they told me that I didnt need the max rows anymore. Although I question why it worked fine on the local machine and not when posted? THANK YOU MICHAEL egg on my face "Cami Lawson" [EMAIL

RE: Code review PLEASE

2001-03-15 Thread Douglas Malcolm
t a string, and is in fact a number after you increment it. Douglas Malcolm -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 11:47 AM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine,

Re: Code review PLEASE

2001-03-15 Thread Judith Campbell
At 02:46 PM 3/15/01 -0500, you wrote: Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael The problem isn't with maxrows, it's with ID. the cfparam statement isn't

RE: Code review PLEASE

2001-03-15 Thread Adkins, Randy
Put CFOUTPTUT around the CFSET for your NEXT/PREV variables Your MAXROWS=1 is fine -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works

Re: Code review PLEASE

2001-03-15 Thread Jason Lotz
Take maxrows out of the cfquery and add it to the cfoutput along with a startrow attribute. Jason - Original Message - From: "Mike" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 12:46 PM Subject: Re: Code review PLEASE Your t

Re: Code review PLEASE

2001-03-15 Thread Mike
logies, Inc. want CF_Freedom? try CFXHosting.com -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the m

Re: Code review PLEASE

2001-03-15 Thread Jon Hall
Mike do a little debugging on the host. What is the value of #nextid# and #previd# on the page? When you click next on the host, does it show the first record everytime? Does the url always say default2.cfm?ID=2 ? If so, it's obvious that the sql statement is not picking up the url variable and

Re: Code review PLEASE

2001-03-15 Thread Mike
, March 15, 2001 2:47 PM To: CF-Talk Subject: Re: Code review PLEASE Your the second one to say that, but locally everything works fine, if I turn the max rows off then I will see all the records and I only want to see one record at time Michael "Cami Lawson" [EMAIL

Re: Code review PLEASE

2001-03-15 Thread Mike
THank You Jon, I am trying some of what other's here on the list suggested also. Michael "Jon Hall" [EMAIL PROTECTED] wrote in message 028701c0ad91$fd121de0$a41f88d8@ns2">news:028701c0ad91$fd121de0$a41f88d8@ns2... Mike do a little debugging on the host. What is the value of #nextid# and