[ flash and javacript ] - div problem...

2004-08-15 Thread Daniel Farmer
I'm having a problem with my _javascript_ popup menu rollovers when they have to pop up and over a flash object. If I put an image in the .swf file's place, the rollover works fine. Anyone else experience this? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

[ cffile ] trouble...

2004-08-15 Thread Daniel Farmer
getting the following error, not sure what to make of it. Error processing CFFILEP Error attempting to save uploaded file to path '\\*mydomain*\public\admin\userimages.' Access is denied. (error 5) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: [ cffile ] trouble...

2004-08-15 Thread Coldfusion
if you are using *nix, check the permissions on the folder. _ From: Daniel Farmer [mailto:[EMAIL PROTECTED] Sent: Sunday, August 15, 2004 5:37 AM To: CF-Talk Subject: [ cffile ] trouble... getting the following error, not sure what to make of it. Error processing CFFILEP Error attempting

Re: [ cffile ] trouble...

2004-08-15 Thread Jochem van Dieten
Daniel Farmer wrote: getting the following error, not sure what to make of it. Error processing CFFILEP Error attempting to save uploaded file to path '\\*mydomain*\public\admin\userimages.' Access is denied. (error 5) You probably don't have permissions on that share. Is CF running under

Re: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Qasim Rasheed
http://uptime.netcraft.com/up/graph/?host=www.athens2004.com - Original Message - From: Michael Kear [EMAIL PROTECTED] Date: Sun, 15 Aug 2004 12:03:31 +1000 Subject: Olympics web site - anyone know anything about how it's built? To: CF-Talk [EMAIL PROTECTED] Now that the Olympics are

RE: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Michael T. Tangorre
Running Microsoft/IIS 5.0 on LINUX?You sure about that one? :-) From: Qasim Rasheed [mailto:[EMAIL PROTECTED] http://uptime.netcraft.com/up/graph/?host=www.athens2004.com From: Michael Kear [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Marco Antonio C. Santos
Looks like PHP... why? Looking source code show meUDMComment... Googling UDMComment gets: http://www.binoculars.com/brands/Collins_binoculars.html That site works with PHP... Maybe Cheers On Sun, 15 Aug 2004 09:43:45 -0400, Michael T. Tangorre [EMAIL PROTECTED] wrote: Running

RE: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Russ
UDMComment is part of UDMSearch, an web site search engine: http://search.mnogo.ru/ _ From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Saturday, August 14, 2004 10:43 AM To: CF-Talk Subject: Re: Olympics web site - anyone know anything about how it's built? Looks like PHP...

Re: [ flash and javacript ] - div problem...

2004-08-15 Thread S . Isaac Dealey
I'm having a problem with my _javascript_ popup menu rollovers when they have to pop up and over a flash object. If I put an image in the .swf file's place, the rollover works fine. Anyone else experience this? Flash movies (I believe object/embed tags in general) are what are called

RE: [ flash and javacript ] - div problem...

2004-08-15 Thread Jeff Garza
I'm assuming that the problem you are having is that your menus are showing up behind your flash movie??? Try using wmode = transparent as a param and/or attribute of the object tag you use to display your flash movie.This should allow your DHTML menus to show above the flash movie instead of

SOT: JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
Info published on Blackstone, and especially Sean Corfield's blog, seem to indicate that one way to invoke CFCs will be the event gateway and Java Messaging Services.I'd like to get up to speed on JMS, in anticipation of using this feature when Blackstone arrives. Anybody running JRun JMS or

RE: JMS provider in anticipation of Blackstone

2004-08-15 Thread Matt Liotta
Check out http://openjms.sourceforge.net/. -Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dick Applebaum Sent: Sunday, August 15, 2004 2:22 PM To: CF-Talk Subject: SOT: JMS provider in anticipation of Blackstone Info published on

Re: JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
Thanks Matt That looks great -- I have been googling for 1+ days never ran across OpenJMS --- odd. Dick On Aug 15, 2004, at 11:59 AM, Matt Liotta wrote: Check out http://openjms.sourceforge.net/. -Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: weird but consistent behavior

2004-08-15 Thread Dawson, Michael
I remember reading a post somewhere that you could remove the CF-compiles .class files.Did you try that?I think the gist of it was that it was CF's problem, not the database server's problem. From: George Abraham [mailto:[EMAIL PROTECTED] Sent: Friday, August

Re: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Brendan Canty
At least some of the site is running on jsp I received the following exception: [Exception in:/secure/tiles/results/discipline_days.jsp] null in the beach volleyball section

RE: weird but consistent behavior

2004-08-15 Thread S . Isaac Dealey
Well although you might be able to get it to work by deleting the class files, I'd be willing to bet that setting the caching of query syntax for that DSN to 0 queries is going to be easier -- you only have to do it once instead of each time you change the database. I remember reading a post

Re: [ flash and javacript ] - div problem...

2004-08-15 Thread Daniel Farmer
Yes, thanks all for responding. I tried the wmode = 'transparent' ( in the object tag ) and that didn't work. =(. The DHTML menus still appear BEHIND the flash object. I also tried playing with z-index, again with no luck. What are some other options here? I'm curious about suppressing the

Site-wide error handler code

2004-08-15 Thread Howie Hamlin
Does anyone have a good site-wide error handler template that I can use?I would like to log error details and optionally email the errors at the same time. Thanks, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The

OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
Been playing with OpenJMS --- very nice package, pretty good docs, simple install nice (if simple) examples. It is easy to see the advantages and potential of JMS. Got me thinking that CFML should have the inherent ability to send/receive JMS messages -- something like a cfmessage tag. Dick

Deleting a numbered struct

2004-08-15 Thread Critter
I've got a struct of structs, and have to go through and delete ones that can fall in the middle. So if i have: item1 item2 item3 item4 and i need to delete item2. any ideas on how to /bump/ the others up? so that if i do a loop it won't error on the missing 2 ? any suggestions? /crit --

RE: Deleting a numbered struct

2004-08-15 Thread Adrian Lynch
I think you might be confusing arrays with structures. Deleting at one key won't cause errors when accessing others. If you delete item2 and you loop through the struct it will loop through the remaining items. Ade -Original Message- From: Critter [mailto:[EMAIL PROTECTED] Sent: 15

Re: Deleting a numbered struct

2004-08-15 Thread Critter Gewlas
I think you might be confusing arrays with structures. Deleting at one key won't cause errors when accessing others. If you delete item2 and you loop through the struct it will loop through the remaining items. Ade Actually, no, I do not have them confused. but my structures are:

Re: Deleting a numbered struct

2004-08-15 Thread Critter
ah n/m i sorted it by using a list loop: list=#structKeyList(session.strProducts)# -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-= [Todays Threads] [This Message] [Subscription] [Fast

RE: Deleting a numbered struct

2004-08-15 Thread Adrian Lynch
Or you could use a structure of arrays which inherently have an order. Ade -Original Message- From: Critter Gewlas [mailto:[EMAIL PROTECTED] Sent: 15 August 2004 23:32 To: CF-Talk Subject: Re: Deleting a numbered struct I think you might be confusing arrays with structures. Deleting at

Fiel Field style : )

2004-08-15 Thread Ewok
I have been trying to figure out forever how to change the style on the Browse button of a file field and have finally got it but using the code below Coldfusion returns an error saying: The form field imagefield1 did not contain a file. same thing from imagefield2 of course... its not a file

Re: Deleting a numbered struct

2004-08-15 Thread S . Isaac Dealey
I've got a struct of structs, and have to go through and delete ones that can fall in the middle. So if i have: item1 item2 item3 item4 and i need to delete item2. any ideas on how to /bump/ the others up? so that if i do a loop it won't error on the missing 2 ? any suggestions?

Re: [ flash and javacript ] - div problem...

2004-08-15 Thread S . Isaac Dealey
Yes, thanks all for responding. I tried the wmode = 'transparent' ( in the object tag ) and that didn't work. =(. The DHTML menus still appear BEHIND the flash object. I also tried playing with z-index, again with no luck. What are some other options here? I'm curious about suppressing

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
put this in your form: = false; I have been trying to figure out forever how to change the style on the Browse button of a file field and have finally got it but using the code below Coldfusion returns an error saying: The form field imagefield1 did not contain a file. same thing from

Re: Deleting a numbered struct

2004-08-15 Thread Critter
You're using that xml parser for CF5 from cfdev aren't you? ... no, it is an object i've created to hold data. Although I'd recommend replacing the structure with an array instead. struct is easiest... i need the named notation of it. --

Re: Fiel Field style : )

2004-08-15 Thread Ewok
nope... i added this.imagefield1.disabled=false; in the form tag extremely weird you have to click the upload button twice and the first click clears the imagefield1 field then end up with the same CF error i tried adding then i get a JS error saying Access denied bo this is what it is

RE: Query Manipulation Error in UNION

2004-08-15 Thread Mark Henderson
I've now discovered this is only happening when there are either no gifs or no jpgs in the specified directory. So I guess I could just check to see if either directory listing has a recordset, and merge only if both do. Regards Mark Henderson Web Designer mailto:[EMAIL PROTECTED] mailto:[EMAIL

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
Ahh... you lose the file any time you disable the field. nope... i added this.imagefield1.disabled=false; in the form tag extremely weird you have to click the upload button twice and the first click clears the imagefield1 field then end up with the same CF error i tried adding then i

Re: Deleting a numbered struct

2004-08-15 Thread S . Isaac Dealey
You're using that xml parser for CF5 from cfdev aren't you? ... no, it is an object i've created to hold data. Although I'd recommend replacing the structure with an array instead. struct is easiest... i need the named notation of it. If the names are all identical except for the

RE: Query Manipulation Error in UNION

2004-08-15 Thread Mark Henderson
I've now discovered this is only happening when there are either no gifs or no jpgs in the specified directory. So I guess I could just check to see if either directory listing has a recordset, and merge only if both do. Regards Mark Henderson Web Designer mailto:[EMAIL PROTECTED] mailto:[EMAIL

Re: Fiel Field style : )

