RE: Image Saving

2005-11-22 Thread Jennifer Gavin-Wear
I'm fascinated by the my way or the highway content this subject tends to generate! lol I decided to store images for our in house dating site in the file system. My consideration was the bandwidth of the db handling images. We store about 1000 images currently (from about 4000 registered

RE: CF Hosting

2005-11-22 Thread Snake
Most of the web may be run of flinux server, but to date we have NEVER, NOT ONCE, had someone ask if we do Linux CF hosting. Every single customer/developer we have has developed on windows, and I can't imagine many cf developers running linux as their desktop OS. Russ -Original

RE: CSS table-type layout

2005-11-22 Thread Sandy Clark
Ray, Do yourself a favor. Check out sites on structural or semantic HTML. The idea being that HTML gives our content strucure and when you use the correct structure for your content (ie, tables for tabular data, H1...H5 for headings, lists for menus and other grouping of related items, fieldset

RE: CF Hosting

2005-11-22 Thread Snake
Well there's one reason why I don't have any interest in doing Linux hosting, cozz your all snobs :-) But really, more hassle, more obnoxious customers, more support, for what? Less customers than will pay the salary of a Linux expert. As I said, we have had no customers ask for Linux, and as we

RE: Automated email

2005-11-22 Thread Snake
We allow that tag too at cfmxhosting, it's no big deal. We just check the cfadmin regularly to make sure people have not setup schedules at the same time as other people. Russ -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 22 November 2005 02:22 To: CF-Talk

RE: JavaScript Autofill

2005-11-22 Thread Orlini, Robert
Thanks much Matthew and Bobby! The script works as I wanted. I need it to override whatever the user puts in there when the check the box and clear the fields when unchecked. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 4:21 PM To:

RE: Multi-tier affiliate program

