Re: ajax cfc

2006-12-03 Thread Robertson-Ravo, Neil (RX)
And if you don't use FF or use Firebug, you can use Fiddler. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential

Re: ajax cfc

2006-12-03 Thread Duncan
Interestingly all of our CFC methods we use with ajaxCFC are private: cffunction name=getClients output=no access=private The ajax.cfc that you are extending has a init method that is remote. On 12/3/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: And if you don't use FF or use

Re: ajax cfc

2006-12-03 Thread James Holmes
If you have an init() function in your CFC you are overriding the init() method in teh ajax cfc. So no, you can't have your own init() method. On 12/3/06, Dan Vega [EMAIL PROTECTED] wrote: hmm thanks for the advice! I did some digging and this is what I am getting.

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Jochem van Dieten
Daniel Roberts wrote: I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? No. Coding Tip Discover methods used by HostMySite's CFMX gurus to address your common coding and performance issues. Stop by the Developers'

Re: More reasons to hate Internet Explorer

2006-12-03 Thread Jochem van Dieten
John C. Bland II wrote: What version are they referring to? The problem has been in IE since version 4. Jochem ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
Well, I would imagine that they are saying this for good reasons. Most of us as developers do not see the impact of exclusive locks, or at least not enough to notice a difference in performance. It is possible that as a hosting company running several shared servers that the impact would be far

Re: More reasons to hate Internet Explorer

2006-12-03 Thread Rick Root
Jochem van Dieten wrote: John C. Bland II wrote: What version are they referring to? The problem has been in IE since version 4. That's why we get lots of spam with attached images that don't render (those of us that use Thunderbird at least don't see them!) Rick

Sql aggregate woes

2006-12-03 Thread Terry Troxel
I am having a senior moment and could use some help with a sql select query I am attempting to use to populate a listbox with only those items that have inventory. SELECT DISTINCT inventory.ItemNumber, SUM(inventory.qty) as invqty where invqty 0 And I get the error I am not using 'ItenNumber'

Re: memory issue with session scope in custom tags?

2006-12-03 Thread James Holmes
No, because a session lock works only for the session in question, not the whole server. On 12/3/06, Doug Brown [EMAIL PROTECTED] wrote: Well, I would imagine that they are saying this for good reasons. Most of us as developers do not see the impact of exclusive locks, or at least not enough

RE: Sql aggregate woes

2006-12-03 Thread Sandra Clark
SELECT DISTINCT inventory.ItemNumber, SUM(inventory.qty) as invqty where invqty 0 GROUP BY inventory.ItemNumber. All items not aggregated in a select must be also placed in a Group By Clause. Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets

Re: Sql aggregate woes

2006-12-03 Thread Dina Hess
select distinct i.itemnumber sum(i.qty) as invqty from [your inventory table name here] i group by i.itemnumber having sum(i.qty) 0 On 12/3/06, Terry Troxel [EMAIL PROTECTED] wrote: I am having a senior moment and could use some help with a sql select query I am attempting to use to

Re: Sql aggregate woes

2006-12-03 Thread Jim Wright
Terry Troxel wrote: I am having a senior moment and could use some help with a sql select query I am attempting to use to populate a listbox with only those items that have inventory. SELECT DISTINCT inventory.ItemNumber, SUM(inventory.qty) as invqty where invqty 0 And I get the error I

Re: Sql aggregate woes

2006-12-03 Thread Jim Wright
Jim Wright wrote: SELECT inventory.ItemNumber, SUM(inventory.qty) as invqty FROM inventory GROUP BY inventory.ItemNumber HAVING SUM(inventory.qty) 0 oops...told you to take the DISTINCT out, and then left it in...see above.

CFHTTP Local Call Timeout Problem

2006-12-03 Thread Oğuz Demirkapı
Hi, I have a strange problem on one of my CFHTTP call. I have 2 servers as SA and SB and 2 pages P1 and P2 on both server. SA - P1 P2 SB - P1 P2 When I call SB P2 on SA P1 with a CFHTTP call, it works. When I call SA P2 on SB P1 with a CFHTTP call, it works. When I call SA P2 on SA P1 with a

RE: Sql aggregate woes

2006-12-03 Thread Terry Troxel
Thanks all of you. Wow, I really enjoy this list when you all pitch in and help each other like you just did. Really Appreciate it. Terry -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Sunday, December 03, 2006 8:20 AM To: CF-Talk Subject: Re: Sql aggregate woes

Re: Sql aggregate woes

2006-12-03 Thread Dina Hess
:) know the feeling, jim...i completely overlooked the distinct, left out a comma between the fields, and left out the table name even though it was right there...lol. all of this snow up here must be affecting my brain cells...all 2 of them. oh, well, at least terry got some valuable feedback on

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
The session scope is a memory variable as you know, and therefore affects the whole system, and any other applications that are running on that system. When you use an exclusive lock, you are infact tying up that small portion of system ram until which time that lock releases and obtains another

