Re: Internationalization Issue

2003-07-10 Thread Terry Ford
terry, can you elaborate on this? i never use any of the LS functions (as i usually work w/locales that aren't supported) have never seen this sort of behavior. Ok, here's the scenario: I've got 2 templates. Both query a db and return some accented French text and a date. CFOUTPUT displays

Re: Is there a difference between CFMX on Linux and Windows?

2003-07-10 Thread Thomas Chiverton
On Wednesday 09 Jul 2003 18:57 pm, Pete Freitag wrote: Aaron Johnson wrote a free Java CFX tag that uses Apache Lucene for searching, check it out here: Nice work - I'll note that down for if we ever need to do it. -- Thomas C Advanced ColdFusion Programmer PLEASE NOTE: When the Recipient Is

Re: Clarification on DRKs needed

2003-07-10 Thread Thomas Chiverton
On Wednesday 09 Jul 2003 23:08 pm, raedwards wrote: I'm looking at proposing a subscription to Devnet Professional. If i were to subscribe now, i assume i would be sent DRK3. Would i also get 2 and 1 for my investment? I'd get Studio MX, development servers and alot of other tools, but

Flash remoting installed?

2003-07-10 Thread Neil Middleton
Guys, Do I have enough in a standard CFMX install with updater 3 to get flash remoting working or do I need to install all the other bits and pieces seperately? Neil ~| Archives:

RE: Flash remoting installed?

2003-07-10 Thread Robertson-Ravo, Neil (RX)
Flash Remoting AFAIK is installed with CFMX (well the components to do it). You obviously need Flash :-) -Original Message- From: Neil Middleton [mailto:[EMAIL PROTECTED] Sent: 10 July 2003 09:53 To: CF-Talk Subject: Flash remoting installed? Guys, Do I have enough in a standard CFMX

Re: Dreamweaver tag updates for redsky

2003-07-10 Thread Ryan Mitchell
Lol... Original email said tag updates... You can speculate all you like... NDA On 10/7/03 3:06 am, Rich Z [EMAIL PROTECTED] wrote: Redsky has new tags? -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 9:29 PM To: CF-Talk Subject:

Re: I knew your name was Neo

2003-07-10 Thread Calvin Ward
I'll plus one this as well! Very excited! - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 4:22 PM Subject: RE: I knew your name was Neo is being treated more like an updater. I've been upgrading machines

Re: CF5 to MySQL without ODBC

2003-07-10 Thread Jochem van Dieten
Jim McAtee wrote: I see. So, regarding my question about using ODBC style dates with the 'native' jdbc drivers - do the drivers understand ODBC formatted date/times or do they just pass queries verbatim to the dbms, forcing you to comply with the particular formats of the database? JDBC

RE: Hierarchical Menus script with CF

2003-07-10 Thread Ihrig Paul E Cont 88 ABW/EM
http://www.dynamicdrive.com/dynamicindex1/hvmenu/ http://www.dynamicdrive.com/dynamicindex1/hvmenu/hvmenu.zip ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Resources on Structured Exception Handling

2003-07-10 Thread David Collie (itndac)
Anybody point the direction for resources on best practices for Structured Exception Handling (in general and CF) Cheers DC ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Setting of application variable error...

2003-07-10 Thread Critz
oi CF-Talk,!! This code seems to work fine when it was on another server, now it throws errors: code: cflock name=#createUUID()# throwontimeout=Yes timeout=20 cfif not isDefined(application.getSuffix) cfquery name=getSuffix datasource=#request.dsn#

[cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
There has to be something here I'm just not seeing. With this in the admin directory I'm thinking that if you tried to go to any page and weren't logged in or had a cookie, you'd be redirected to the login page, otherwise, you'd have a cookie and you'd be able to access the page fine. Or...you

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
Not related to your issue, but this: cfelseif isDefined(COOKIE.LogInID) !--- Else the cookie WAS found, so we'll step in here and take the cookie's LoginID value to log in --- What is to stop me from editing my cookie and setting my ID to be someone else?

RE: Why do I get an extra blank line?

2003-07-10 Thread Christopher P. Maher
Do you have an OnRequestEnd.cfm file that has a blank line in it? It will be in the same directory as Application.cfm, which might not be the same directory as the template in question. I fought this one for days a couple years ago, and that's what it was. No. There is no OnRequestEnd

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 9:51 AM, Raymond Camden at [EMAIL PROTECTED] wrote: Not related to your issue, but this: cfelseif isDefined(COOKIE.LogInID) !--- Else the cookie WAS found, so we'll step in here and take the cookie's LoginID value to log in --- What is to stop me from editing my cookie and

Re: Resources on Structured Exception Handling

2003-07-10 Thread Dave Carabetta
Anybody point the direction for resources on best practices for Structured Exception Handling (in general and CF) Simon Horwith wrote a pretty exhaustive article on the ins and outs of this topic. You can check it out on his site under Papers. http://www.how2cf.com/ Regards, Dave.

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread webguy
Haven't read your code, but if you use HTTP Analyzer http://www.coolfusion.com/downloads/ or wget or telnet to see what is actually happening. Teach a man to fish ... ~ and you can sell him fishing equipment. WG -Original Message- From: Jeff [mailto:[EMAIL PROTECTED] However,

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
It does, unless someone decrypts your cookie. Why not simply store both the username and password? THen the only risk is if someone hacks into the users computer, and THEN the only thing loss is ONE account. Currently if I decrypt your cookie I can become any account if I guess the ID.

RE: Resources on Structured Exception Handling

2003-07-10 Thread David Collie (itndac)
Cheers Dave, Looking at it now :-) From: Dave Carabetta [mailto:[EMAIL PROTECTED] Subject: Re: Resources on Structured Exception Handling Anybody point the direction for resources on best practices for Structured Exception Handling (in general and CF) Simon Horwith wrote a pretty

Re: Setting of application variable error...

2003-07-10 Thread Stephen Moretti
Critz, You need a lock type on your cflock, but other than that I can't see anything... A... Unless the settings for locking are different between the two servers. The lock settings being stricter on the second server. Stephen - Original Message - From: Critz [EMAIL PROTECTED] To:

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 9:57 AM, Raymond Camden at [EMAIL PROTECTED] wrote: It does, unless someone decrypts your cookie. Why not simply store both the username and password? THen the only risk is if someone hacks into the users computer, and THEN the only thing loss is ONE account. Currently if I decrypt

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 14:57 pm, Raymond Camden wrote: It does, unless someone decrypts your cookie. Why not simply store both the username and password? Store a hash of the password on the client. Then if Evil Bob gets hold of the client machine, they can't retrieve the original password.

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread webguy
Hi, Raymond said: cfelseif isDefined(COOKIE.LogInID) !--- Else the cookie WAS found, so we'll step in here and take the cookie's LoginID value to log in --- What is to stop me from editing my cookie and setting my ID to be someone else? Actually on that subject, interesting articles on

Re: Setting of application variable error...

2003-07-10 Thread Critz
oi Stephen!! i've never used the type attribute for any of my locksi just always give them a name. i just checked the settings in the admin, and they are the same for both servers :( Crit Thursday, July 10, 2003, 10:04:15 AM, you wrote: SM

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
I'd see Thomas' reply on storing the hashed version of the password. This is better than my method. As for the mechanics of the cookie, you can either store one cookie, and then simply say the first 50 chars are username, the rest password, or use two passwords. I like to be anal, so if I am

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 10:11 AM, Raymond Camden at [EMAIL PROTECTED] wrote: I'd see Thomas' reply on storing the hashed version of the password. This is better than my method. As for the mechanics of the cookie, you can either store one cookie, and then simply say the first 50 chars are username, the

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
cfif GetAuthUser EQ cflocation url=login.cfm /cfif I assume you just typo'd above, but it should be cflocation url=login.cfm - you were missign the first -ray ~| Archives:

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
Oh hey, I think I know what you may be seeing. Are you already logged on? What do you see if you output getAuthuser()? Remember that the code INSIDE cflogin is only run if you are not logged in. === Raymond Camden,

Recursive cfinclude

2003-07-10 Thread Ian Skinner
A fun way to tie up a server. I just accidentally found out that you can recursively use cfinclude. That if you have a template named foobar.cfm and it contains a line cfinclude template=foobar.cfm that ColdFusion MX will create an endless loop of including the file over and over and over ...

Re: Populating PDF with coldFusion

2003-07-10 Thread Jim Campbell
Amy - I posed a similar question to this a couple of weeks ago, and based off the responses I recieved, I bought this custom tag: http://www.pdfconnect.com/ It's $200/server, and fabulously easy to use. Since I already had PDF forms available, it met my needs exactly, and I'd definitely

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 15:21 pm, Jeff wrote: cfif GetAuthUser EQ cflocation url=login.cfm /cfif Dump the value and see what it has, maybe it's being set to something funny ? I think you want a () in there too. -- Thomas C Advanced ColdFusion Programmer PLEASE NOTE: When the Recipient

repost cfc question

2003-07-10 Thread Tony Weeg
why is my page just stopping all cf parsing, at this point? its not getting to the cflocation tag? strange huh? maybe an inherent cant do with cfcs? thanks for any help!! tony cfinvoke component=theMatrix method=theDynamicMatrix returnVariable=matrixDisplay cfinvokeargument

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 10:25 AM, Raymond Camden at [EMAIL PROTECTED] wrote: cfif GetAuthUser EQ cflocation url=login.cfm /cfif I assume you just typo'd above, but it should be cflocation url=login.cfm - you were missign the first Yeah, I wasn't pasting, I was just typing from memory...but you

RE: Recursive cfinclude

2003-07-10 Thread Raymond Camden
Just don't do what I saw someone do: Pseudo-code for index.cfm cfif isDefined(url.load) cfinclude template=#url.load# cfelse a href=index.cfm?load=foo.cfmfoo/abr a href=index.cfm?load=goo.cfmgoo/abr /cfif So, when I saw links pointing back to the page with filenames in

RE: Recursive cfinclude

2003-07-10 Thread Mosh Teitelbaum
It's a feature. You can use it in cases where you require recursion but don't need/want scope separation like you'd get with a Custom Tag. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message-

Re: Recursive cfinclude

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 15:28 pm, Ian Skinner wrote: Is this a bug or a feature? If it's not a bug, I might have to think on it's a bug - it should be spotted at compile time :-) There are several include_once tags floating around. -- Thomas C Advanced ColdFusion Programmer PLEASE NOTE: When

RE: Recursive cfinclude

2003-07-10 Thread Ben Doom
Feature. I've been writing in an MVC pattern, and fairly often, I want to do step a, which decides it needs to call step c, which it does by recalling the controller, often from inside the controller. Did that make sense? -- Ben Doom Programmer General Lackey Moonbow Software, Inc :

Re: Recursive cfinclude

2003-07-10 Thread Sean A Corfield
Feature. In the same way that recursion is possible through custom tags, cfmodule and function calls (since all four pieces of machinery are fairly similar under the hood - a method call on a Java object). Sean A Corfield -- http://www.corfield.org/blog/ If you're not annoying somebody, you're

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 10:27 AM, Raymond Camden at [EMAIL PROTECTED] wrote: Oh hey, I think I know what you may be seeing. Are you already logged on? What do you see if you output getAuthuser()? Remember that the code INSIDE cflogin is only run if you are not logged in. Okay, this brings me to

Re: repost cfc question

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 15:29 pm, Tony Weeg wrote: !--- Stops here for some reason, i can do a cfdump here, and see what im supposed to see, it just wont cflocate me to the accounts page? --- cflocation url = accounts.cfm?step=Accessactualid=#url.AccountNumber#action=Access Have you already

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 15:40 pm, Jeff wrote: I'm on win2k, running IIS, with devCFMX running. Whenever I try to test pages that have cflogin code, I never completely log out. In other words, whenever I output GetAuthUser() I return JEFF-PC/Jeff. That's IIS's intergrated NT auth. then... --

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
Then that is the root of your problem. You aren't logged out. You need to add some kind of logout function, something like cfif isDefined(url.logmeoutbaby) cflogout /cfif === Raymond Camden, ColdFusion Jedi Master

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 10:51 AM, Thomas Chiverton at [EMAIL PROTECTED] wrote: On Thursday 10 Jul 2003 15:40 pm, Jeff wrote: I'm on win2k, running IIS, with devCFMX running. Whenever I try to test pages that have cflogin code, I never completely log out. In other words, whenever I output GetAuthUser() I

Re: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Jeff
on 7/10/03 10:53 AM, Raymond Camden at [EMAIL PROTECTED] wrote: Then that is the root of your problem. You aren't logged out. You need to add some kind of logout function, something like cfif isDefined(url.logmeoutbaby) cflogout /cfif Aha...see, I even made a logout.cfm that had the

RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread Raymond Camden
I was under the impression that the IIS Auth stuff wouldn't work unless you sniffed for cflogin.*, but who knows, that could be the issue. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com)

RE: repost cfc question

2003-07-10 Thread Tony Weeg
not sure I know what you mean by page headers, are you talking about anything that I want to show or output at that point, or are you talking about http headers? my cfc sets a buncha session vars that I want to use later on in the application, just wanted to make it a cfc to play with cfc's all

Nesting CFC's in a transaction block

2003-07-10 Thread Rich Z
Is it possible to do the following: CFTRANSACTION . CFINVOKE component=x method=updateX . CFINVOKE component=y method=updateY . /CFTRANSACTION My guess is the transaction will not be capable of rolling back. Any insight? Rich

2 things fixed for the price of one (was Re: [cflogin] yadda yadda yadda)

2003-07-10 Thread Jeff
on 7/10/03 11:07 AM, Raymond Camden at [EMAIL PROTECTED] wrote: I was under the impression that the IIS Auth stuff wouldn't work unless you sniffed for cflogin.*, but who knows, that could be the issue. Okay. Fixed. First problem, and the reason I posted. It was the fact that I was

RE: 2 things fixed for the price of one (was Re: [cflogin] yadda yadda yadda)

2003-07-10 Thread Raymond Camden
It was the fact that I was redirecting you to the login.cfm page which sat in the same directory as every other page. So in other words, my application.cfm was protecting my login.cfm page as well, and it was protecting it by redirecting anyone who wasn't logged in to my login.cfm

Re: repost cfc question

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 16:11 pm, Tony Weeg wrote: not sure I know what you mean by page headers, are you talking about anything that I want to show or output at that point, or are you talking about http headers? Yes. -- Thomas C Advanced ColdFusion Programmer PLEASE NOTE: When the

Re: 2 things fixed for the price of one (was Re: [cflogin] yadda yadda yadda)

2003-07-10 Thread Jeff
on 7/10/03 11:22 AM, Raymond Camden at [EMAIL PROTECTED] wrote: It was the fact that I was redirecting you to the login.cfm page which sat in the same directory as every other page. So in other words, my application.cfm was protecting my login.cfm page as well, and it was protecting it by

Re: Nesting CFC's in a transaction block

2003-07-10 Thread Dave Carabetta
Is it possible to do the following: CFTRANSACTION . CFINVOKE component=x method=updateX . CFINVOKE component=y method=updateY . /CFTRANSACTION That is correct. Currently, you're approach will not work, as the CFCs are not transaction-aware in this case. Regards,

SOT: 'Webinars'

2003-07-10 Thread David K
Client wants to do interactive 'Webinars'... In the past I've participated in a couple of the Macromedia 'Webinars' (pre-Breeze / pre-FlashComServer) where they were introducing a new product, etc. These sessions had both an interactive visual component (requiring the download and installation of

RE: 2 things fixed for the price of one (was Re: [cflogin] yadda yadda yadda)

2003-07-10 Thread Raymond Camden
on 7/10/03 11:22 AM, Raymond Camden at [EMAIL PROTECTED] wrote: It was the fact that I was redirecting you to the login.cfm page which sat in the same directory as every other page. So in other words, my application.cfm was protecting my login.cfm page as well, and it was

RE: 'Webinars'

2003-07-10 Thread Bryan F. Hogan
http://www.webex.com/ is kind of nice -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11:30 AM To: CF-Talk Subject: SOT: 'Webinars' Client wants to do interactive 'Webinars'... In the past I've participated in a couple of the Macromedia

RE: 'Webinars'

2003-07-10 Thread Tony Weeg
delivering webinars - we use webEx creating them - powerPoint, flash tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10,

Re: SOT: 'Webinars'

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 16:30 pm, David K wrote: interactive slide-show Isn't that an oxymoron ? -- Thomas C Advanced ColdFusion Programmer PLEASE NOTE: When the Recipient Is Not Directly Observing This E-mail, It May Cease to Exist or Will Exist Only in a Vague and Undetermined State.

RE: Nesting CFC's in a transaction block

2003-07-10 Thread Raymond Camden
Fixed in RedSky. (And yes, I know it's under NDA, but again, I was given permission to mention certain CFC bug fixes at the last two conferences. Thanks MACR. :) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Re: 2 things fixed for the price of one (was Re: [cflogin] yadda yadda yadda)

2003-07-10 Thread Jeff
on 7/10/03 11:33 AM, Raymond Camden at [EMAIL PROTECTED] wrote: No, that's not what I meant. My login logic isn't like yours. What I'm saying though, and where we both agree, is that at some point you need to present a login form. You can either cflocation to the form, which means you have to

RE: repost cfc question

2003-07-10 Thread Tony Weeg
well, im not sure what you mean then, that's the only code on the page...what you see in my original post. tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Thomas Chiverton

wins resolution

2003-07-10 Thread Ihrig Paul E Cont 88 ABW/EM
hey guys.. all the sudden an app i am working on has lost its sense of location. session.is_InsideHere so shows you are not Inside the Building when i am... the only thing has changed is an admin has updated a wins/ip thingy on the server. could that be it? on localhost it is fine...

RE: 'Webinars'

2003-07-10 Thread Dan Phillips
Sounds like WebX. They used that when they did the Red Sky presentation to Beta users. We have been doing really neat things with FlashComm and there is so much you can do with it. If you know Flash or have been wanting to learn, now is a good time Dan Phillips www.CFXHosting.com

RE: 'Webinars'

2003-07-10 Thread Dan Phillips
From a financial point of view, webex is very expensive. We are working on projects with FlashComm for clients that are going to end up saving quite a bit of money since they don't have to pay per seat in Webex. Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original

RE: Nesting CFC's in a transaction block

2003-07-10 Thread Rich Z
Wow, very sweet. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11:37 AM To: CF-Talk Subject: RE: Nesting CFC's in a transaction block Fixed in RedSky. (And yes, I know it's under NDA, but again, I was given permission to mention certain

OT: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Jillian Carroll
I've got an unusual problem. I have a Javascript that rotates through a series of books (images/text w/links). It's very simple. It works in IE and NS 4.x... But it doesn't workin Mozilla / NS 7... nothing appears on the screen. How can I modify this script/div so that it will display in all

Re: wins resolution

2003-07-10 Thread jon hall
Just walk out the door, and come back in...sometimes the sensor doesn't trip when it should. :) Going to a different domain or ip will cause the cfid and cftoken cookies not to be read, hence the session variables would be reset. Other than that, a Wins or IP change by itself would not cause a

RE: Nesting CFC's in a transaction block

2003-07-10 Thread Raymond Camden
I believe I said this yesterday, so forgive me if I repeat myself in my old age, but RedSky has some _very_ sweet fixes/changes to CFCs. Again, you can check out my presentations at cfun/mx on the rocks for more info. -Ray Wow, very sweet. -Original Message- From: Raymond

RE: 'Webinars'

2003-07-10 Thread Bryan F. Hogan
True, you can build very nice slide-show type apps with Breeze ($$$), Flash and FlashCom ($$). I still like Webex. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11:43 AM To: CF-Talk Subject: RE: 'Webinars' From a financial point of view,

MX Server Memory Usage

2003-07-10 Thread Scott Mulholland
Are there any benchmarks or thresholds for the proper amount of memory usage jrun.exe should be using, or does mx manage this better and grow as needed and then release it when done? ~| Archives:

Re: OT: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 16:50 pm, Jillian Carroll wrote: workin Mozilla / NS 7... nothing appears on the screen. How can I modify this script/div so that it will display in all browsers? Use the JavaScript debugger / console to asertain the problem. The fix should be obvious then. -- Thomas

Re: Internationalization Issue

2003-07-10 Thread Paul Hastings
I've got 2 templates. Both query a db and return some accented French text and a date. CFOUTPUT displays the text. Template 1 displays the date using DateFormat. Template 2 displays the date using LSDateFormat. Upon execution template 1 does not display the French characters correctly.

RE: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Dan G. Switzer, II
Jillian, I've got an unusual problem. I have a Javascript that rotates through a series of books (images/text w/links). It's very simple. It works in IE and NS 4.x... But it doesn't workin Mozilla / NS 7... nothing appears on the screen. How can I modify this script/div so that it will

RE: Dreamweaver tag updates for redsky

2003-07-10 Thread Barney Boisvert
Rumor has it that there are some new attributes to some tags. Kind of like how CFDUMP grew 'expand' and 'label' attributes between CF5 and CFMX. Might be new tags as well, but I don't know. If you take a close look at the stuff MM has released you can probably figure it out based on what things

RE: 'Webinars'

2003-07-10 Thread Josh Remus
Depends on how you look at it. When you weigh it versus a business trip, it becomes very cheap. Plus, there is another one out there (Placeware, I think) that is cheaper and is basically the same thing. Josh -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent:

RE: CF5 to MySQL without ODBC

2003-07-10 Thread Barney Boisvert
Use CFQUERYPARAM, but remember that it'll run slightly slower than not using it on MySQL 3.x and 4.0, because neither version understands the concept of prepared statements, so the overhead on the CF side provides no performance benefit. The improved security and consistency is still very

Re: OT: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Marlon Moyer
The problem lies in this section: if (document.layers) { document.layers[myDiv].document.open(); document.layers[myDiv].document.write(rs); document.layers[myDiv].document.close(); } else {

RE: Dreamweaver tag updates for redsky

2003-07-10 Thread Raymond Camden
Speaking of cfdump, if anyone is interested, I created a 'wrapper' for cfdump that lets you... *) Show the top X items. For an array, it's the first X items, for a query, the first X rows, for a struct, the first X keys as defined by structKeyList. *) Show only certain columns or struct keys, or

New CF_SQL_BIT error?

2003-07-10 Thread Cedric Villat
I am getting an error when using cfqueryparam and MySQL 4.0.13. Whenever I specify the cfqueryparam type to CF_SQL_BIT I get the following error: Unknown Types value The value I am passing is just 1, and it is hard-coded. If I change the type to CF_SQL_INTEGER it works just fine. Interestingly,

RE: 'Webinars'

2003-07-10 Thread Dan Phillips
True. The reasons company X wanted to use this type of forum is that they have sales reps in all parts the US And Canada and it's very difficult to plan a huge meeting and ensure a good portion will attend. Plus there is booking the hotels, pay travel expenses, etc. and with all the terrorists hub

CFStudio 5 and CFMX

2003-07-10 Thread Michael Traher
We found this link a couple of weeks ago but although you get the new tag definitions and help files, the help files are not integrated into the studio help pane, and you have to remember to add any new functions or tags into the list used by insight/completion. If anyone is interested I have

RE: 'Webinars'

2003-07-10 Thread Kevin Graeme
We use PlaceWare. http://main.placeware.com/ -Kevin -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 10:30 AM To: CF-Talk Subject: SOT: 'Webinars' Client wants to do interactive 'Webinars'... In the past I've participated in a couple

RE: 'Webinars'

2003-07-10 Thread Josh Remus
Which reminds me - can you do desktop sharing with FlashComm? Because that was another thing that's very handy, at least for IT-related demos. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 12:19 PM To: CF-Talk Subject: RE: 'Webinars'

RE: 'Webinars'

2003-07-10 Thread Bryan F. Hogan
Did any of you see the school app that MM had showcased http://www.macromedia.com/software/flashcom/productinfo/features/video/hongk ong/?promoid=pu1_homepage_hongkong_041603 A little rummaging around may produce the creators of the app the school was using. -Original Message- From: Dan

RE: 'Webinars'

2003-07-10 Thread Erika L Walker-Arnold
The WebEx API contract is very expensive, true, especially since they switched to a per seat, PER MINUTE conference pricing plan. Gone are the days when you could leave a conference open to do testing on ;) BUT If anything goes wrong, you've got a whole support department to work with ...

RE: 'Webinars'

2003-07-10 Thread Dan Phillips
Yes you can. It's not standard but I have seen a few people pull it off. Still kinda shaky but looks promising. Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Josh Remus [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 12:26 PM To:

Re: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Thomas Chiverton
On Thursday 10 Jul 2003 17:06 pm, Dan G. Switzer, II wrote: if (document.layers) { ... } else if (document.getElementById) { ... } else { ... I think w3c prefer you to try getElementById by default, but I'm not sure. -- Thomas C Advanced

RE: Javascript / Div's in NS 7 and Mozilla

2003-07-10 Thread Jillian Carroll
Thanks Dan (and everybody else who pointed me in the right direction) that did the trick! -- Jillian -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: July 10, 2003 10:06 AM To: CF-Talk Subject: RE: Javascript / Div's in NS 7 and Mozilla Jillian,

RE: 'Webinars'

2003-07-10 Thread Stephenie Hamilton
You can if you incorporate Camtasia, however I believe I heard that it would be a feature of flashcomm soon, but don't quote me. ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Josh Remus [mailto:[EMAIL PROTECTED] Sent:

RE: wins resolution

2003-07-10 Thread Ihrig Paul E Cont 88 ABW/EM
it worked earlier... i didn't change any thing that should affect the session. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: 'Webinars'

2003-07-10 Thread Mike Chambers
Breeze Live, which we announced this morning at Flash Forward, has support for screen sharing. More info at: http://www.macromedia.com/macromedia/proom/pr/2003/breeze_live.html http://www.macromedia.com/software/breeze/ http://www.markme.com/mesh/archives/002852.cfm mike chambers [EMAIL

RE: 'Webinars'

2003-07-10 Thread Dan Phillips
http://flashcommunicationserver.net has examples of 3rd party apps that have been developed. More are also coming out that solve a lot of the limitations that we have seen so far. If you use the components that MM provides, your app will only handle a few people and will give errors and will

RE: 'Webinars'

2003-07-10 Thread Stephenie Hamilton
WOOHOO! ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Mike Chambers [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 12:41 PM To: CF-Talk Subject: Re: 'Webinars' Breeze Live, which we announced this morning at

Sorting a Query Alphabetically

2003-07-10 Thread Jillian Carroll
Today is the day for me to have brain-freeze it seems! I want to order a search query by last_name instead of relevance... What's the best/easiest way to do this? My CFSEARCH tag: CFSEARCH NAME=phonedir COLLECTION=cla_intranet_phonedir TYPE=Simple

Re: wins resolution

2003-07-10 Thread jon hall
Obviously all you have to do is go to the server and turn the clock back to when you know it was working then :) Seriously...we can't help if we don't know any more info about what exactly is failing. Session variables disappear for a lot of reasons. -- jon mailto:[EMAIL PROTECTED] Thursday,

RE: Sorting a Query Alphabetically

2003-07-10 Thread Raymond Camden
Query of query, since cfsearch doesn't sort for you. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL

FB shopping cart

2003-07-10 Thread stas
This had been asked in the past, but I couldn't google much on fusebox shopping cart? Is there anything more recent than Comunion? It doesn't look as if they updated their software since '01. Thanks! ~| Archives:

RE: Sorting a Query Alphabetically

2003-07-10 Thread Jillian Carroll
Raymond, This is what I've got so far: CFSEARCH NAME=phonedir COLLECTION=cla_intranet_phonedir TYPE=Simple CRITERIA=*#form.SearchText#* maxrows=100 cfquery name=phonedir_2 dbtype=query SELECT * FROM

RE: Sorting a Query Alphabetically

2003-07-10 Thread Raymond Camden
How are you displaying the query? === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL PROTECTED] Blog

Testing/Regression Tools for Flash Apps?

2003-07-10 Thread Stacy Young
Wondering if anyone knows of any new products out now or on the way that support automated test scripts for flash apps? Last time I had done the rounds with most major vendors support was very limited. Thanks! Stace AVIS IMPORTANT: --- Les informations contenues

RE: Sorting a Query Alphabetically

2003-07-10 Thread Jillian Carroll
cfoutput query=phonedir_2 !--- Select various user details for output --- cfquery name=details datasource=#DSN# SELECT person.*, organization.name FROMperson JOIN organization ON

  1   2   3   >