RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Yes, it's webroot... just personal preference. This did the trick: cffile action=read file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt variable=photos cfset photo_count=1 cfloop index=photo list=#photos# delimiters=#chr(13)chr(10)#

RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Yes, it should be #photo#...I rewrote it too quickly. This worked: cffile action=read file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt variable=photos cfset photo_count=1 cfloop index=photo list=#photos# delimiters=#chr(13)chr(10)#

RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Oh, and I meant to ask how I would loop directly over a file? I tried some code, but it didn't work? How would that be written? Rick -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Saturday, July 19, 2008 11:26 PM To: CF-Talk Subject: Re: Why won't this work

Re: Why won't this work to give me a list of photos?

2008-07-20 Thread Will Tomlinson
Oh, and I meant to ask how I would loop directly over a file? I tried some code, but it didn't work? How would that be written? http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_j-l_15.html :) Will ~|

RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Oh...that works. Thanks, Wilbur! :o) Rick -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Sunday, July 20, 2008 7:08 AM To: CF-Talk Subject: Re: Why won't this work to give me a list of photos? Oh, and I meant to ask how I would loop directly over a file?

cfdocument tying up processors, I think...

2008-07-20 Thread Aaron Bodell
Anyone experienced processor usage skyrocketing when using the cfdocument tag? This happens for me every time. My code is based on the sample code in the documentation. Aaron ~| Adobe® ColdFusion® 8 software 8 is the most

Cflock question

2008-07-20 Thread Jeff Gladnick
I posted this to the Model Glue group too, but it sems like a general question that cf-talk might be able to answer I've traced the error to this line in /ModelGlue/unity/ModelGlue.cfm: cflock name=ModelGlueInit type=exclusive timeout=10 throwOnTimeout=true For some reason, its not entering

Re: Cflock question

2008-07-20 Thread Raymond Camden
How do you know it's not going in? On Sun, Jul 20, 2008 at 3:48 PM, Jeff Gladnick [EMAIL PROTECTED] wrote: I posted this to the Model Glue group too, but it sems like a general question that cf-talk might be able to answer I've traced the error to this line in /ModelGlue/unity/ModelGlue.cfm:

Re: Report Builder Question

2008-07-20 Thread Mike Greider
It does prevent the text from being displayed, but the whitespace is still present. As far as I can see, there is no way to set that option on the entire footer, just all of the contents inside the footer. Thanks for the suggestion. I'm happy to try any option! Hi, Try setting the footer text

Re: Cflock question

2008-07-20 Thread Jeff Gladnick
I dumped the application scope all the way through at every logic point. It was definitely NOT going in. The weird part was I finally fixed it by restarting BlueDragon JX. Then it magically worked with no code changes. All I did previously in BlueDragon admin was tweak some mappings

Re: Cflock question

2008-07-20 Thread Jeff Gladnick
I dumped the application scope all the way through at every logic point. It was definitely NOT going in. The weird part was I finally fixed it by restarting BlueDragon JX. Then it magically worked with no code changes. All I did previously in BlueDragon admin was tweak some mappings

Re: Cflock question

2008-07-20 Thread Raymond Camden
I have to disagree with you. Did you try adding a cflog after the lock? Note that there is a cfif right after the lock. Maybe the condition was false. On Sun, Jul 20, 2008 at 5:34 PM, Jeff Gladnick [EMAIL PROTECTED] wrote: I dumped the application scope all the way through at every logic point.

RE: Cflock question

2008-07-20 Thread Dave Watts
I posted this to the Model Glue group too, but it sems like a general question that cf-talk might be able to answer I've traced the error to this line in /ModelGlue/unity/ModelGlue.cfm: cflock name=ModelGlueInit type=exclusive timeout=10 throwOnTimeout=true For some reason, its not

Re: Cflock question

2008-07-20 Thread Jeff Gladnick
I didn't do a Cflog, but I was cfdumping, adding marker characters (like 22) and cfaborting... It never made it inside the CFLOCK. And this is BEFORE the cfif, i was careful to place my condition check in between the CFLOCK and the CFIF. However, I don't think this is a Model-Glue