Re: extract values from arrays dynamically

2004-12-10 Thread Joe Rinehart
Joy, I'm not sure what your original message was, but if you need the size of an array, just do arrayLen(array). -joe On Fri, 10 Dec 2004 15:08:50 -0400, Joy Holman <[EMAIL PROTECTED]> wrote: > I got the answer using my original code. > Today my question is: > Using that original code, how can

Re: extract values from arrays dynamically

2004-12-10 Thread Joy Holman
Using this code: QstnKey = ArrayNew(3); QstnKey[1][1][1] = "TEst1"; QstnKey[1][2][1]="a. choice 1"; QstnKey[1][2][2]="b. choice 2"; QstnKey[1][2][3]="c. choice 3"; QstnKey[1][3[1]="a. choice 1"; QstnKey[1][3[2]="b. choice 2"; QstnKey[1][3[3]="c. choice 3"; QstnKey[2][1][1]="Test2"; QstnKey[2][2][

RE: cfinclude not working in firefox

2004-12-10 Thread Emmet McGovern
How about... Put all the code on one page without the include, then test on firefox. My bet is that your markup isn't cross browser. Emmet -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 11:44 AM To: CF-Talk Subject: Re: cfinclude not wor

TinyMCE styles (Was Re: fck editor 2.0 RC)

2004-12-10 Thread Deanna Schneider
So, can you explain to me how to use the styles in TinyMCE, then? I have this code: tinyMCE.init({ mode : "specific_textareas", theme: "advanced", theme_advanced_toolbar_location: "top", theme_advanced_buttons1: "bold,italic,underline,strikethrough,justifyleft,justifycenter,justi

Re: XHTML Validation via CF

2004-12-10 Thread Rob
As far as validating before the page runs through the server, I am not sure thats possible only because you can write non xhtml on the file with cf, and it would be hard to not parse the cf (I dont think that is what you are after anyway) If you dont mind browsing to each page, FireFox has a tool

RE: XHTML Validation via CF

2004-12-10 Thread Ian Skinner
http://validator.w3.org/ I use this validator for checking my CF intranet pages. The second option allows you to upload a file to be checked (rather then checking a file on the internet directly). I run my page I wish to check, save it as an HTML file, then load that up to the tool. And I get

Re: extract values from arrays dynamically

2004-12-10 Thread Joy Holman
I got the answer using my original code. Today my question is: Using that original code, how can I dynamically determine how many questions are in Test1? The answer would be "2". ~| Special thanks to the CF Community Suite Gold S

Re: Return id after insert

2004-12-10 Thread Ben Doom
set nocount on; insert stuff; select @@identity as something; set nocount off; Just did this day before yesterday. :-) --Ben Phill B wrote: > I cant remember how to return the id from an insert. I have searched > but I can't find what I'm looking for. Not to me

RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Burns, John D
And no one can dcfeyer the srecet cdoe... Oh wait, yes they can, that was kinda the point :-) John Burns Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web Developer -Original Message- From: Lewis Sellers [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:52 PM

RE: Return id after insert

2004-12-10 Thread Ben Forta
Sounds like you are using SQL Server, so ... SELECT @@IDENTITY AS newid You can also put that in an INSERT trigger, so that the INSERT itself will return that new id. --- Ben -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:59 PM To: CF-Talk

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Adrocknaphobia
Its def reffered to as the [EMAIL PROTECTED] Editor. We actually went ahead and renamed the custom tag. -Adam On Fri, 10 Dec 2004 18:00:54 -, Paul Vernon <[EMAIL PROTECTED]> wrote: > > FCK editor ... does anyone else read that in a profane manner every time > they see it? > > Not quite as b

RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Ian Skinner
This only works with fairly simple content. http://www.mrc-cbu.cam.ac.uk/personal/matt.davis/Cmabrigde/";> Update 2: Graham has very kindly sent me a summary of his thesis work. <> it deosn't mttaer in waht oredr the ltt

Return id after insert

2004-12-10 Thread Phill B
I cant remember how to return the id from an insert. I have searched but I can't find what I'm looking for. Not to mention people keep buggin me making my job harder than it should be. :-| Anyway, it is some thing like @@identity but I cant remember. Little help? -- Phillip B.

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Lewis Sellers
Barney Boisvert wrote: > That's aewmsoe! I think I'd heard something like that before, but > never as clearly demonstrated as that. Course, now we're WAY OT, and > probably going to get yelled at soon. Doubt it. It's Friday. And night's approaching. /-) > cheers, > barneyb -- --Lewis Sellers

XHTML Validation via CF

2004-12-10 Thread Robyn
Hi all, I'm tasked with bringing our codebase up to XHTML standards, and have a question about how best to do this. I'm not sure where to start: First, as you probably know, there is a validator at w3.org that will validate your XHTML for you. This requires that the pages be out on the inte

Re: form submission

2004-12-10 Thread Jerry Johnson
A checkbox will only be defined if checked on the form. Otherwise, it is not defined. should do the trick. Jerry Jerry Johnson Web Developer Dolan Media Company >>> [EMAIL PROTECTED] 12/10/04 01:45PM >>> Hi. I have a checkbox on a form. The code on the action page should be executed only if t

Re: SQL Query

2004-12-10 Thread Cliff Meyers
On Fri, December 10, 2004 2:44 pm, Jason Smith said: > This code works fine with a access database, since converting the entire > cf > application to a live SQL database it has been the beginning of a > nightmare. I'm not real familiar with access but it seems they have some > really strange ways t

RE: Cannot Update Date/Time field

2004-12-10 Thread Richard Colman
Does that work with ACCESS?? -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 10:07 AM To: CF-Talk Subject: RE: Cannot Update Date/Time field Use cfqueryparam and set the null attribute dynamically Pascal > -Original Message- >

SQL Query

2004-12-10 Thread Jason Smith
This code works fine with a access database, since converting the entire cf application to a live SQL database it has been the beginning of a nightmare. I'm not real familiar with access but it seems they have some really strange ways to check dates and whatnot.

Re: Preventing users CFINSERTing duplicate records

2004-12-10 Thread Cliff Meyers
CK, ALTER TABLE jobs ADD CONSTRAINT myuniqueindex1 UNIQUE (co_id, co_name); That should do it. It creates a unique index across those two columns so that no row can have identical values. The database will throw an error if you attempt to insert a non-unique row. Alternatively, you coul

Preventing users CFINSERTing duplicate records

2004-12-10 Thread Chris Kavanagh
Hello list! Well, that's it really. What's the best way to prevent a user from inserting duplicate records? FYI in this case it's going into a MySQL table that has only two columns: -- co_id co_name [PKey] -- Thanks! CK. ~~~

Re: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Barney Boisvert
That's aewmsoe! I think I'd heard something like that before, but never as clearly demonstrated as that. Course, now we're WAY OT, and probably going to get yelled at soon. cheers, barneyb On Fri, 10 Dec 2004 14:17:03 -0500, Jim Davis <[EMAIL PROTECTED]> wrote: > > > > On Fri, 10 Dec 2004 18:

Re: paypal API

2004-12-10 Thread Lewis Sellers
Mark A Kruger wrote: > Lewis - thanks! you've been extremly hepful. I look forward to hearing more > about your cfx tag. > > -mark Ok. Sometime later tonight it's finally in "limited" beta. There are three issues I have to "massage" a bit and test against, then it's just trying to clean up the

Re: Cannot Update Date/Time field

2004-12-10 Thread Greg Morphis
BTW I quick search on google yielded. http://www.experts-exchange.com/Databases/Q_20657164.html apparently it's possible to set date values to null in Access On Fri, 10 Dec 2004 13:21:03 -0600, Greg Morphis <[EMAIL PROTECTED]> wrote: > If you're talking about CF output, use an if statement to ch

Re: Cannot Update Date/Time field

2004-12-10 Thread Greg Morphis
If you're talking about CF output, use an if statement to check the date for the dummy date.. if it is they display   or something. On Fri, 10 Dec 2004 10:53:01 -0800, Richard Colman <[EMAIL PROTECTED]> wrote: > Yes, I tried that, but it is ugly. When the user looks at the update, you > see a dum

RE: [OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Jim Davis
> On Fri, 10 Dec 2004 18:00:54 -, Paul Vernon > <[EMAIL PROTECTED]> wrote: > > > FCK editor ... does anyone else read that in a profane manner every > time > > they see it? > > > > Not quite as bad as fcuk :) French Connection United Kingdom put it on > all > > the clothing they sell... A lovel

Re: Catch CFMX Request Timeout ?

2004-12-10 Thread Ron G
in the application.cfm file I think works >> >Cant do that, i need to check if its taking more time than CFMX Server >setting, >if so execute some other logic to handle the situation correctly. > >Joe Eugene > -Original Message- > From: John Uebel [mailto:[EMAIL PROTECTED] > Sent: W

Re: Cannot Update Date/Time field

2004-12-10 Thread Jason Herbolsheimer
can you send your update query? - Original Message - From: "Richard Colman" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 10, 2004 11:44 AM Subject: Cannot Update Date/Time field >I cannot update a date/time field within ACCESS when the value of the field

RE: Cannot Update Date/Time field

2004-12-10 Thread Richard Colman
Yes, I tried that, but it is ugly. When the user looks at the update, you see a dummy listing that has to be explained (e.g. 1/1/ really means no data ...) If they run a report, etc. with the data, then you end up with a nonsensical date like 1/1/ in the report. Is this an ACCESS thing? Wo

form submission

2004-12-10 Thread Ken
Hi. I have a checkbox on a form. The code on the action page should be executed only if the checkbox was selected on the form. What CFIF statement can i use on the action page to achieve this. Using does not work. Any suggestions please. ~~~

RE: Blackstone Beta

2004-12-10 Thread Martin Parry
Among the things I've been waiting for the most is the ability to compile and "protect" code and deliver it in a redistributable format !! Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Anders Green [mailto:[EMAIL PROTECTED] Sent: 10

OT- DBA question SQL2K

2004-12-10 Thread Eric Creese
When setting up backup strategies would you rather wrtie the commands and save them in a job and schedule them or use the Data Maintainence Plan Wizard? I simply write the code and stick it in jobs and it works fine, however I got some people her telling me to use the Wizard because jobs are unr

Re: passing many variables between pages

2004-12-10 Thread Aaron Rouse
Most processes I have seen with similar needs do pretty much the exact method. It actually is an array of structures, if memory serves me right since I do not have access to that code presently. There are always many ways to skin a cat, go with whatever way you feel meets your spec the best and t

Re: Cannot Update Date/Time field

2004-12-10 Thread Greg Morphis
You could also use a dummy date.. 1/1/ or something. I did that when I ran into a similiar situation. On Fri, 10 Dec 2004 19:06:53 +0100, Pascal Peters <[EMAIL PROTECTED]> wrote: > Use cfqueryparam and set the null attribute dynamically > > Pascal > > > > > > -Original Message- >

Re: fck editor 2.0 RC

2004-12-10 Thread Matt Robertson
What Rick said. Except the part about the Commodore. Trash 80! -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdy

RE: Cannot Update Date/Time field

2004-12-10 Thread Pascal Peters
Use cfqueryparam and set the null attribute dynamically Pascal > -Original Message- > From: Richard Colman [mailto:[EMAIL PROTECTED] > Sent: 10 December 2004 18:45 > To: CF-Talk > Subject: Cannot Update Date/Time field > > I cannot update a date/time field within ACCESS when the value

Re: fck editor 2.0 RC

2004-12-10 Thread Lewis Sellers
Barney Boisvert wrote: > I can't speak for FCK editor (does anyone else read that in a profane > manner every time they see it?), Yes. But until you mentioned it I hadn't noticed I was doing that in my mind. :) -- --Lewis Sellers (AKA min) Intrafoundation Software http://www.intrafoundation.com

Re: Cannot Update Date/Time field

2004-12-10 Thread colman
yes, all the non-datetime fields update fine, with or without a null. Only the date/time fields have this problem. I have tried putting createodbcdate into the update, but does not make any difference. > can you send your update query? > > - Original Message - > From: "Richard Colman" <[EM

[OT] Fck... Profane? was fck editor 2.0 RC

2004-12-10 Thread Paul Vernon
> FCK editor ... does anyone else read that in a profane manner every time they see it? Not quite as bad as fcuk :) French Connection United Kingdom put it on all the clothing they sell... A lovely play on letters for their marketing dept Paul ~

RE: ColdFusion security framework

2004-12-10 Thread Jim Davis
> -Original Message- > From: The Wolf [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 6:30 AM > To: CF-Talk > Subject: Re: ColdFusion security framework > > Hi, > that sounds very interesting. > > It would be great if you can mail me it or post it to the list. > > Thanks a lo

Re: fck editor 2.0 RC

2004-12-10 Thread Barney Boisvert
I can't speak for FCK editor (does anyone else read that in a profane manner every time they see it?), but soEditor and HTMLArea both can have their image insert easily augmented to either include a browser for existing images uploaded to the system, or to have a full fledges manager for adding, ed

Cannot Update Date/Time field

2004-12-10 Thread Richard Colman
I cannot update a date/time field within ACCESS when the value of the field is null. The field is marked "not required" in ACCESS so it should accept nulls. I get a datatype mismatch. Does anyone have a solution for this problem?? Richard Colman ~~

firefox problem solved

2004-12-10 Thread Tim Laureska
Please, please !! don't make me stand in a corner wearing a dunce cap today Tim Laureska 1st-String Technologies ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http:/

Re: passing many variables between pages

2004-12-10 Thread Aaron Rouse
One of our systems just creates a structure, with keys being the hidden field names and then they have their values. That is assigned to a session variable and then referenced by the pages you are navigating through. On Fri, 10 Dec 2004 16:23:52 +, Keith Gaughan <[EMAIL PROTECTED]> wrote: >

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Aaron Rouse wrote: > One of our systems just creates a structure, with keys being the > hidden field names and then they have their values. That is assigned > to a session variable and then referenced by the pages you are > navigating through. That's assuming a lot, don't you think? Not to menti

RE: passing many variables between pages

2004-12-10 Thread Tim Laureska
Thanks Deith... I'll take a look I guess I could just do a cfinclude also? -Original Message- From: Keith Gaughan [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 10:28 AM To: CF-Talk Subject: Re: passing many variables between pages Tim Laureska wrote: > I have a typical f

Re: dynamic urls

2004-12-10 Thread Matt Robertson
I did this in my cms. In implementation the user either picks a page name or it gets picked for them. Thats why you see pages on my site like http://mysecretbase.com/ampro_home.cfm and http://mysecretbase.com/page_1078.cfm Both are dynamic pages, but on the latter one I got lazy. Basically CF

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
What do you mean Joe... I've been viewing cfm pages locally with cfincludes in the IE browsers all the time and the pages show up ... I've got CF 5 server installed locally -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 11:13 AM To: CF-Talk

RE: cfinclude not working in firefox

2004-12-10 Thread Murat Demirci
Could you send the text in your address bar? Murat. > -Original Message- > From: Tim Laureska [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 6:23 PM > To: CF-Talk > Subject: RE: cfinclude not working in firefox > > Nope... that didn't do it either.. still can't get cfinclud

RE: base href and in-page anchor links

2004-12-10 Thread Jim Davis
You might want to just set your base href as your page. For example something like this: http://www.mysite.com/index.cfm";> (Remember the Base HREF is the location from which you want relative URL's to be created - not specifically a folder you want to create them from.) This should solve your

Re: fck editor 2.0 RC

2004-12-10 Thread Rick Root
Mark Drew wrote: > You let users enter LOTS of HTML? :-O > > as for the images... inline in the content?!??! ye gads... your users > must be drunk with power!!! My users generally maintain their own content. If they want an image in the content, then they put an image in. My clients like not h

Re: Blackstone Beta

2004-12-10 Thread Matt Robertson
As far as I can tell 6.1 cured most of 6.0's ills. At least all of them I had any concerns about. Blackstone is evolutionary and not revolutionary, so the pain/suffering/bloodshed we had going 5.0 to 6.0 ain't happening. Its got really neat new things but these are things hanging off the existin

Re: passing many variables between pages

2004-12-10 Thread Joe Rinehart
Backing the form with a session-scoped CFC could encapsulate it all nicely, too. -joe On Fri, 10 Dec 2004 14:45:57 -0200, Marco Antonio C. Santos <[EMAIL PROTECTED]> wrote: > Using SESSION structure could be the best answer for Tim questions... > > Best regards > > Marco > > On Fri, 10 Dec 20

Re: ColdFusion security framework

2004-12-10 Thread Matt Robertson
Lite just does tiers. Access level 1, 2, 3 and so on Pro has roles and groups, or at least what I call them. I explain the implementations in the faq on the site. You can also pre-build default user profiles containing the roles and groups you want to have for default types of users (admin, mana

Re: passing many variables between pages

2004-12-10 Thread Marco Antonio C. Santos
Using SESSION structure could be the best answer for Tim questions... Best regards Marco On Fri, 10 Dec 2004 10:41:17 -0600, Aaron Rouse <[EMAIL PROTECTED]> wrote: > One of our systems just creates a structure, with keys being the > hidden field names and then they have their values. That is a

Re: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim, You're not browsing the .cfm file through the server. Your url in firefox should look something like http://localhost/myFile.cfm, _not_ file:///C:/jrun4/servers/cfusion-ear/cfusion-war/index.cfm (or wherever your CF server root is). -Joe On Fri, 10 Dec 2004 11:42:00 -0500, Tim Laureska

CFHEADER/CFCONTENT over SSL with IE

2004-12-10 Thread Cliff Meyers
I have a simple text file that I want to force-download for users of a web application. I've set up the following code: When I run the code in IE, I get the "File Download" dialog box as you'd expect. When I either try to open or save the file, I get this error message: "Internet Explorer c

Re: firefox problem solved

2004-12-10 Thread Bryan Stevenson
OK...no corner...but that 1st-String is gonna have to change to 2nd String ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com ~~

Re: ColdFusion security framework

2004-12-10 Thread Matt Robertson
oops. I said the pro ver just does encoded/expiring links and I meant lite. -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta ht

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
1) I'm running some kind of CF server locally and having the pages come through that local server. YES 2) My nav bar starts with http:, not file: well... hell there's the answer ... the address line was starting with file versus http. I couldn't get the firefox browser to launch the site when I

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Joe.. here's the view source stuff... also interestingly enough, the page views fine once up on the host... its just a local thing apparently Viewsource firefox: viewsource IE: Home Register On-Line Directions

Re: cfinclude not working in firefox

2004-12-10 Thread Bryan Stevenson
CF server processes thge CF code...hands it back to IIS (or whatever web server) and then back to the browser. What everyone is on about today is Are you opening the file in the browser (i.e. double clicking the file or using the file menu in the browser)? OR Are you navigating to a prope

Re: Moving records up or down.

2004-12-10 Thread Duane Boudreau
Anyone ever done this with a drag drop interface? Duane -- Original Message -- From: Mark Drew <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 10 Dec 2004 16:06:22 +0100 >I think your method is very valid for the point in which a new >article/

Re: cfinclude not working in firefox

2004-12-10 Thread Anders Green
At 11:09 AM 12/10/2004, Rick Root wrote: >Man, I'll be fascinated to see the results of THIS conversation :) Heehee!!! +===+ |Anders GreenEmail: [EMAIL PROTECTED]| | Home: 919.303.0218

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Mark Drew wrote: > Serialise it into wddx, encode it to base 64, put it in hidden var > > > > But then you have the awkward problem of deserialising it later on each page. -- Keith Gaughan, Developer Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland http://digital-crew.com/

RE: cfinclude not working in firefox

2004-12-10 Thread Anders Green
At 11:22 AM 12/10/2004, Tim Laureska wrote: >Nope... that didn't do it either.. still can't get cfincludes to >function on firefox locally... adding firefox to the cfstudio list of >browsers didn't help either So, just yes or no for each: 1) I'm running some kind of CF server locally and having t

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Yes... CF 5 server and studio -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 11:20 AM To: CF-Talk Subject: Re: cfinclude not working in firefox Tim, Is your "local" machine running ColdFusion server? Not Studio, but server itself. On F

Help w/using CFLDAP tag?

2004-12-10 Thread Bosky, Dave
Does anyone have an idea of what may be causing this error each time I execute the CFLDAP tag? This is my first experience using the CFLDAP tag. Running Active Directory/CFMX 6.1 --- LDAP: error code 1 - 20D6: SvcErr: DSID-031006C5, problem 5012 (DIR_ERROR), data 0 Here's the tag:

Re: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Ok. Can you paste what you see when you do view source in both IE and Firefox? On Fri, 10 Dec 2004 11:25:37 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > What do you mean Joe... I've been viewing cfm pages locally with > cfincludes in the IE browsers all the time and the pages show up ... > I

Re: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim, Is your "local" machine running ColdFusion server? Not Studio, but server itself. On Fri, 10 Dec 2004 11:22:39 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > Nope... that didn't do it either.. still can't get cfincludes to > function on firefox locally... adding firefox to the cfstudio l

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Nope... that didn't do it either.. still can't get cfincludes to function on firefox locally... adding firefox to the cfstudio list of browsers didn't help either -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 11:16 AM To: CF-Talk Subject:

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Heck we never had problems with even CF5 in regards to stability. Now speed, well that is a whole other story. On Fri, 10 Dec 2004 10:11:35 -0500, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > I've never had problems with MX to begin with. I was just giving the > standard stuff rather than go int

Re: cfinclude not working in firefox

2004-12-10 Thread Rick Root
Man, I'll be fascinated to see the results of THIS conversation :) ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http://www.ruwebby.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187010 Archiv

Re: Picky delete statement?

2004-12-10 Thread Mark Drew
I think it should be pointed out that this will remove that column from the TABLE, not just for a row (which I think the question was hinting at) MD On Fri, 10 Dec 2004 09:08:03 -0600, Ryan Duckworth <[EMAIL PROTECTED]> wrote: > You can remove a column, not just set it to NULL. > > Use the ALTE

Re: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim, You need to put your .CFM files on a ColdFusion server to get anything to work. Viewing them locally won't do anything. -Joe On Fri, 10 Dec 2004 11:13:58 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > Here's the cfinclude template in the one page within standard table > tags: > > >

RE: Blackstone Beta

2004-12-10 Thread Michael Dinowitz
I've never had problems with MX to begin with. I was just giving the standard stuff rather than go into specifics. NDA and all. Actually, there were events that caused me to make server changes last night and make the original post that are also NDA covered. The only thing I could do was remind peo

RE: Blackstone Beta

2004-12-10 Thread Michael Dinowitz
Probably not. The survey is from a third party and might not be up to date. If you get an email today about the 'beta' then all's good. > Michael, > > I went to the link you sent, and filled out the questionnaire for the Cold > Fusion option, but did not see anything about Blackstone except a >

Re: cfinclude not working in firefox

2004-12-10 Thread Bryan Stevenson
Ummmdon't jump the gun just yet folks...he hasn't said he's "opening "them in the browserjust "testing" them in the local browserI have CF and IIS on my local machine and "test" files all the time ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Syste

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Darn Rob ... you hit on it right there... forgot to add it to the browser list in CF studio... a big 'duh' for me thanks -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 10:59 AM To: CF-Talk Subject: Re: cfinclude not working in firefox Are you sayin

RE: cfinclude not working in firefox

2004-12-10 Thread Murat Demirci
Did you look the page source? There may be a rendering issue with your HTML output. Murat. > -Original Message- > From: Tim Laureska [mailto:[EMAIL PROTECTED] > Sent: Friday, December 10, 2004 6:02 PM > To: CF-Talk > Subject: RE: cfinclude not working in firefox > > When I use my local

RE: cfinclude not working in firefox

2004-12-10 Thread Anders Green
At 11:02 AM 12/10/2004, Tim Laureska wrote: >When I use my local browsers to test view a page (ie. haven't put the >files up on the host web server - just viewing on local computer) Ahhh. Ok, Tim, this will never work. Neither will any other coldfusion you test this way. It must be processed by t

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Here's the cfinclude template in the one page within standard table tags: And here's what's on the menu_top.cfm page: Home Register On-Line Directions Exhibitor Information Your Cart -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: cfinclude not working in firefox

2004-12-10 Thread Rob
Are you saying you are opening the file (the .cfm page) directly in browser without running it through a coldfusion server? On Fri, 10 Dec 2004 11:02:05 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > When I use my local browsers to test view a page (ie. haven't put the > files up on the host we

RE: cfinclude not working in firefox

2004-12-10 Thread Pascal Peters
cfinclude is server side and has nothing to do with the browser you use! Pascal > -Original Message- > From: Tim Laureska [mailto:[EMAIL PROTECTED] > Sent: 10 December 2004 16:54 > To: CF-Talk > Subject: cfinclude not working in firefox > > Has anyone run upon this? > > Tim > > > ~~

Re: cfinclude not working in firefox

2004-12-10 Thread Joe Rinehart
Tim, It's not possible for cfinclude to work in one browser and not in another. ColdFusion is server-side, so cfinclude happens long before the browser comes into play. What're the specifics of the situation? We may be able to help narrow down what's going on. -joe On Fri, 10 Dec 2004 10:54:

RE: cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
When I use my local browsers to test view a page (ie. haven't put the files up on the host web server - just viewing on local computer), the page that has the cfinclude reference shows fine in IE, but the "cfincluded" piece is missing when I view it in firefox -Original Message- From: John

Re: cfinclude not working in firefox

2004-12-10 Thread Troy Murray
Tim, Not sure how that's possible since the CFINCLUDE action takes place on the server BEFORE the browser gets the HTML page. Must be something else on the page. Are you using SESSION or CLIENT variables on the page? -t On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska <[EMAIL PROTECTED]> wro

Re: cfinclude not working in firefox

2004-12-10 Thread Rob
I don't think thats possible. cfinclude is executed on the server and has nothing to do with the browser (unless you are cfif on cgi.user_agent). What exactly is happening? On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > Has anyone run upon this? > > Tim > > ~~~

Re: cfinclude not working in firefox

2004-12-10 Thread John Beynon
definitely not - it's performed at the server nothing to do with the client... jb. On Fri, 10 Dec 2004 10:54:01 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > Has anyone run upon this? > > Tim > > ~| Special thanks to the

cfinclude not working in firefox

2004-12-10 Thread Tim Laureska
Has anyone run upon this? Tim ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby http://www.ruwebby.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186995 Archives: http://www.houseoffusion.com/c

Re: passing many variables between pages

2004-12-10 Thread Mark Drew
Serialise it into wddx, encode it to base 64, put it in hidden var On Fri, 10 Dec 2004 10:29:05 -0500, Tim Laureska <[EMAIL PROTECTED]> wrote: > I have a typical form where there are 10 - 15 form variables that must > be passed through multiple templates... > > I have always used the hidden

RE: base href and in-page anchor links

2004-12-10 Thread Hugo Ahlenius
Fixed it, with some CF code -- create a UDF to try to get the relative path from the cgi vars and display that. (This is an old app, all newer stuff is mach-ii -- and then you don't have this prob!) -- Hugo Ahlenius - Hugo Ahlenius

RE: Help w/using CFLDAP tag?

2004-12-10 Thread Dawson, Michael
I'm not sure if this is applicable since this related to Contribute, but... http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19576 This appears to be a user-related issue. If this is a domain, use the format: USERNAME="[EMAIL PROTECTED]", or whatever the domain name is. Also, usu

Re: passing many variables between pages

2004-12-10 Thread Keith Gaughan
Tim Laureska wrote: > I have a typical form where there are 10 - 15 form variables that must > be passed through multiple templates... > > I have always used the hidden input method > > > Is there a way to take all those hidden input lines and put them into > one variable and just pass that on

Re: CFEclipse / SpikeFTP

2004-12-10 Thread Rob
Hi Dov, You might want to direct cfeclipse specific questions to the cfeclipse mailing list. http://www.cfeclipse.org on the left is mailing list. I remember spike saying something about if the directories were not using the unix format the ftp view acted odd, but he'll have to answer for himself

Re: OT: base href and in-page anchor links

2004-12-10 Thread Thomas Chiverton
On Friday 10 Dec 2004 15:04 pm, Hugo Ahlenius wrote: > How do I then create a link to a local anchor, when I am not on the root > page? If I am not on the root page of the site, and there is a link http://www.ruwebby.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186985 Archives: htt

passing many variables between pages

2004-12-10 Thread Tim Laureska
I have a typical form where there are 10 - 15 form variables that must be passed through multiple templates... I have always used the hidden input method Is there a way to take all those hidden input lines and put them into one variable and just pass that one variable from template to template

Re: Blackstone Beta

2004-12-10 Thread Aaron Rouse
Luckily, I am so stupid that I never clue in about it :) On Fri, 10 Dec 2004 15:04:52 +, Thomas Chiverton <[EMAIL PROTECTED]> wrote: > On Friday 10 Dec 2004 14:58 pm, Aaron Rouse wrote: > > money back? ;) After all if already stable, not like you can make it > > more stable :) > > You keep

Re: fck editor 2.0 RC

2004-12-10 Thread Mark Drew
You let users enter LOTS of HTML? :-O I would prefer that the editor just had a class drop down and the B and I items assigned to a style too! as for the images... inline in the content?!??! ye gads... your users must be drunk with power!!! but seriously.. how do you then strip out the content?

RE: Picky delete statement?

2004-12-10 Thread Ryan Duckworth
You can remove a column, not just set it to NULL. Use the ALTER TABLE statement. Syntax: ALTER TABLE [table] DROP COLUMN [columnlist] INSERT, DELETE, UPDATE are all built to change specific records. ALTER TABLE changes the structure of your table. Good luck. Ryan Duckworth Macromedia ColdFus

<    1   2   3   >