CFDOCUMENT grief

2010-03-31 Thread Kevin Parker
Can anyone tell me what I'm missing here if anything please - trawled the help etc etc I am using CFDOCUMENT (on a CF8 server) in an app to output a recipe record to a PDF file. Trouble is only the code between the CFOUTPUT tags is appearing in the PDF (also tried Flashpaper - same result). I'm

RE: CFDOCUMENT grief

2010-03-31 Thread Kevin Parker
Problem solved (very quickly) - it seems that notwithstanding the examples I saw you need to wrap the whole thing in CFOUPUT ++ Kevin Parker m: 0418 815 527 ++ -Original Message- From: Kevin Parker [mailto:tras...@internode.on.net] Sent: Wednesday, 31 March 2010 8:02

Re: CFDOCUMENT grief

2010-03-31 Thread James Holmes
Ere you sure you don't just have cfsetting enablecfoutputonly=true somewhere in your code (maybe in Applicaiton.cfc etc)? mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 31 March 2010 17:07, Kevin Parker tras...@internode.on.net wrote: Problem solved (very

RE: CFDOCUMENT grief

2010-03-31 Thread Kevin Parker
Excellent spot - that hadn't occurred to me - I call in a common file that has some settings in it and its in there - thanks for the find!! ++ Kevin Parker m: 0418 815 527 ++ -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Wednesday, 31

RE: Decrypt CF scheduled job password?

2010-03-31 Thread Paul Alkema
Yeah if you do google coldfusion decrypt datasource password make sure you click on what's currently the 4th option entitled How To Crack Coldfusion Datasources . I think you'll find that the most helpful. ;) Paul Alkema AlkemaDesigns.com -Original Message- From: b...@bradwood.com

Re: reverse engineer PHP to CF

2010-03-31 Thread Tom Chiverton
On Monday 29 Mar 2010, Glyn Jackson wrote: I no nothing about PHP. can any one reverse engineer this following in CF? It appears to allow the display and overwrite of any file the user knows the path of (or can guess) and listing of all the files in the current directory (web root?).

Re: ColdFusion Builder Released!

2010-03-31 Thread Dave Watts
Dave, you just can't stand it when someone else has an opinion, can you? Opinions are fine. Informed opinions are better. I reserve the right to point out what I see as the errors in the opinions of others. I can tell you one thing...I may not have any experience selling selling non-custom

Re: Custom search engine

2010-03-31 Thread Dave Watts
I've spent the evening reading doc for Verity and Googling for info but it still seems my take is right. Verity can index static files or database query results but not dynamically generated HTML. The content of my client's site is complex enough that indexing database query results

Re: Custom search engine

2010-03-31 Thread Dave Burns
Dave - An issue is that there is not a 1:1 correspondence between database entries and pages. I actually think the database aspect of dynamically creating pages is not the big issue. The majority of the issue is that this site is not well structured and has a web of include files and custom

RE: ColdFusion Builder Released!

2010-03-31 Thread Rick Faircloth
But it's also unfounded, it's just a belief, and what you really seem to mean is right for you. You're right that I do say it's wrong *for me*. But, I think the pricing is *wrong* completely. Now, some may say it's worth it, and I might say that too, if it had more features that I actually

Re: ColdFusion Builder Released!

2010-03-31 Thread Dave Watts
You're right that I do say it's wrong *for me*.  But, I think the pricing is *wrong* completely.  Now, some may say it's worth it, and I might say that too, if it had more features that I actually use. But, I think the pricing is too high, period. Others disagree, presumably, since they're

Re: Custom search engine

2010-03-31 Thread Dave Watts
So, this is why I keep pushing the spidering idea. I understand I may give up some fine- grained control over the index but, given the limited budget, a spider approach that can generate a Verity index seems the best way to stay within their budget. Well, maybe you can use the Verity

occasional issue with form fields not being passed.

2010-03-31 Thread Will Swain
Hi, Got a form with some hidden fields, that gets passed to an https page. This has been up and running and working for several years. Very very occasionally the form scope that is passed is empty. Does anyone have any ideas how this could happen. I have a user who is insisting they clicked

Re: occasional issue with form fields not being passed.

2010-03-31 Thread Dave Watts
Got a form with some hidden fields, that gets passed to an https page. This has been up and running and working for several years. Very very occasionally the form scope that is passed is empty. Does anyone have any ideas how this could happen. I have a user who is insisting they clicked the

RE: occasional issue with form fields not being passed.

2010-03-31 Thread Will Swain
Thanks Dave. My initial feeling was to get them to try a different browser and switch off MacAfee (yuck). Will try that and see where we get to. Cheers Will -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: 31 March 2010 16:42 To: cf-talk Subject: Re: occasional

RE: ColdFusion Builder Released!

2010-03-31 Thread Rick Faircloth
Happy trails! You, too! Rick -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, March 31, 2010 11:02 AM To: cf-talk Subject: Re: ColdFusion Builder Released! You're right that I do say it's wrong *for me*.  But, I think the pricing is *wrong*

CFQUERY Question

2010-03-31 Thread Dave Sueltenfuss
I'm running into an odd behavior with CFQUERY (at least I think it is odd) I have the following code (example) cfquery name=blahName datasource=blah SELECT blah FROM blah WHERE blah = 1 /cfquery CFIF blahName.recordCount GT 0 12345 /CFIF if the query blahName returns no results,

