Re: Problems with 64 bit ColdFusion 8 on 64 bit Vista IIS7

2008-05-17 Thread Nathan Strutz
Everyone, thanks for the help. I would have replied sooner, but, oh wow, what a bad week :( Asha, your item # 3 was exactly the problem. I did not have the IIS 6 compatibility stuff installed. I didn't realize that was important... Strange that it's required to make the connector work with IIS 7.

cfqueryparam maxlength

2008-05-17 Thread Richard White
hi i have set my cfgueryparam's maxlength value to the length in the database. for example first name in the db is varchar 20 - so when i query it i code it to say where firstName = cfqueryparam ... maxlength=20.. but when i pass in a first name of exactly 20 characters, it displays an error

terminating cfthread

2008-05-17 Thread Richard White
Hi when using cfthread, when it has finished doing its job and we no longer need it, do we have to write in our code to destroy / terminate it, or does it automatically do it itself. i have noticed that when some cfthreads are done, it seems to appear as if they are still running in the

Re: What's wrong with this query?

2008-05-17 Thread Claude Schneegans
So image name conflict won't be a problem. I see, then checking in the query is your solution. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

RE: Scratching my head over this one

2008-05-17 Thread Mark Kruger
Toby, To be clear Once you click on the link that hits the security system your CF application is no longer in play. You are hitting a different server/application at that point. So the question is, what port are you hitting on that COP system? It looks like (from your code below) that it

RE: terminating cfthread

2008-05-17 Thread Dave Watts
when using cfthread, when it has finished doing its job and we no longer need it, do we have to write in our code to destroy / terminate it, or does it automatically do it itself. Unless you need the results of the thread to use back in your original thread, you shouldn't have to do anything

cfimage in cf8 update 1 retains IPTC metadata?

2008-05-17 Thread Richard Steele
I see that this tag now will retain the EXIF metadata upon resizing an image. Will it also retain the IPTC information? Hopefully it will as it is extremely important to keep the photographer's name associate with an image. If not, is there some imagesizer that will? Thanks in advance.

Re: writing to ms excel with jexcel

2008-05-17 Thread denstar
the stuff I did with jexcelapi is here: http://code.google.com/p/cfjexcel/ there's rudimentary formula stuff and whatnot, might be something useful in there to rip. :denny -- Any sufficiently advanced technology is indistinguishable from magic. Arthur C. Clarke

Re: Scratching my head over this one

2008-05-17 Thread Jon Clausen
Don't you want that link to be: a href=http://192.168.0.100;view cameras/a You'll need to route to an externally available IP if you want to access that network location from anywhere other than the network, though. 192.* network address will only resolve to the same network

RE: Google Conversion Tracking for Shooping Cart

2008-05-17 Thread Adrian Lynch
Hey mike, you haven't said what the problem is. If it's the JS that's erroring, view the source of the page and see what's being returned to the browser. It might need some double quotes around the value you're outputting or it might be that the value is empty. Adrian

RE: cfqueryparam maxlength

2008-05-17 Thread Adrian Lynch
Short of looking at it myself, I'd double check the value you're using isn't 21 in length maybe because of a space. Above the cfqueryparam, output Len(yourValue). Or try trimming. Adrian http://www.adrianlynch.co.uk/ -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent:

HElp getting completion in coldfusion

2008-05-17 Thread erik tom
I have the task where I need to check the people completion based on what Quater the enter the program. For example the Q1 required to have Level2 classes to be completed with the passing score of 80% Q2 classes required to complete by the end of the Q2. So if the perosn enter the program in

Re: cfqueryparam maxlength

2008-05-17 Thread Richard White
Short of looking at it myself, I'd double check the value you're using isn't 21 in length maybe because of a space. your absolutely right, i had a space - which brought me to an error in another part of my code!!! thanks very much adrian

Re: terminating cfthread

2008-05-17 Thread Richard White
I'm not exactly sure how CF works with these threads, but I wouldn't be surprised if they're pooled just like CF's regular threads - a set number are created at startup, and none are created or destroyed at runtime. So, all of them should be running in the background, but they should be doing very

Re: Format Tables (Was RE: CF to excel)

2008-05-17 Thread erik tom
Can you show us the looping code? It's probably an error in reusing too much of the sample code --- Janine Jakim [EMAIL PROTECTED] wrote: Thanks for all the input. Now for the next question. I am having a hard time formatting my html table correctly. I am using TRTH#Skill[1]#/TH

Re: cfimage in cf8 update 1 retains IPTC metadata?

2008-05-17 Thread Richard Steele
I see that this tag now will retain the EXIF metadata upon resizing an image. Will it also retain the IPTC information? Hopefully it will as it is extremely important to keep the photographer's name associate with an image. If not, is there some imagesizer that will? Thanks in advance.

RE: terminating cfthread

2008-05-17 Thread Dave Watts
thanks dave, the reason i say it appears as if they are running in the background is because when i run the page and the threads are being started and processing, i notice my jrun processing shooting right up, which is fine, the threads are then joined, their data merged and the page

secure ftp with HomeSite 5.5

2008-05-17 Thread Colman, Richard
Does anyone know if HomeSite 5.5 supports secure ftp connections? Rick Colman ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: secure ftp with HomeSite 5.5

2008-05-17 Thread Gerald Guido
It supports SSL. I have never used it though. Go to the file tab and select: Macromedia FTP RDS Add FTP server There will be a dialog for Configure SSL hth G On Sat, May 17, 2008 at 6:03 PM, Colman, Richard [EMAIL PROTECTED] wrote: Does anyone know if HomeSite 5.5 supports secure ftp

Can't extend sessionTimeout longer than 30 minutes

2008-05-17 Thread Will Tomlinson
CF8 here, using Application.cfc CF admin shows the maximum session timeout as 2 days. The default session timeout is 30 minutes. So far so good. My client asked that I allow is site to have a 2 hour session. So I simply changed the this scope variable in Application.cfc to: cfset

Re: Can't extend sessionTimeout longer than 30 minutes

2008-05-17 Thread Will Tomlinson
Disregard this one. I figured it out. I forgot to check the Application.cfc in my admin subdirectory. ITS timeout was still set to 20 minutes. :) Thanks, Will ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: terminating cfthread