2004-08-15 Thread Ewok
well crap : / without disabling it, you have to click the submit button twice and the first click clears the fiel field... sigh - Original Message - From: S. Isaac Dealey To: CF-Talk Sent: Sunday, August 15, 2004 8:03 PM Subject: Re: Fiel Field style : ) Ahh... you lose the file

Re: Fiel Field style : )

2004-08-15 Thread Ewok
well crap : / without disabling it, you have to click the submit button twice and the first click clears the fiel field... sigh - Original Message - From: S. Isaac Dealey To: CF-Talk Sent: Sunday, August 15, 2004 8:03 PM Subject: Re: Fiel Field style : ) Ahh... you lose the

Re: Fiel Field style : )

2004-08-15 Thread Ewok
i swear I can spell file... really - Original Message - From: Ewok To: CF-Talk Sent: Sunday, August 15, 2004 8:19 PM Subject: Re: Fiel Field style : ) well crap : / without disabling it, you have to click the submit button twice and the first click clears the fiel field... sigh

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
rilly? eye cont. :) i swear I can spell file... really - Original Message - From: Ewok To: CF-Talk Sent: Sunday, August 15, 2004 8:19 PM Subject: Re: Fiel Field style : ) well crap : / without disabling it, you have to click the submit button twice and the first click clears the