2005-11-22 Thread Kristopher Pilles
HI Mike. I know AFF_Manager. I wrote a chunk of this program... I am not sure they are still selling copies but affmanager.com *if it looks like something you are interested in will contact owner ato try and get you a copy. kp -Original Message- From: Michael Dinowitz [mailto:[EMAIL

Re: Monitor CF Sever Directories

2005-11-22 Thread John Lucania
That is super. Thanks a bunch, Artur. jl On 11/22/05, Artur Kordowski [EMAIL PROTECTED] wrote: Hi John, to get total size, free space, files folders dates you can use the FileSystemObject CFC. It use the Windows COM API that makes you possible to get File System informations. You can

Re: Why do I need a Custom Tag Path for Components?

2005-11-22 Thread Troy Simpson
Thanks to everyone. Here is one more question. If I call a component without fully qualifing it, what would be the expected outcome. For example, if I call a component like this: CreateObject(component, myComponent); And NOT like this: CreateObject(component, myCFC.myComponent); How will

Re: Why do I need a Custom Tag Path for Components?

2005-11-22 Thread Troy Simpson
When people talk about the webroot, what are they referring to? Are they referring to the WebServer's web root, like in the case of IIS it might be C:\iis\wwwroot\ Or would this be another location unique to the ColdFusion Application Servers? Our ColdFusion Application Servers are configured

RE: Using FoxPro in ColdFusion

2005-11-22 Thread Russel Madere
Thanks Andy, I just fixed this, literally. As I started typing my test page popped up with the results I needed. I needed to change the user for the ColdFusion MX ODBC Server Service. I also changed the user for the ColdFusion MX Application Server and ColdFusion MX ODBC Agent services as well

RE: CF Hosting

2005-11-22 Thread Munson, Jacob
Most of the web may be run of flinux server, but to date we have NEVER, NOT ONCE, had someone ask if we do Linux CF hosting. There is a very good reason for that. You have a website. And from your website it is obvious you don't do Linux. I heard about you guys from someone a couple of

Re: Oracle errors in ColdFusion 5

2005-11-22 Thread Thomas Chiverton
On Monday 21 November 2005 17:25, Scott Stewart wrote: Were getting an error in ColdFusion 5 that I'm stumped on. Do you have anything funny in your CF DSN settings ? What if you create a DSN from scratch ? What is the content of the cfquery tag ? -- Tom Chiverton Advanced ColdFusion

RE: CF Hosting

2005-11-22 Thread Russ
It's true... even though our servers are running windows, the only reason is that our apps need sql server. If I were to start fresh, I would design something that's linux compatible. We have several servers with crystaltech, and when we decided to add capacity and load balancing, they lost

RE: Why do I need a Custom Tag Path for Components?

2005-11-22 Thread Dave Watts
When people talk about the webroot, what are they referring to? Are they referring to the WebServer's web root, like in the case of IIS it might be C:\iis\wwwroot\ Yes, that's what they're talking about. CF doesn't know anything about the web root, generally, although there may be a root

RE: Why do I need a Custom Tag Path for Components?

2005-11-22 Thread Dave Watts
If I call a component without fully qualifing it, what would be the expected outcome. For example, if I call a component like this: CreateObject(component, myComponent); And NOT like this: CreateObject(component, myCFC.myComponent); How will the component be located? Will

Re: form posting question

2005-11-22 Thread Larry Lyons
Evening, I have to submit a cfform with an input type of button, not submit. The cfform has a button which will delete the record displayed but I needed to put a warning alert up. Anyhow, I need to be able to tell the value of the button, the same thing as: cfif isdefined('form.submit') cfif

RE: form posting question

2005-11-22 Thread Munson, Jacob
I tried cfdump var=#form#, and my buttonDelete input field didn't exist in the struct. I guess you can't use that, at least I'm not sure how. But here's something I got to work: cfinput type=button name=buttonDelete value=Delete onclick=buttonDeleteValue.value='Delete' / input

RE: form posting question

2005-11-22 Thread Dave Watts
I tried cfdump var=#form#, and my buttonDelete input field didn't exist in the struct. The value for an INPUT with TYPE=button is not passed to the action page. This INPUT type is really just intended as a place from which you can attach JavaScript event handlers. Dave Watts, CTO, Fig Leaf

Parsing XML with ? xml:stylesheet ...

2005-11-22 Thread Stephen Moretti
I've got some xml files that have the following header before the main data: ?xml version=1.0 ? ?xml:stylesheet type=text/xsl href=supplier.xsl ? !DOCTYPE purchaseorder SYSTEM supplier.dtd All of this is valid and is parsed by the client's supplier and xmlparse() will happily parse this, but

RE: Parsing XML with ? xml:stylesheet ...

2005-11-22 Thread Dave Watts
I've got some xml files that have the following header before the main data: ?xml version=1.0 ? ?xml:stylesheet type=text/xsl href=supplier.xsl ? !DOCTYPE purchaseorder SYSTEM supplier.dtd All of this is valid and is parsed by the client's supplier and xmlparse() will happily parse

Question regarding closing tags

2005-11-22 Thread Charlie Hanlon
I have noticed in many code samples that I see/learn from, the use of a forward-slash in this fashion cfset variables.myVar = someValue / I understand that this represents that this particular tag has no closing tag. Is this a habit I should adopt in my coding and if so, should I use this

RE: Question regarding closing tags

2005-11-22 Thread Munson, Jacob
I have noticed in many code samples that I see/learn from, the use of a forward-slash in this fashion cfset variables.myVar = someValue / I understand that this represents that this particular tag has no closing tag. Is this a habit I should adopt in my coding and if so, should I

Re: Question regarding closing tags

2005-11-22 Thread Charlie Griefer
It's pure preference. Some people like it because it maintains consistency in their markup (XHTML tags are self-closing, so apply the same technique to your CFML tags). It has no impact (good or bad) on performance (that I'm aware of). It's neither right nor wrong to do it or not to do it. I

Re: Parsing XML with ? xml:stylesheet ...

2005-11-22 Thread Stephen Moretti
I've got some xml files that have the following header I don't think it's valid, actually. I think the syntax for linking to a stylesheet is xml-stylesheet, not xml:stylesheet. The colon is used for namespace prefixes. http://www.w3.org/TR/xml-stylesheet/ Cheers Dave. That is exactly the

Re: Question regarding closing tags

2005-11-22 Thread JediHomer
You will have to watch out for Custom tags and CFModule, as closing the tag this way will execute the file twice On 22/11/05, Charlie Griefer [EMAIL PROTECTED] wrote: It's pure preference. Some people like it because it maintains consistency in their markup (XHTML tags are self-closing, so

RE: form posting question

2005-11-22 Thread Kiley Simpson
I found the same thing, dumping the form variables shows the button isn't there. I would like to have two buttons (for lack of a better word) on the same cfform. One being Save and the other Delete. The page posts to itself and I would like to detect which button was clicked, the run the

RE: form posting question

2005-11-22 Thread Kiley Simpson
ug, that's bad news. I think I will have to abandon cfforms format=flash. Warning before a delete is such a common thing to do I can't really tell my customer to, just be careful. I wish macromedia would address this very common and, should be, simple operation. At 09:27 AM 11/22/2005,

unbelievable flash form problem

2005-11-22 Thread Anthony Prato
I'm not even sure what to say about this, or how anyone else can replicate it. I've got a flash form with a bunch of different elements. It has two buttons. I was styling one button, got it looking how I wanted and copied the style to the other button. reload the browser: Nothing wtf? tried again,

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
May or may not be part of your problem but when dealing with any flash, I always set my browsers to not cache anything so I know I'm always looking at the latest file. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Anthony Prato

Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
So I've been having a huge headache trying to figure out why our production cluster won't replicate sessions correctly while our internal cluster rolls along when a member is removed. We are currently running CF 6,1,0,83762 (Enterpise Edition), which is officially the ColdFusion MX 6.1 Updater. In

Re: unbelievable flash form problem

2005-11-22 Thread Kiley Simpson
Have you checked both buttons aren't the same name? At 10:13 AM 11/22/2005, you wrote: I'm not even sure what to say about this, or how anyone else can replicate it. I've got a flash form with a bunch of different elements. It has two buttons. I was styling one button, got it looking how I wanted

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
Another thing I've noticed about flash forms. You have to be careful where you put your comments. Eg... don’t do something like... cfgrid !---my comment--- query= etc... / ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby

Re: unbelievable flash form problem

2005-11-22 Thread Paul Hastings
Anthony Prato wrote: anyone got any ideas? turn on flash debugging. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a

Re: Multi-tier affiliate program

2005-11-22 Thread Mary Jo Sminkey
Mary Jo, who frequents this list, wrote cfwebstore, which has a built-in affiliate program, although I'm not sure of how may tiers, maybe she might have something for you Naw, it's a pretty basic one, just one tier. And definitely is not intended to be used as a stand-alone apart from

Re: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mary Jo Sminkey
i am a bit stumped as to whether i should be looking at one set of tables to handle all the options above, or whether i should create to distinct sets to handle either a discount scenario or a free product scenario. From my own experience, I would say to go with a different set of

RE: Question regarding closing tags

2005-11-22 Thread Bobby Hartsfield
It can affect custom tags that don’t check for the execution mode at the beginning of the tag. Eg... cf_mytag / and cf_mytag will act differently (on 6.1 at least) if the custom tag doesn’t check the executionmode. If you notice a problem (like the tag appears to execute twice) Just throw this

RE: easy cfgrid question

2005-11-22 Thread Nick Han
It's not empty. The email value is visible on the grid. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 7:35 PM To: CF-Talk Subject: RE: easy cfgrid question Because your email field is empty maybe? Try alert(Enter an email

RE: Can I Remove These Hotfixes?

2005-11-22 Thread Snake
If you have applied an updater that has those fixes, then u can delete the files and remove them form the class path -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: 22 November 2005 17:21 To: CF-Talk Subject: Can I Remove These Hotfixes? So I've been having a

RE: unbelievable flash form problem

2005-11-22 Thread Dave Watts
Another thing I've noticed about flash forms. You have to be careful where you put your comments. Eg... don't do something like... cfgrid !---my comment--- query= etc... / While I haven't tried that, I wouldn't expect it to work in regular CF code - you can't put one CFML tag within

Re: Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
On 11/22/05, Snake [EMAIL PROTECTED] wrote: If you have applied an updater that has those fixes, then u can delete the files and remove them form the class path Well yeah, I figured that. I was more wondering if it's safe to say that *any* hotfix with a *_61.jar name can be removed if MX 6.1

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
Ok, debugging is on now, it gets more wierd... here are the buttons: - cfinput type=button name=filterIt value=Apply Filter onclick=getHistoryData(); cfinput type=button name=thissucks value=Apply Filter onclick=getHistoryData(); style=cornerRadius: 0; borderThickness: 0; color:

RE: easy cfgrid question

2005-11-22 Thread Bobby Hartsfield
I apparently pasted the wrong code (although there is not much difference between it and this) since my alert() is different here... but this is what I have up and running fine... cfset empdata = querynew(user_last_name,user_first_name,user_email) / cfset queryaddrow(empdata) / cfset

Re: Question regarding closing tags

2005-11-22 Thread Charlie Griefer
yeah, pre-MX (CF 5), cfdump var=#foo# / would dump twice since it was implemented as a (built in) custom tag :) but good point, definitely worth pointing out. On 11/22/05, JediHomer [EMAIL PROTECTED] wrote: You will have to watch out for Custom tags and CFModule, as closing the tag this way

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
I'd also like to add that the entire file, html and all is only 15k. I deleted both buttons listed before and replaced them with an unstyled button. Then I copied/renamed the unstyled button 20 times. The move loads fine with all 20 buttons but breaks again if I try to add a style to any of them.

Re: Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
On 11/22/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 11/22/05, Snake [EMAIL PROTECTED] wrote: If you have applied an updater that has those fixes, then u can delete the files and remove them form the class path Well yeah, I figured that. I was more wondering if it's safe to say that

Re: form posting question

2005-11-22 Thread Ken Ferguson
Why are you checking the value for the buttonDelete form element in the first place??? Surely you're not using more than one button with that same name are you? I tried cfdump var=#form#, and my buttonDelete input field didn't exist in the struct

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
I haven’t tried it either, but I've noticed it fails from seeing other people try it recently ;) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 12:45 PM To: CF-Talk

RE: unbelievable flash form problem

2005-11-22 Thread Ian Skinner
While I haven't tried that, I wouldn't expect it to work in regular CF code - you can't put one CFML tag within another tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Later versions of CF do allow comments inside tags. This allows the selective switching on and off of

RE: easy cfgrid question

2005-11-22 Thread Nick Han
Bobby, I had this all along, alert(employee_grid.dataProvider[employee_grid.selectedIndex]['User_Emai l']). Flash displayed the field data file but when used ActionScript to reference fields, it's case-sensitiveshould have known..haha. Thanks. -Original Message- From: Bobby

SOLVED Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
well sort of solved, more like hacked found this post saying something about flex making wierd compile decisions and one solution is to add a bunch of junk code

RE: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mike | NZSolutions Ltd
Thanks mary, I think this is the way I will head - 2 different table setups. mike -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 November 2005 5:37 a.m. To: CF-Talk Subject: Re: Shopping Cart - Coupon/Discount i am a bit stumped as to whether i

Re: easy cfgrid question

2005-11-22 Thread Felipe Fernandes
cfformitem type=script function doubleCheck(){ var msg = 'The massage you want to display'; var alertSettings:Object = {title:'Warning!', message: msg, headerHeight:27, x: 60, y: 10} errorpopup = mx.managers.PopUpManager.createPopUp(this, FormErrorException, true,

Serving .htm as cfm on linux

2005-11-22 Thread David Livingston
I am trying to set up a way to serve .htm pages as cfm pages. The why is not important, that is what I want to do. I am running CF 7 on Suse 9.3 and Apache 2. I was hoping I could just change the AddHandler option and add .htm to the list. When I do that I get: [an error occurred while

RE: form posting question

2005-11-22 Thread Munson, Jacob
You'll have to ask the person that asked the original question. I was just trying some stuff as an attempt to answer the question. I think their problem has boiled down to a perceived limitation with flash forms, and how you can or can't validate things. -Original Message- From: Ken

Re: unbelievable flash form problem

2005-11-22 Thread Felipe Fernandes
I had some problem like yours a time ago, what i learned is the the 32K (or 64K sometimes) refer to i single line of mxma script. So lets understend what´s going under the hood here: When you do a flash form, coldfusion gets your code, process it and passes to it´s internal flex compiler (yes

RE: Scheduled Tasks Not Running

2005-11-22 Thread Claremont, Timothy
Here is a bit more information on my Scheduled Tasks Not Running conundrum... I have a series of scheduled tasks that are set to run at various times of the day. Since the migration to version 7, these tasks have stopped running. All of them. When I check the box that outputs the results to a

RE: Scheduled Tasks Not Running

2005-11-22 Thread Ian Skinner
Which type of CFMX7? Stand alone, Enterprise, Multi-instance? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole

Re: Scheduled Tasks Not Running

2005-11-22 Thread Tim Claremont
CFMX 7.01 Standalone, registered version. Windows Server 2k3 IIS ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

RE: Scheduled Tasks Not Running

2005-11-22 Thread Ian Skinner
Not sure how this would affect a move to MX7, but IIRC the username and password provided in a scheduled task can only work with basic authentication, not integrated. To use integrated the ColdFusion service would need to be run as a user that can be a service and have the appropriate

Re: form posting question

2005-11-22 Thread Kiley Simpson
nope. but i ultimately need to have 2 buttons, one a Save the other Delete. I want the Delete to pop a warning to the user. The onClick of the Delete has a #showAlert# call but if the button is of type Submit, the form posts regardless if the user responds to the alert. I am hacking my

RE: form posting question

2005-11-22 Thread Munson, Jacob
Try this: cfinput type=submit name=buttonDelete value=Delete onclick=return confirm('Are you sure?'); I'm not sure if this works with flash forms though. -Original Message- From: Kiley Simpson [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 11:57 AM To: CF-Talk

RE: form posting question

2005-11-22 Thread Kiley Simpson
confirm doesn't work with cfforms I'm afraid. I have a massive hack to solve this if anyone is interested. It is posting to another page and doing the check there, I really wanted to remain on the same page. At 01:11 PM 11/22/2005, you wrote: Try this: cfinput type=submit

Re: form posting question

2005-11-22 Thread Ken Ferguson
I think this will work for you. It allows you to use an alert as a confirm in flash forms. http://www.asfusion.com/blog/entry/alert-box-for-cfform --Ferg Kiley Simpson wrote: confirm doesn't work with cfforms I'm afraid. I have a massive hack to solve this if anyone is interested. It is

Re: form posting question

2005-11-22 Thread Kiley Simpson
Hi Ferg, This is a very cool example. I doesn't prevent a form post though. That's the part I don't know how to do. Very cool site! At 01:35 PM 11/22/2005, you wrote: I think this will work for you. It allows you to use an alert as a confirm in flash forms.

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
actually the function is pretty short function getHistoryData() { !--- get all the search criteria items --- var filterArguments = {}; !--- grids --- filterArguments.clinicid =

Re: form posting question

2005-11-22 Thread Ken Ferguson
well, change the event handler to post or not post based on the results of the alert confirm. --Ferg Kiley Simpson wrote: Hi Ferg, This is a very cool example. I doesn't prevent a form post though. That's the part I don't know how to do. Very cool site! At 01:35 PM 11/22/2005, you wrote:

Re: Serving .htm as cfm on linux

2005-11-22 Thread Ken Ferguson
Why would you want to do that? (just kidding) I think in MX6+ you've got to make some changes to an xml file. I haven't done this in a while, but I used to use different file extensions for my apps and it seems to me that once we entered the MX era, you had to touch the xml. I'll poke around a

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
I think people doing this way want to be stick to XHTML syntax which is a stricter way of writing HTML IMHO doing this for CF is a bit excessive, since CFML does not belong to HTML, but to SGML, like HTML and XHTML. -- ___ REUSE CODE! Use custom tags; See

Re: Serving .htm as cfm on linux

2005-11-22 Thread Ken Ferguson
This is talking about IIS, but it does mention the XML file changes. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18289 --Ferg Ken Ferguson wrote: Why would you want to do that? (just kidding) I think in MX6+ you've got to make some changes to an xml file. I haven't done

Re: form posting question

2005-11-22 Thread Felipe Fernandes
Ken here it goes: cfdump var=#form# cfsavecontent variable=actionRemove var myform = myform var teste = teste var confirm = function (evt) { if (evt.detail == mx.controls.Alert.OK) { myform.action = 'ok' _root.submitForm(); } } alert(Are you sure?, Warning, mx.controls.Alert.OK

Re: form posting question

2005-11-22 Thread Felipe Fernandes
kiley jus be carefull to do not use the word 'Delete' in place of 'Del' because it will throw an error of illegal actionscript use. Here it goes: cfdump var=#form# cfsavecontent variable=actionRemove var myform = myform var teste = teste var confirm = function (evt) { if (evt.detail ==

Re: form posting question

2005-11-22 Thread Kiley Simpson
i have two buttons, one a Save, the other a Delete. if the input is button and has the onClick=showAlert#, the alert pops up fine. but the action page doesn't know which input type was clicked, either the save or the delete. if it's a button the form does not post to the for variables. this is

Re: unbelievable flash form problem

2005-11-22 Thread Felipe Fernandes
If you got a workaround, it´s ok, but if you want to find th problem you can try do dump the form with pre cfdump var=#myform#/pre (or whatever is your form name) and look to the code pointed by the error message and find what is getting so big. Felipe On 11/22/05, Anthony Prato [EMAIL

Re: form posting question

2005-11-22 Thread Kiley Simpson
THAT'S IT!!! Thank you, thank you. This is fantastic My action page is very small now cfif isDefined('form.action') cfif form.action eq 'save' save cfc cflocation url=index.cfm cfelseif form.action eq 'okDelete' delete cfc cflocation url=index.cfm cfelseif form.action eq 'create'

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
wow nice! very cool trick thanks felipe On 11/22/05, Felipe Fernandes [EMAIL PROTECTED] wrote: If you got a workaround, it´s ok, but if you want to find th problem you can try do dump the form with pre cfdump var=#myform#/pre (or whatever is your form name) and look to the code pointed by the

How is the application.home set?

2005-11-22 Thread Troy Simpson
The jvm.config references a variable called application.home. Where does this variable get set? -- Thanks, Troy ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
Let me now take back what I said about fixing the problem. It turns out I was using the debug=true url paramter like the post I mentioned suggested. When I remove this url parameter the form breaks and gives the same message. I used Felipe's trick to dump out both forms. I then did a diff and the

Re: Question regarding closing tags

2005-11-22 Thread Nathan Strutz
On 11/22/05, Claude Schneegans [EMAIL PROTECTED] wrote: I think people doing this way want to be stick to XHTML syntax which is a stricter way of writing HTML IMHO doing this for CF is a bit excessive, since CFML does not belong to HTML, but to SGML, like HTML and XHTML. Close, but no ;)

OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Andy Matthews
Anyone have any ideas? I've cut out a portion of a form on which I'm working: http://www.andyandjaime.com/uploads/radiojs.html It's supposed to pop an alert box (and disable the form) when you click check out IF a) You've got either of the top two options (troop check or troop debit) selected

Re: SOLUTION: CF webservice consumed via .NET

2005-11-22 Thread dk
Hi Matt, Your solution to accessing CF QueryBean from .net is simply wonderful. I would also appreciate if you can share that .net class it with me - that would make things much easier. Thanks again, DK [EMAIL PROTECTED] I'll write it, but it'll be next week before I can get to it. You

Re: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Kiley Simpson
Are you saying you need a DHTML script to reactivate the submit button if the Troop T.E.N. value is not null and either Troop radio button is selected? At 03:02 PM 11/22/2005, you wrote: Anyone have any ideas? I've cut out a portion of a form on which I'm working:

RE: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Andy Matthews
Well, I'm not really sure what I'm saying. I just need for the form to submit if both of the criteria are met. If you select one of the bottom two, the full form works just fine. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

Re: Question regarding closing tags

2005-11-22 Thread Joe Rinehart
Personally I don't do it for XHTML purposes...I've noticed a lot of us that come from ECMA (C/Java/Actionscript) background tend to use it. For me, I'm used to spotting blocks of code surrounded by braces ( { and } ). Using the / helps to show me what's a statement and what's a block. -Joe On

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
though I'm so rusty on the SGML spec to say if CFML is fully compliant. Actually, it is not quite compliant: CFSET x = some text I think is an example, but most other tags are SGML compliant. I don't think Allaire ever claimed it was, I think the main purpose was to make it HTML like, but

Re: Question regarding closing tags

2005-11-22 Thread Nathan Strutz
On 11/22/05, Claude Schneegans [EMAIL PROTECTED] wrote: though I'm so rusty on the SGML spec to say if CFML is fully compliant. Actually, it is not quite compliant: CFSET x = some text I think is an example, but most other tags are SGML compliant. I'm not sure how that proves CFML's

RE: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Bobby Hartsfield
function testPayMethod() { f = document.payform; var radioCheck = false; var firstEl = 0; var lastEl = 3; for (i=firstEl;ilastEl;i++) { if (f.elements[i].checked == true) { radioCheck = true; } } if (!radioCheck) { //No radio buttons were selected alert('select at least one

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
CFSET x = some text I'm not sure how that proves CFML's non-SGML-ness. HTML allowed non-valued tag attributes, like td nowrap CFSET x = some text looks like an SGML tag, however x here is not an attribute defined in the DTD, it can be any variable name choosen by the user and, although I may

Re: Serving .htm as cfm on linux

2005-11-22 Thread David Livingston
Ken thanks for the link. I found the apache version here and this did it. http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm? catid=143threadid=1039875enterthread=y Thanks, Dave On Nov 22, 2005, at 2:58 PM, Ken Ferguson wrote: This is talking about IIS, but it does mention

Re: Question regarding closing tags

2005-11-22 Thread Barney Boisvert
Whether the syntax is compliant or not, I can't speak on. However, an SGML parser will get confused because of tags like CFELSE and CFELSEIF which break the contents of a CFIF tag into separate blocks, without actually making separate blocks. So it's definitely not good SGML from a semantic

RE: Scheduled Tasks Not Running

2005-11-22 Thread Snake
How did you setup the scheduled tasks. If u used cfschedule, then try setting them up via the cfadmin instead and see if they work. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: 22 November 2005 19:41 To: CF-Talk Subject: RE: Scheduled Tasks Not Running Not sure

Re: CF Hosting

2005-11-22 Thread James Holmes
I add a voice for HMS (Smarterlinux). When I looked for hosts, Linux was one of my criteria, even though my desktop is Windblows. On 11/22/05, Russ [EMAIL PROTECTED] wrote: It's true... even though our servers are running windows, the only reason is that our apps need sql server. If I were to

js popup ? damn that ie!!!!!

2005-11-22 Thread dave
trying to utalize a self sizing popup window, see it here: http://65.36.226.10/content/reelspecs.cfm on available colors. works everywhere but ie of course code is: head section: !-- popup script -- script type=text/javascript function PopupPic(sPicURL) { window.open( popup.cfm?+sPicURL,

Re: CF Hosting

2005-11-22 Thread dave
host my site goes above and beyond any host i have ever used, I will never use anyone else again, period! Getting my own dedicated server there in a month or so :) and a big hehe at winblows Rock on bill! ( u shmuck!!) ~Dave the disruptor~ good sites - make money getting rid of ie :)

re: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
and no im not drinking i just cant type 4 crap lol arggg ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: dave [EMAIL PROTECTED] Sent: Tuesday, November 22,

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Bobby Hartsfield
I haven’t been through your JS yet, figured id offer an option. If you are just displaying an image, could you not just get the height and width of the image and use that for the height and width of the popup call? I use imagecr3 to do just that on occasion. That, of course will only work if you

RE: CSS table-type layout

2005-11-22 Thread Jennifer Gavin-Wear
This is about the best site I know for CSS layout examples: http://www.pmob.co.uk/ I learnt my own css on www.w3schools.com Jenny ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Mark Henderson
Dave, It looks like you only want to open a window that sizes to the image within it (I could be wrong). If that's the case, then here's something I've used before, and it is cross browser compatible (from memory it works in IE, NS, FF and Opera). It may or may not suit your needs, but there's a

datasource problems

2005-11-22 Thread Jennifer Gavin-Wear
Hi, I've had a problem on creating a new cart site. I copied files from the first site into a second on my development pc, created a new db and the cf db connection in cf admin. Then I decided to replace the dsn from to statis an application set variable, took 2 mins on a search and replace. I

Re: datasource problems

2005-11-22 Thread Ray Champagne
DB Type? Jennifer Gavin-Wear wrote: Hi, I've had a problem on creating a new cart site. I copied files from the first site into a second on my development pc, created a new db and the cf db connection in cf admin. Then I decided to replace the dsn from to statis an application set

  1   2   >