2008-05-17 Thread Richard White
ok thanks ill do that thanks dave, the reason i say it appears as if they are If you have Enterprise or Developer, you should take a look at it in the server monitor. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training: Adobe/Google/Paperthin Certified Partners

How do I use order by for this?

2008-05-17 Thread Rick Faircloth
Hi, all... I need to have my client's properties show up first in a list with other companies. How would I use order by or group, etc., to get their properties first? It can't be alphabetically or numerically. Their name is not the first alphabetically. And even if it were, another company

Re: How do I use order by for this?

2008-05-17 Thread Will Tomlinson
Is there a way to do this in the code or should I just add an order_by field to the db (MySQL 5) and just put 1 in their field and leave everyone else's field null? (This sounds reasonable and simple enough) Thoughts? Dude, I've hadda few long islands tnight, but I'd use an orderby field like

RE: How do I use order by for this?

2008-05-17 Thread Rick Faircloth
I was until last week. :o) Thanks, Will! -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Saturday, May 17, 2008 8:23 PM To: CF-Talk Subject: Re: How do I use order by for this? Is there a way to do this in the code or should I just add an order_by

Re: JMS ActiveMQ

2008-05-17 Thread James Holmes
On Sat, May 17, 2008 at 3:55 AM, Adam Haskell wrote: Dependency conflicts are a fact of life as far as I have found. These can usually be avoided by getting everything into a classloader and calling the classes from that. -- mxAjax / CFAjax docs and other useful articles:

Is this possible - and the best way possible

2008-05-17 Thread Toby King
Hi all I have a database table which stores data for completed personal training sessions during completed shifts at a gym. What I have been asked to do is to provide management with a report showing a break down of the number of training sessions per hour during a given shift. I have been

Re: Is this possible - and the best way possible

2008-05-17 Thread Mike Chabot
That is definitely possible and the method of display you suggested seems good to me. A graph would be a nice touch. The decision of how best to display the data might rest with the person who has to view it. -Mike Chabot On Sat, May 17, 2008 at 10:34 PM, Toby King [EMAIL PROTECTED] wrote: Hi