# of CF users

2004-08-15 Thread Doug Hughes
I was talking with my wife about ColdFusion this weekend.(She's a non programmer.)I was trying to relate the number of programmers if CF to other languages.She asked how many actual people program in these various languages and I realized I have no clue. So, I'm wondering if anyone out there

Re: # of CF users

2004-08-15 Thread S . Isaac Dealey
There's no way to know really -- the best we can do is guess at it... I'm sure there are some statistics available, but nothing will be definative. s. isaac dealey954.927.5117 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework

Re: Fiel Field style : )

2004-08-15 Thread I-Lin Kuo
Why do you need to click the submit button twice? From your posted code, only the Browse... button affects the file field. Do you really need to disable the file field button? I haven't tried this, but you might try to trap the onclick event of the file button instead of disabling it? --- Ewok

Re: Fiel Field style : )

2004-08-15 Thread Ewok
Dont know really... but without it disabled, when you click the submit button it does nothing but clear the fiel field (so the submit affects it as well) then when you click the submit button again it submits - Original Message - From: I-Lin Kuo To: CF-Talk Sent: Sunday, August 15, 2004

Re: # of CF users

2004-08-15 Thread Dick Applebaum
My first answer was going to be: 2- the rest of us just talk about CF :) But, what might be an interesting stat is how many subscribers to CF-Talk? Dick On Aug 15, 2004, at 6:42 PM, S. Isaac Dealey wrote: There's no way to know really -- the best we can do is guess at it... I'm sure there

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
If you want a quick tutorial on JMS (OpenJMS) there is one at: http://www.devx.com/Java/Article/20903/0/page/1 Dick On Aug 15, 2004, at 2:47 PM, Dick Applebaum wrote: Been playing with OpenJMS --- very nice package, pretty good docs, simple install nice (if simple) examples. It is easy to

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
Why do you need to click the submit button twice? From your posted code, only the Browse... button affects the file field. Do you really need to disable the file field button? I haven't tried this, but you might try to trap the onclick event of the file button instead of disabling it?

