CF 10 update 3 released

2012-10-19 Thread Eric Roberts
http://cf.etisbew.com/articles/index.php/coldfusion-10-update-3-released/ ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

re: CF 10 update 3 released

2012-10-19 Thread Guust Nieuwenhuis
[Update: The ColdFusion 10 update 3 will be pulled back shortly because of a few issues in the update. We are working on the fixing these issues. A new update will be released as soon as it is ready. Thank you for your patience and we apologize for the inconvenience caused] Source:

Query results within results

2012-10-19 Thread polyhex
Hi Confusing title I know, but I'm trying to implement the ColdFusion wrapper for Campaign Monitor and I can get loads of basic lists back, but I've got to a query which now displays the results of the query within a results field. Eg. doing a cfdump I see the fields NUMBEROFPAGES PAGENUMBER

Re: Query results within results

2012-10-19 Thread Russ Michaels
you prob have a struct of arrays. so it is probably yourstruct.results.date[x] where x is the row. The constents of result are prob an array which you can loop over. It would be easier if you could put up a page with the CFDUMP output so we can see the exact format. On Fri, Oct 19, 2012 at

Re: Query results within results

2012-10-19 Thread Colin B
Thanks for the quick reply! I've put a partial screenshot of the cfdump at http://www.polyhex.net/cfdump.jpg (If it is an array, I need to work out the loop statement properly! :) ) Colin you prob have a struct of arrays. so it is probably yourstruct.results.date[x] where x is the row. The

Re: Query results within results

2012-10-19 Thread Russ Michaels
seem like it should just be cfloop query=mainquery cfloop query=results On Fri, Oct 19, 2012 at 12:34 PM, Colin B polyh...@gmail.com wrote: Thanks for the quick reply! I've put a partial screenshot of the cfdump at http://www.polyhex.net/cfdump.jpg (If it is an array, I need to

Re: strip ntext chars

2012-10-19 Thread Raymond Camden
Ben doesn't drink beer, so I get his. On Thu, Oct 18, 2012 at 12:38 PM, John M Bliss bliss.j...@gmail.com wrote: Oh, sweet! Thanks! (I owe Ben SO MANY BEERS. And, of course, Ray.) On Thu, Oct 18, 2012 at 12:34 PM, Robert Harrison rob...@austin-williams.com wrote: Reread your post. You

Re: strip ntext chars

2012-10-19 Thread John M Bliss
Fair enough. On Fri, Oct 19, 2012 at 8:56 AM, Raymond Camden raymondcam...@gmail.comwrote: Ben doesn't drink beer, so I get his. On Thu, Oct 18, 2012 at 12:38 PM, John M Bliss bliss.j...@gmail.com wrote: Oh, sweet! Thanks! (I owe Ben SO MANY BEERS. And, of course, Ray.) On Thu, Oct

Re: Query results within results

2012-10-19 Thread Colin B
Got it worked out... I needed to query the Results part of the returned results i.e. cfset listsumm = lists.active_subscribers(#listid#) cfset results = listsumm.results I can then loop through the results to get the data :) seem like it should just be cfloop query=mainquery cfloop

Re: Query results within results

2012-10-19 Thread Colin B
Got it worked out. I needed to query the Results of the returned results cfset listsumm = lists.active_subscribers(#listid#) cfset results = listsumm.results Then I just needed to loop through the data that got returned :) seem like it should just be cfloop query=mainquery cfloop

RE: CF 9 Updates

2012-10-19 Thread Steve LaBadie
Hey Pete, Will uploading update 2 take care of everything? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Thursday, October 18, 2012 3:49 PM To: cf-talk Subject: Re: CF 9

Re: CF 9 Updates

2012-10-19 Thread Pete Freitag
Hi Steve, 9.0.1 Cumulative hotfix 2 does not include all the security patches, it is missing APSB11-29, APSB12-06, APSB12-15 and APSB12-21. 9.0.2 it is only missing security hotfix APSB12-21 See this page for more info: http://www.petefreitag.com/item/804.cfm -- Pete Freitag - Adobe Community

cfm files bypass permissions -- htm files get 401 unauthorized

2012-10-19 Thread Chris
We've got a strange situation on IIS6 and ColdFusion7 on Windows Server 2003: cfm files bypass permissions -- htm file get 401 unauthorized A simple .cfm test file is displayed, despite Windows folder permissions that should prohibit it. The same test file saved as a .htm is correctly blocked

Re: cfm files bypass permissions -- htm files get 401 unauthorized

2012-10-19 Thread Matt Quackenbush
I've not done anything like what you're trying to do, but I suspect that IIS is passing the request straight off to CF and bypassing permissions. Not sure there's a way around that, but hopefully that will give you enough info to get headed in the right direction until someone with IIS experience

Re: cfm files bypass permissions -- htm files get 401 unauthorized

2012-10-19 Thread .jonah
Although I don't know for sure, that makes sense. If the CF process has permissions to access the file it'll read, process, and return the contents to IIS. e.g. IIS doesn't touch the file on the filesystem. On 10/19/12 2:36 PM, Matt Quackenbush wrote: I've not done anything like what you're

Re: cfm files bypass permissions -- htm files get 401 unauthorized

2012-10-19 Thread Russ Michaels
What are the actual permissions you have on the folder? Regards Russ Michaels On Oct 19, 2012 11:02 PM, .jonah jonah@creori.com wrote: Although I don't know for sure, that makes sense. If the CF process has permissions to access the file it'll read, process, and return the contents to