Re: would you consider this a bug, CF8

2009-04-03 Thread JJ Cool
what if someone else wants the default behavior of adding only the month, no change in day? If the function worked the way you want it, I would have to program a kludge around getting the day to be the same. Why should it assume I want the last day of the month? I could understand if the

Apache Roller on JRun

2008-12-04 Thread JJ Cool
Has anyone deployed Apache Roller http://roller.apache.org/ on a ColdFusion installation? I'm wondering how to install and configure it for JRun but I've found no luck with a google search on the topic. ~| Adobe® ColdFusion® 8

Re: Javascript function not defined

2008-04-28 Thread JJ Cool
You have a missing semicolon behind xmlHttp=GetXmlHttpObject(). Besides that, I don't see GetXmlHttpObject or stateChanged defined. If those issues are fixed, does it work? CoolJJ - Original Message From: Phillip Vector [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent:

Re: Javascript function not defined

2008-04-28 Thread JJ Cool
I assumed stateChanged was a variable. If it is a function call, need the parenthesis. xmlHttp.onreadystatechange=stateChanged(); Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try

Re: Javascript function not defined

2008-04-28 Thread JJ Cool
The code you pasted works fine for me as long as the span is there. script type=text/javascript // Set variable for AJAX var xmlHttp; // Load in the AJAX object based on what browser you have function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari

cfinput datefield, I want the navigator, how?

2008-04-24 Thread JJ Cool
Does anyone know if it is possible to change/override the cfinput datefield so that the calendar shows the navigator as described here: http://developer.yahoo.com/yui/calendar/#calendarnavigator ? ~| Adobe® ColdFusion® 8

Re: How Much for a Cold Fusion Web developer.

2008-01-23 Thread JJ Cool
Another place to get average starting salaries is http://www.indeed.com/salary. The data here is based on job listings that include salary in the description, so you get a better idea of starting salaries than you would get from salary polls. CooLJJ

Re: Too Few Parameters, expected 1

2008-01-23 Thread JJ Cool
Whenever I see this error message in database queries to an MS Access DB, and it appears that everything is correct with the query, it is most likely due to using reserved words or functions in Microsoft's implementation of SQL. If you don't want to make changes to the database, then surround

Re: Session Hijacking Curiosity

2007-09-26 Thread JJ Cool
Ok, i'm skeptical. Are you absolutely positive that the header request being sent to the web server has the modified CFID and CFTOKEN? Have you used webscarab or a similar proxy to capture requests and modify them? Also, does this occur if you clear the CFID and CFTOKEN, and then hijack the

POI Utility getBytes() causes Excel to crash

2007-08-17 Thread JJ Cool
Here is a little test snippet below. If I wanted to just send the excel file to the browser without reading the C:\MyTestFile1.xls with cffile and then send it, how would I do it. The getBytes() function appears to be returning a truncated Excel file. If I dump an arraylen for the getBytes()

Re: POI Utility getBytes() causes Excel to crash

2007-08-17 Thread JJ Cool
According to the API getBytes() returns just the HSSF portions of the XLS file. So I suspect that's your problem. If you're already saving the file to disk, why not use cfcontent's file attribute. If you don't want to save it to disk, try using a ByteArrayOutputStream instead. Thank

Re: POI Utility getBytes() causes Excel to crash

2007-08-17 Thread JJ Cool
If you're already saving the file to disk, why not use cfcontent's file attribute. That portion of the test code was just so I could compare an ArrayLen() of file with the getBytes(). What I really intended to do was store the created excel file in a variable and use that with cfcontent. I

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread JJ Cool
To be honest, the difference between $3,000/CPU and $3,750/CPU is pretty negligible in an enterprise world. I would agree here. The cost of the server is pretty minor compared to the cost of everything else that goes into building an enterprise environment. Especially when you consider the

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread JJ Cool
Rick... You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle. There might be a few people that would be convinced by your (compelling) arguments. But most people are going to see that price tag and not even BOTHER reading the rest

Re: Model Glue - Fusebox - Mach II ...... Looking for Opinions

2007-07-23 Thread JJ Cool
I am looking for several opinions on all these frameworks and any others. Currently we are trying to figure out which one(s) we need to focus on evaluating so start a plan to port our current system into a framework. Our current system is basically a ton of cfincludes with the data