Re: # of CF users

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 20:41:23 -0400, Doug Hughes [EMAIL PROTECTED] wrote: As a note, my wife found an article saying there are about 300,000 CF programmers.Does that seem high to anyone else? That's an unofficial estimate from Macromedia I think, based on the number of servers sold and the

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
I stand corrected. :) Dont know really... but without it disabled, when you click the submit button it does nothing but clear the fiel field (so the submit affects it as well) then when you click the submit button again it submits - Original Message - From: I-Lin Kuo To: CF-Talk Sent:

Re: SOT: JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 11:21:41 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: JRun comes with a built-in JMS provider, but the docs are the pits -- not even enough info to compile (where to find the javax.jms classes) Hmm, I built my JMS event gateway using nothing but the JRun docs - it even had

Re: Fiel Field style : )

2004-08-15 Thread Ewok
ha maybe i CANT spell file - Original Message - From: S. Isaac Dealey To: CF-Talk Sent: Sunday, August 15, 2004 10:26 PM Subject: Re: Fiel Field style : ) I stand corrected. :) Dont know really... but without it disabled, when you click the submit button it does nothing but clear

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 14:47:16 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: Got me thinking that CFML should have the inherent ability to send/receive JMS messages -- something like a cfmessage tag. JMS is inherently asynchronous. CF is (currently) based on synchronous HTTP request / response

[ iis / mozilla-firefox ] setting up a testing machine

2004-08-15 Thread Daniel Farmer
I'm using my laptop as a development machine and I'm testing applications through the localhost. ( using IIS5 configured for cfm, asp, .net, php ) Mozilla ( Firefox ) - keeps asking for username and password credentials whereas IE does not. Does anyone know of any workarounds or at the very

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
How does JMS compare to the ability to call CFC methods asynchronously (one of the mentioned new features in Blackstone)? Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original

Re: SOT: JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
On Aug 15, 2004, at 7:47 PM, Sean Corfield wrote: On Sun, 15 Aug 2004 11:21:41 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: JRun comes with a built-in JMS provider, but the docs are the pits -- not even enough info to compile (where to find the javax.jms classes) Hmm, I built my JMS

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 23:28:36 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: How does JMS compare to the ability to call CFC methods asynchronously (one of the mentioned new features in Blackstone)? They're unrelated really. JMS is just a mechanism for sending / receiving data asynchronously