RE: CFQUERY Question

2010-03-31 Thread Rick Faircloth
Your cfif statement asks for the recordCount to be returned on if the recordCount is greater than 0. Try cfif blahName.recordcount GTE 0 and you should get the recordCount either way. Rick -Original Message- From: Dave Sueltenfuss [mailto:dsueltenf...@gmail.com] Sent: Wednesday, March

Re: CFQUERY Question

2010-03-31 Thread Steve Milburn
You are correct, the record count for an empty query object does exist (and should be 0). What exactly is not working? Are you getting an error message? On Wed, Mar 31, 2010 at 1:59 PM, Dave Sueltenfuss dsueltenf...@gmail.comwrote: I'm running into an odd behavior with CFQUERY (at least I

RE: CFQUERY Question

2010-03-31 Thread Robert Harrison
You are correct that it should work, but they maybe something else in the code which is preventing the query from being executed. On the top of your page add: cfparam name= blahName.recordcount default=0 And that will deal with the case where the query is not executed. Robert B.

Re: CFQUERY Question

2010-03-31 Thread Dave Sueltenfuss
Ok, found the cause of the issue, by taking the query into SQL Server In SQL, the following is being returned *Warning: Null value is eliminated by an aggregate or other SET operation. (0 row(s) affected)* So it appears this is what is throwing off the query results in CF I am working on

Re: CFQUERY Question

2010-03-31 Thread Maureen
If the query is executing correctly but bringing back no records, this should work with blahname.recordcount equal zero . If the query is not executing correctly, blahname.recordcount will not equal zero. On Wed, Mar 31, 2010 at 10:59 AM, Dave Sueltenfuss dsueltenf...@gmail.com wrote: I'm

Integrating SSRS with coldfusion

2010-03-31 Thread sarah mfr
I am working on an internet site using coldfusion and want to integrate SSRS. I need the full functionality of reporting services and sql report service report builder If I used the Url access method mentioned in the following link http://technet.microsoft.com/en-us/library/ms153586.aspx what

RE: ColdFusion Builder Released!

2010-03-31 Thread Andrew Scott
Except that there are people out there with more money than sense, and can afford it and will but it. Others are more conservative and will look at value for money first. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, 1 April 2010 2:02 AM To: cf-talk

Re: Integrating SSRS with coldfusion

2010-03-31 Thread Mike Chabot
Unless someone comes through with a yes answer to your second question I think you will find this to be a very challenging task. SSRS doesn't play nice with anything but .NET. Would an iframe pointing to an ASP.NET page work for you? How about a pop-up window? :-) Complicating this issue is

What happens to session variables after redirecting to https?

2010-03-31 Thread John Pullam
I have an application that expects to be run in http, but when it needs to process a credit card, it goes to https. Then afterwards it goes back to http. I do this by pulling the URL and prefixing it with the appropriate http or https: notation. Does anyone have practical experience with what

Re: What happens to session variables after redirecting to https?

2010-03-31 Thread Jason Fisher
No, from a cookie perspective, http://mysite.com and https://mysite.com are 2 different domains, so you need to send the session tokens across the gap. Any of a number of approaches can work, but here's the quick and dirty: cflocation url=https://#mySecureURL#; addtoken=yes / Or, if you are

Flash on iPhone

2010-03-31 Thread John M Bliss
And heck froze over: http://www.macworld.com.au/iphone/view/apple-introduces-flash-for-iphone-4703 -- John Bliss IT Professional @jbliss (t) / http://www.brandiandjohn.com ~| Want to reach the ColdFusion community with

Re: Flash on iPhone

2010-03-31 Thread John M Bliss
...or it's already April Fool's Day in Australia. D'oh! On Mar 31, 2010 8:43 PM, John M Bliss bliss.j...@gmail.com wrote: And heck froze over: http://www.macworld.com.au/iphone/view/apple-introduces-flash-for-iphone-4703 -- John Bliss IT Professional @jbliss (t) /

Re: Flash on iPhone

2010-03-31 Thread Matt Quackenbush
$799.99 to purchase Flash on your iPhone??? No thanks. Sent from my iPhone On Mar 31, 2010, at 20:43, John M Bliss bliss.j...@gmail.com wrote: And heck froze over: http://www.macworld.com.au/iphone/view/apple-introduces-flash-for-iphone-4703 -- John Bliss IT Professional @jbliss (t)

RE: Flash on iPhone

2010-03-31 Thread Jon Sala
Ach - it's already tomorrow in Australia! From: John M Bliss [bliss.j...@gmail.com] Sent: March 31, 2010 7:43 PM To: cf-talk Subject: Flash on iPhone And heck froze over: http://www.macworld.com.au/iphone/view/apple-introduces-flash-for-iphone-4703 --

Re: Ben Forta

2010-03-31 Thread rex
Ben's doing it for kicks hehe here's a snippet from http://en.wikipedia.org/wiki/Rickrolling When a person clicks on the link and is led to the web page, he or she is said to have been /Rickrolled / Eric Roberts wrote: Rick causing trouble again? And why is he rolling? *grin*