Qry help...

2006-12-03 Thread Ken Ferguson
I'm having a small query brain-fart that I can't seem to overcome. It's not that difficult, but I keep screwin' it up. Given three tables with relationships such as these: *Incidents incID *People personName incID *ToolsUsed toolID incID The tools used will either have some id in it or

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Matt Robertson
On 12/3/06, Doug Brown [EMAIL PROTECTED] wrote: The session scope is a memory variable as you know, and therefore affects the whole system, and any other applications that are running on that system. Nowadays (post CFMX) this is only true in the sense that a memory variable eats a finite

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
Amen... I would further argue that since the rest of the CF coding world hasn't heard of this supposed limitation that such a lack is telling on the validity of the claim... Frankly this sounds like advice from back in the CF 4.x days when there were far greater issues involved with

software for converting Charesets

2006-12-03 Thread Ali Majdzadeh
Hi: I need to change charset of some text documents. In fact I need to convert the charset of a UTF-8 text into windows-1256 text. Do you know any software that can do it? Thanks Benign ~| Introducing the Fusion Authority

Re: Training Videos For ColdFusion

2006-12-03 Thread Matt Robertson
Qarbon's ViewletCam is a super-cheap Captivate-like product and lets you edit your timeline. So if you do stuff like wait 30 secs for your web screen to respond you can edit that all out, then put in balloons pointing to items of interest etc. Also lets you doa sound track over the video. We've

Re: Qry help...

2006-12-03 Thread Jim Wright
Ken Ferguson wrote: So, I'd like to see: John - 40% - 5 incidents Sue - 50% - 4 incidents Try something like this... SELECT p.personName,(SUM(CASE t.tool WHEN '-5' THEN 100 ELSE 0 END)/count(t.tool)) as notoolpercent FROM People p INNER JOIN ToolsUsed t ON p.IncID = t.IncID GROUP BY

Re: stored procedures and mysql

2006-12-03 Thread Richard White
thanks greg, yes my hair is now growing back as we speak :) and unfortunately for our company i am the DBA :) In fact me and my business partner are the DBA's, programmers, designers, marketers, salesman etc.. but thanks to all you guys on this site we are are getting better at other things,

RE: software for converting Charesets

2006-12-03 Thread Paul Vernon
I need to convert the charset of a UTF-8 text into windows-1256 text. Do you know any software that can do it? Technically, you aren't converting character sets, rather you are converting your strings between codepages. If you are an a Windows server CFX_CharConv will provide you access to

RE: Qry help...

2006-12-03 Thread Ken Ferguson
That's the one. Outstanding - thank you very much sir. Thanks, Ferg -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Sunday, December 03, 2006 1:09 PM To: CF-Talk Subject: Re: Qry help... Ken Ferguson wrote: So, I'd like to see: John - 40% - 5 incidents Sue

Re: software for converting Charesets

2006-12-03 Thread Ali Majdzadeh
In fact I did it one time before with EditPad Pro. I reinstalled my windows xp and now I can not do it! Last time it worked just fine and this time it doesn't let me do it!!! I am really confused! Thanks Benign ~| Introducing

Re: software for converting Charesets

2006-12-03 Thread Jon Clausen
Ali, I assume, since you posted this on CF-Talk, you're doing something with this in Coldfusion. Why can't you simply convert the strings or the entire document using CF? cfscript function reEncode(data){ var binary = charsetDecode(data,UTF-8); var string =

Another DDOS attack on CT??

2006-12-03 Thread Tim Laureska
Having a hard time with Crystaltech servers again this evening.. anybody experiencing the same? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

RE: Another DDOS attack on CT??

2006-12-03 Thread Eric J. Hoffman
Not on the ded side. Our DNS isn't there, so I can't tell from thatbut the main segment we are on is fine. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www:

Updating several records at one time

2006-12-03 Thread terry thon
I am having difficulting updating several records on a form into my database. I know how to cfupdate one record at a time. Form 1 : List of standard tasks for projects: taskid, laborcode,task, manhrs, nostaff I would like to have a form with a checkbox where checked the task would be removed

Re: Problem with Lyla Captcha

2006-12-03 Thread Jason Radosevich
That was the problem.. Would help if i read all documentation.. Thanx. On 12/1/06, Jon Clausen [EMAIL PROTECTED] wrote: Do you have your outputDirectoryIsRelative value set to true? Should be false if you're using a full path in the outputDirectory config. Jon On Dec 1, 2006, at 4:32

Re: Another DDOS attack on CT??

2006-12-03 Thread Will Tomlinson
Having a hard time with Crystaltech servers again this evening.. anybody experiencing the same? Things appear ok on *my* shared server... Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

list / array problems, scheduling problem

2006-12-03 Thread mayo
I'm having a hell of a time building an employee scheduling calendar. - Employer has several locations, employees may work at more than one location. - There will usually be more than one employee per location. - Employer is looking for a scheduling calendar that can show the month and list