Re: SOT: JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 20:33:10 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: I tried the JRuncode example you mentioned in your blog -- seemed straight-forward, enough, but Java couldn't find the javax.jms class Because it's in the JRun library jrun.jar... Jrun docs didn't mention this.so I

Re: Fiel Field style : )

2004-08-15 Thread S . Isaac Dealey
fiel is the new file. :) I declare this a new spelling, come join my pettition to Webster. :) ha maybe i CANT spell file - Original Message - From: S. Isaac Dealey To: CF-Talk Sent: Sunday, August 15, 2004 10:26 PM Subject: Re: Fiel Field style : ) I stand corrected. :) Dont know

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
Sam I don't know ... But from what I have been able to learn about Blackstone it appears that one way to call CFCs asynchronously is with JMS. That is what Sean Corfield is doing, according to his blog posts here. That is the very reason that I decided to learn about JMS -- so I would be

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
On Aug 15, 2004, at 7:57 PM, Sean Corfield wrote: On Sun, 15 Aug 2004 14:47:16 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: Got me thinking that CFML should have the inherent ability to send/receive JMS messages -- something like a cfmessage tag. JMS is inherently asynchronous. CF is

Re: SOT: JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
On Aug 15, 2004, at 9:10 PM, Sean Corfield wrote: So, I realized that the location of the jms classes is dependent on the implementor of jms not part of the standard Java package. -- Seems odd to a Java newbie. I meant it seems odd that Java (Sun) did not provide the JMS classes -- rather

Re: [ iis / mozilla-firefox ] setting up a testing machine

2004-08-15 Thread Rob
in IIS, under the website setup, look at the authentication tab (there is a button you have to click too - I forget what it says at the moment). It sounds like windows authentication is on On Sun, 15 Aug 2004 23:08:50 -0400, Daniel Farmer [EMAIL PROTECTED] wrote: I'm using my laptop as a

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 21:14:56 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: But from what I have been able to learn about Blackstone it appears that one way to call CFCs asynchronously is with JMS. JMS is not really a remote procedure call vehicle so it is not a way to call CFCs asynchronously.

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
Sorry, I should have made my question clearer (or perhaps I should just wait until Blackstone is released, but it seems a general question on features already discussed public ally so here it goes). What's the advantage of tapping into JMS as opposed to using async cfc calls for a pure CF

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Sun, 15 Aug 2004 21:22:01 -0700, Dick Applebaum [EMAIL PROTECTED] wrote: I felt that cfmessage would be very useful as a jms receiver -- isolating the user from the complexity. But, you are right, the typical CF app isn't written to sit and listen for an asynchronous request, Yeah, I

Re: Deleting a numbered struct

2004-08-15 Thread Critter
If the names are all identical except for the number, why then is the named notation of the structure important? It seems to me the array would be much easier to deal with. session.strProduct.item1.orderno = xxx; session.strProduct.item1.qty = 2; session.strProduct.item2.orderno = zzz;

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Sean Corfield
On Mon, 16 Aug 2004 00:42:27 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: What's the advantage of tapping into JMS as opposed to using async cfc calls for a pure CF application? If you have a pure CF app, JMS is irrelevant. JMS is useful for passing data asynchronously between applications on

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
ok, that's the key information I wasn't clear on.. different systems.. :-) Thanks! Sam -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Monday, August 16, 2004 1:03 AM To: CF-Talk Subject: Re: OpenJMS was JMS provider in anticipation of Blackstone On Mon,

Re: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Dick Applebaum
On Aug 15, 2004, at 9:46 PM, Sean Corfield wrote: You could (possible) simplify this interface (for the rest of us) with a cfmessage type=receiver... tag. No you can't. You'd need a request in progress to execute that tag - the whole point of the event gateway is that it can generate the