Re: Is this possible - and the best way possible

2008-05-17 Thread Toby King
That is definitely possible and the method of display you suggested seems good to me. A graph would be a nice touch. The decision of how best to display the data might rest with the person who has to view it. -Mike Chabot On Sat, May 17, 2008 at 10:34 PM, Toby King [EMAIL PROTECTED] wrote: OK

Re: freelance cf web developer wanted

2008-05-17 Thread James Holmes
Why would someone state that an offsite telecommuter must use CFEclipse as their development platform? If someone wants to code in vi or notepad, surely that's their problem and not the contracting company's? On Sat, May 17, 2008 at 4:40 AM, site mgt [EMAIL PROTECTED] wrote: Hello, Looking

Re: freelance cf web developer wanted

2008-05-17 Thread Jeffry Houser
If someone I was hiring was using Notepad as their primary editor, I'd be very cautious; because I believe that IDEs (such as CFEclipse or Dreamweaver) save time on my dime. But, I wouldn't be forcing a vendor to use a specific IDE. I think from a legal stand point there is very little the

Re: freelance cf web developer wanted

2008-05-17 Thread Phillip M. Vector
Jeffry Houser wrote: If someone I was hiring was using Notepad as their primary editor, I'd be very cautious; because I believe that IDEs (such as CFEclipse or Dreamweaver) save time on my dime. But, I wouldn't be forcing a vendor to use a specific IDE. *nods* There ARE some notepad

Re: freelance cf web developer wanted

2008-05-17 Thread Aaron Rouse
Crud, guess I better take notepad off my resume ;) Aren't most job descriptions written by people who typically are in ignorance of how the work is actually done? Most of the descriptions that I pay attention too certainly give me that impression at least. On Sat, May 17, 2008 at 9:24 AM,

Re: freelance cf web developer wanted

2008-05-17 Thread James Holmes
Yes, this is what I was getting at - the fact the SVN happens to be part of Eclipse doesn't preclude someone with DW and TortoiseSVN from being productive (sure, notepad may not be the best tool :-) On Sat, May 17, 2008 at 10:24 PM, Jeffry Houser [EMAIL PROTECTED] wrote: If someone I was hiring

Re: freelance web developer

2008-05-17 Thread [BWW] Ravi Gehlot
Hello, I am interested in your job position but first I would like to know what the compensation is then we could talk further. I am available for 20 hours a week. Can you send me a job description in more details? I have been programming in ColdFusion for almost 3 years now. I feel pretty

Re: freelance web developer

2008-05-17 Thread Phillip M. Vector
Hey Ravi... Few things.. 1) You are responding on the talk list.. Not the Jobs list.. 2) Emails like this should be sent directly to the client. 3) Asking for the rate of pay before giving your resume is... tacky IMHO. [BWW] Ravi Gehlot wrote: Hello, I am interested in your job position but

Re: freelance web developer

2008-05-17 Thread [BWW] Ravi Gehlot
Hey Phillip, Please accept my apologizes. I made a mistake. Should have e-mailed that person not the list. Ravi. On Sat, May 17, 2008 at 11:22 AM, Phillip M. Vector [EMAIL PROTECTED] wrote: Hey Ravi... Few things.. 1) You are responding on the talk list.. Not the Jobs list.. 2)

Re: freelance web developer

2008-05-17 Thread sherri sonnier
Once again, someone has to point out that a poster made a mistake by sending to the entire list. Oh well On 5/17/08, Phillip M. Vector [EMAIL PROTECTED] wrote: Hey Ravi... Few things.. 1) You are responding on the talk list.. Not the Jobs list.. 2) Emails like this should be sent directly

Re: freelance web developer

2008-05-17 Thread Phillip M. Vector
Sorry. You made a mistake. ;) (hehehe.. just kidding) sherri sonnier wrote: Once again, someone has to point out that a poster made a mistake by sending to the entire list. Oh well On 5/17/08, Phillip M. Vector [EMAIL PROTECTED] wrote: Hey Ravi... Few things.. 1) You are responding