Re: High CPU usage on HouseOfFusion.Com

2007-06-21 Thread JJ Cool
I confirm that it is happening on my WinXP machine too with both IE 7 and FF 2.0.0.4. No problems with Opera 9.21. Also occurs on Ubuntu 7.04 with FF 2.0.0.4, but not Opera 9.21. CoolJJ I can confirm that, on XP Pro Firefox 1.5. -- Josh - Original Message - From: Jim Rising [EMAIL

Re: High CPU usage on HouseOfFusion.Com

2007-06-21 Thread JJ Cool
I also just noticed that the developercircuit widget is not working in Opera. CoolJJ I can confirm that, on XP Pro Firefox 1.5. -- Josh - Original Message - From: Jim Rising [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, June 21, 2007 9:54 AM Subject: High

Re: SLQ Injection on CF7 Site

2007-06-11 Thread JJ Cool
What does this do and how do I stop it? and 1=convert(int,system_user)--sp_password I recently received an email from some one showing me my ID and Password of a site I work. They also stated that they could get our customer information. This is a SQL injection technique used to

Re: SLQ Injection on CF7 Site

2007-06-11 Thread JJ Cool
I guess I should also add that if hackers are seeing useful errors reported back to them you have a couple more problems besides sql injection showing unintended data in your normal query output. 1. Your queries are not wrapped with cftry - cfcatch. 2. Your queries are not cfqueryparam'd. 3.

Re: How many CF developers does it take to manage a site ???

2007-06-11 Thread JJ Cool
By the title of this thread I thought this was going to be a joke. :( disappointed, CoolJJ ~| CF 8 – Scorpio beta now available, easily build great internet experiences – Try it now on Labs

Re: SLQ Injection on CF7 Site

2007-06-11 Thread JJ Cool
I guess I should also add that if hackers are seeing useful You don't need to wrap every query with CFTRY/CFCATCH; you're better off reserving that for specific exceptions where you can present a specific solution. If you just use CFERROR/onError to capture runtime exceptions, you can get the

Re: upload image and insert the image name into the database for the right product

2007-05-11 Thread JJ Cool
It is pretty simple to do. On your form tag you need to add enctype=multipart/form-data to be able to upload files to the server, and use the type=file for the input field. On the server side, use the cffile action=upload tag to put the file in the directory of your choice. The cffile tag

Re: Client-side validation or Server-side Validation?

2007-04-14 Thread JJ Cool
Ok So I've been getting into jQuery a lot lately. And being able to do some of the user enhancements has been great. I've also begun, as one of those user enhancements, to use client-side validation. Not for login's, but for mortgage calculators, property search request forms, etc. Not

ColdFusion Scheduler

2007-04-09 Thread JJ Cool
I'm having a problem with the scheduler not running one time tasks. Here is what I'm doing. I have a script that runs, setup as a one time task. If it succeeds, it schedules itself as a one time task to run on the next business day. If it fails, it schedules itself as a one time task to run one

question about a book

2007-04-08 Thread JJ Cool
I'm thinking of purchasing the book Software Engineering for Internet Applications by Eve Andersson (Author), Philip Greenspun (Author), Andrew Grumet (Author). Has anyone here read it and benefited from it? CoolJJ ~|

Re: CF WordML?

2007-03-01 Thread JJ Cool
I had some good links earlier, but I lost them now. But, It's pretty easy to figure out if you just create some simple word docs with everything you wish to do, then take that wordml and put it in a CFC. The easiest way for me was to NOT use XSLT transformations. Rather, I just took apart a

Re: Possible to fill in areas in a word document?

2007-01-05 Thread JJ Cool
It's possible to do this with WordML and apply an XSL transform or write a CFC that creates WordML documents. Save a simple word document as XML, open it in a text editor and take apart the WordML code, use it to write a CFC that generates Word documents with it. Much cleaner than RTF in my

Re: Coldfusion salaries - Nashville, TN

2006-12-15 Thread JJ Cool
There is a new salary search tool at http://www.indeed.com/salary. http://www.indeed.com/ also has some new job search tools that pulls from all the major job sites. Hey everyone... I've been offered a position with a company here in Nashville, TN. Everything that I've seen so far about