RE: paypal

2001-08-16 Thread kavitha
yes... iam using the web accept method. Eric J Hoffman [EMAIL PROTECTED] wrote: Are you using their web-accept method where you are building the cart on your site and sending them the data for processing? Eric J Hoffman Director of Internet Development Small Dog Design, LLC

Javascript Validation Coldfusion ?

2001-08-16 Thread Ianv2
Hi How do you add validation to drop down form select boxes using Javascript. I have added validation (shown below in the js) for the two text input fields but need to build in validation for the two select boxes and also a CFFile field as these are required fields in the form, any ideas on

CF5 newbie question

2001-08-16 Thread Brian Barnett
Can someone tell me why you'd want to use cfsilent? I looked up the tag in Livedocs, but I don't get it. cfsilent - description - Suppresses all output that is produced by the CFML within the tag's scope. Thanks in advance, Brian FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

cfschedule question

2001-08-16 Thread Mak Wing Lok
hi, just curious, is cfschedule able to schdule-call pages from .asp, .php or any other valid http pages? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: GTE problem

2001-08-16 Thread Peter Tilbrook
From the co-author of the excellent Active range that must be no small apology. Pete, do not forget that this is still a point release of CF5 and bugs may crop up. CF is a better product now thanks to developers like yourself. Still has to be a slap however! Sorry! P.S. - is a Australia/UK

RE: CF5 newbie question

2001-08-16 Thread Philip Arnold - ASP
Can someone tell me why you'd want to use cfsilent? I looked up the tag in Livedocs, but I don't get it. cfsilent - description - Suppresses all output that is produced by the CFML within the tag's scope. It's a simpler way of stopping white-space than CFSetting EnableCFOutputOnly When

RE: Cookie Question

2001-08-16 Thread Peter Tilbrook
Fuon, Never rely on using cookies. ColdFusion's built-in handling of session/client variables negates the use of cookies for most situations. You need to setup your application to use either client or session variables and store them in, preferably, a datasource as opposed to the registry (the

Strange ODBC Error

2001-08-16 Thread Mike Connolly
Fellow CFers, Has anyone ever seen an intermittent ODBC error, like the following: ODBC Error Code = 01000 (General Warning) [Microsoft][ODBC SQL Server Driver][Named Pipes]ConnectionTransact(GetOverlappedResults()) It occurs seemly at random, and is resolved by refreshing the current CF

RE: nested loops/queries

2001-08-16 Thread Philip Arnold - ASP
I'm having a weird problem doing a nested loop and a nested query. I have two queries. The topmenu query returns ids 1,2,3 and 4. The leftmenu query returns ids 5,6,7,8,9 for topmenu.id=1 and 14,15,16 for topmenu.id=3. The queries are right and return the right data. For some reason

RE: Strange ODBC Error

2001-08-16 Thread Peter Tilbrook
Could possibly be linked to your licence and available concurrent database connections. Check your transaction and locking code and also take heed of Micro$ofts recent security bulletin for securing IIS. You might be being fired upon by denial of service attacks. -Original Message-

Strange ODBC Error

2001-08-16 Thread Russell Brown
Can't help with the problem , but why not use OLEDB when you use SQL server, its faster the ODBC and not prone to memory leaks either ? Russell Brown Internet Application Developer Freeserve.com Plc, PO Box 452, Leeds LS2 7EY Date: Thu, 16 Aug 2001 11:06:49 +0100 From: Mike Connolly [EMAIL

Dynamic page creation help

2001-08-16 Thread Nick Betts
The brief is to create webpages via an updater. The user can select how many pages they wish the site to have (1,2 or 3). Then based on a defulat template they can then upload different images, amend text, change colours etc. This will then create their very own webiste. Has anyone done

Re: Strange ODBC Error

2001-08-16 Thread jeff
Mike, Check your SQL Connection setting. It looks like it is using [Named Pipes]. Try changing to TCP/IP. Jeff Craig - Original Message - From: Mike Connolly [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 5:06 AM Subject: Strange ODBC Error Fellow

Re: Dynamic page creation help

2001-08-16 Thread sanathr
hi Nick Yeah I have done something like this I have done this in CF in what way can I help you. It is quite Exaustive the one I did. I feel it is better you tell me what you want I mean in what way I can help. bye have a good day

RE: Dynamic page creation help

2001-08-16 Thread Mark Smyth
Hi I did this before also, probably the easiest way is to use ewebeditpro and add some administration functions yourself. for info about ewebeditpro go to www.ektron.com HTH Mark Smyth Macromedia Certified ColdFusion Developer Systems Union eBusiness Solutions 01865 880800 [EMAIL

Re: Dynamic page creation help

2001-08-16 Thread Gary Kraeger
Aslo try activedit from cfdev.com, there product is very good. Gary - Original Message - From: Mark Smyth [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 7:44 AM Subject: RE: Dynamic page creation help Hi I did this before also, probably the easiest

RE: Casting Object in CF

2001-08-16 Thread Glenn Olsen
Javacast works fine in CF 4.5. Of course, it only lets you cast to a limited number of primitives. However, you can use a given class' methods to return objects of a specific class. For example: cfscript objGregCal = CreateObject(java,java.util.GregorianCalendar);

RE: CFLOCK Scope vs Name attributes !!

2001-08-16 Thread Raymond Camden
I may be crazy, but this is totally wrong. As far as I know, the only time you get the behaviour you describe below is when you use TYPE=Exclusive. Using SCOPE or NAME does not imply single threadedness, only the TYPE attribute can do that. I just did a quick test on this and verified it. You can

Re: Javascript Validation Coldfusion ?

2001-08-16 Thread Steve Reich
First I recommend you send a blank email to [EMAIL PROTECTED] and join JS-Jive, the javascript list. You'll get lots of help with Javascript. But to answer your question, you need to access the selectedIndex property of a select box to validate it script function validateSelect(){

RE: Strange ODBC Error

2001-08-16 Thread Melanie Maddix
Hi Mike; We would get that error whenever the connection to our SQL database failed, like is someone decided to reboot the database server while the site was still running. Melanie -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 6:07 AM

Re: cfschedule question

2001-08-16 Thread Howie Hamlin
CFSchedule calls pages via http so it should be able to do what you're looking for. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Join the DevCon community at

RE: Javascript Validation Coldfusion ?

2001-08-16 Thread JSchlosser
I tend to place the js in the action page, assuming the dropdown is in a form. This is what I use to force someone to select a value from a prefix field. CFIF parameterexists(FORM.NAME_PREFIX) IS no or #trim(FORM.PREFIX)# is '' SCRIPT Language=JavaScript alert(Please

RE: Strange ODBC Error

2001-08-16 Thread mherbene
You might want to try using the tcp/ip network library instead of Named Pipes - in general people seem to have more success with it. You have to adjust the network library (the network protocol choice) on both the server and the clients (including the CF server); the server can support more than

RE: Javascript Validation Coldfusion ?

2001-08-16 Thread JSchlosser
oops - I meant CFIF parameterexists(FORM.NAME_PREFIX) IS no or #trim(FORM.NAME_PREFIX)# is '' SCRIPT Language=JavaScript alert(Please Select a Prefix); history.back(); /SCRIPT CFABORT /CFIF I'm really sloppy this morning :-)

Re: Javascript Validation Coldfusion ?

2001-08-16 Thread Don Vawter
Why would you put it in the action page. You are requiring an extra trip to the server if you do that. If you put your validation in the calling page and trigger it with the onclick event of the submit button you save that trip. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk

RE: Microsoft Security Bulletin MS01-044

2001-08-16 Thread Ken Wilson
Just in case you didn't get this. This should take care of all IIS issues. Until (oh heck let's be generous) maybe NEXT WEEK! :) ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: (SQL) Selecting Random Record From Database

2001-08-16 Thread Cruz, Joseph
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You'll actually need to add an order by new_id clause at the end of that statement to consistently return a random record (otherwise you just get the first record in the table). SELECT TOP 1 employee_id, newid() as new_id FROM yourtable ORDER BY

RE: Javascript Validation Coldfusion ?

2001-08-16 Thread Larry Juncker
Try the following for your two select fields: if(document.form.sel1.value == 1){ missinginfo += \n - Please select option for Sel1; } if(document.form.sel2.value == 1){ missinginfo += \n - Please select option for Sel2; } Be sure and set up both Selects as

RE: CF5 newbie question

2001-08-16 Thread Billy Cravens
Reduce file size when sending content back to the client. When generating HTML, CF leaves whitespace when it is processing - increasing download times (not to mention affecting your overall bandwidth). CFSilent suppresses output of whatever's nested in it. Wrap it around big loops (but not

RE: Javascript Validation Coldfusion ?

2001-08-16 Thread JSchlosser
You're right. Dummy me. I inherited a site that works like this and when I needed to validate another field, I just parked it with the others. Not the best answer. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428

RE: .NET resources

2001-08-16 Thread Billy Cravens
I agree wholeheartedly. As cool as I think it can be, I think jumping on the .NET bandwagon right away is foolish (as with any unproven technology). The sad (and frightening!) thing is that a lot of companies seem to be thinking .NET now! I guess that's what separates the professionals from

RE: CF5 newbie question

2001-08-16 Thread Billy Cravens
A slight difference.. CFSilent ignores Cfoutput tags, and cfsetting enablecfoutputonly=yes doesn't --- Billy Cravens HR Systems, EDS [EMAIL PROTECTED] -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 5:00 AM To: CF-Talk Subject:

Netscape issue

2001-08-16 Thread Kevin Schmidt
Any idea why Netscape would want to save a .cfm file when a link is clicked? Works fine in IE. Kevin ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

dynamic populate select box question

2001-08-16 Thread Jeff Fongemie
Hello cf-Talk, I'm using a select box so a user can update a field. The field is already populated so I run a little query called getrecord to populate the selected option in the drop down box. Then another query called guidepicture will populate the rest of the options (the field is

OT: Removing some ODBC drivers

2001-08-16 Thread Timothy Lynn
'lo all, Strange question here. I'm not sure *how* I did, but I have quite a few redundant ODBC drivers installed on my system in different languages. For simplicity when installing Office 2k, I usually install the whole thing rather than clicking through its millions of options, and I assume

Re: GTE problem

2001-08-16 Thread eric . laney
CFAS read the press release that GTE is now Verizon. Sorry, couldn't resist. =B) |-+---| |Eric A. Laney|Religion without science is blind. Science without| |Systems Engineer |religion is lame.

RE: nested loops/queries

2001-08-16 Thread Shawn Grover
I've seen similar problems in my stuff. My solution was as follows: if I needed to refer to a query element from the outer loop, I would assign it to a variable. Then whereever I needed it in the second loop, I would refer to the variable. A bit of a kludgy fix, but it worked, and I don't

RE: dynamic populate select box question

2001-08-16 Thread Bill Killillay
Try something like this Can I somehow get the selected option value to not show up in the second query? cfoutput query=GetRecord select name=guidepicture option value=#guidepicture# selected#guidepicture#/option /CFOUTPUT cfoutput

RE: .NET resources

2001-08-16 Thread Jeffry Houser
At 09:45 AM 08/16/2001 -0500, you wrote: I agree wholeheartedly. As cool as I think it can be, I think jumping on the .NET bandwagon right away is foolish (as with any unproven technology). The sad (and frightening!) thing is that a lot of companies seem to be thinking .NET now! I guess

ahh....help with rpt grouping troubles

2001-08-16 Thread Amanda Stern
Hello, I am having trouble fixing this report and I am quite new to CFgetting a bit frustrated... my report should look something like this: (the problem is that the numbers for Recipient are in the Neither column and the numbers for the Neither are in the Recipient column. Applicant is

NY Fast Track to Cold Fusion Classes???

2001-08-16 Thread Joshua Miller
Anyone know of a reputable organization in the NY area that we could send some developers to for FastTrack and possibly Advanced CF and SQL training? Thanks! Joshua Miller Web Development - Eagle Technologies Group Business Solutions for the Next Generation www.eagletgi.com [EMAIL PROTECTED]

Re: Netscape issue

2001-08-16 Thread Michael Dinowitz
Check the netscape mappings and see if .cfm is mapped to anything. Netscape might be assuming its a file to be saved and run locally (like a PDF is). At 10:52 AM 8/29/01, you wrote: Any idea why Netscape would want to save a .cfm file when a link is clicked? Works fine in IE. Kevin

Re: NY Fast Track to Cold Fusion Classes???

2001-08-16 Thread Amanda Stern
www.winmill.com --- Joshua Miller [EMAIL PROTECTED] wrote: Anyone know of a reputable organization in the NY area that we could send some developers to for FastTrack and possibly Advanced CF and SQL training? Thanks! Joshua Miller Web Development - Eagle Technologies Group Business

CF5 Sporadic parser errors

2001-08-16 Thread Tim Bahlke
We've had CF 5 running on a Win2K box for 2 days now with code we brought over from 4.5 and NT4. Twice we started getting parser errors on, what seems like, random templates. When we cycle the services all seems to be right with the world again. Anyone have any ideas why this is happening?

CF5 on Linux/Apache

2001-08-16 Thread Chad Gray
So anyone have good/bad things to say about running CF5 on a Linux box with Apache? Im so sick of IIS and their lack of security im ready to switch! ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Mgmt vs Workers (was: .NET resources)

2001-08-16 Thread Braver, Ben
Jeffry, You saidOr Management from workers? Reminds me of a classic case from the mid 80's at a job in a galaxy far far away: The IT Director went off to an IBM dog pony show without taking any of his workers with him. (Read: strategist without tacticians.) They sold him the whole bridge

RE:RE: CFREPORT and the Crystal Server

2001-08-16 Thread Reed Powell
Ben - thanks for the info. I did more checking, and the DLL is in fact on my older server (now used for testing only) whose CF lineage began with CF 2.0. The DLL was in the SYSTEM32 directory for the NT 3.51 root, which is what OS was running back then. I tried coping it over to the SYSTEM32

RE: nested loops/queries

2001-08-16 Thread Tony Schreiber
I find that I have to use the second method (assigning outerloop id to a variable) to get nested query loops to work right. I've never understood why, but that has worked for me. I am not 100% sure, but I think I know what is going on (Something similar has happened to me before, too). In

RE: GTE problem

2001-08-16 Thread Pete Freitag
Peter, American and UK dictionaries come with the spell checker http://www.cfdev.com/spellcheck for activedit at no extra cost. ++ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM ColdFusion Developers Resources http://www.cfdev.com/ -Original Message-

Re: CF5 on Linux/Apache

2001-08-16 Thread Gonzo Rock
Been running the CFEval version on: Linux(Redhat7.0)/Apache1.3.19-5/PostgreSQL7.1-1/CF5Eval for over a month now. The Eval timed out but still accepts connections from 1 IP address... so I'm still evaluating... building an app on it actually. Need a full version for testing and deployment

RE: CF5 Sporadic parser errors

2001-08-16 Thread Pete Freitag
Tim, I think this may be what might be the cause of my GTE error (see recent post: http://www.mail-archive.com/cf-talk@houseoffusion.com/msg63449.html ) I don't think anyone outside of Macromedia would be able to explain this, so I urge Macromedia to check out the parsing code for

RE: SQL Syntax

2001-08-16 Thread David Baskin
Nathan, if you have a comma delimited file with the data you want to import into a table you can do an import in Enterprise Mgr. right click on the table that you want the data in and go to all tasks import data. point to the text file and follow the steps to import. HTH. d -Original

Re: SQL Syntax

2001-08-16 Thread Nathan Chen
Thank you, David, that's my next best option. My goal is to execute the select and insert query from a cfm page without any manual work. David Baskin wrote: Nathan, if you have a comma delimited file with the data you want to import into a table you can do an import in Enterprise Mgr.

RE: Javascript Validation Coldfusion ?

2001-08-16 Thread Shawn Grover
I do something similar, but run into problems with page caching. For instance, if an item was added to the database table the populates the drop-down, between the time you submitted, and hit the OK button to the alert box, the new item will not appear in the drop down. The only way around this

RE: Netscape issue

2001-08-16 Thread Shawn Grover
I would guess that the cold fusion server isn't running. So the server is returning it as an unknown mime type, which the browser typically will prompt you to save the file. Check your CF server. HTH Shawn Grover -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent:

Re: Dynamic page creation help

2001-08-16 Thread David Burt
where is it available at? - Original Message - From: Billy Cravens [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 10:02 AM Subject: RE: Dynamic page creation help As long as we're recommending WYSIWYGs, if you can guarantee IE, the DHTMLEdit ActiveX

Re: SQL Syntax

2001-08-16 Thread tom muck
CFQUERY NAME=rs DBTYPE=dynamic CONNECTSTRING= Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=c:\mydirectory\; Extensions=asc,csv,tab,txt;Persist Security Info=False; SELECT first,last from testnames.csv /CFQUERY cfloop query=rs cfquery name=myinsert datasource=mydsn Insert into employees

RE: RE: CFREPORT and the Crystal Server

2001-08-16 Thread Braver, Ben
Reed- FWIW, there's a process cfcrystal.exe running on my server. (W2K, CF4.5.2 Pro) That file is in c:\cfusion\bin. HTH. -Ben -Original Message- From: Reed Powell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 9:13 AM To: CF-Talk Subject: RE:RE: CFREPORT and the Crystal

variable name with number at the beginning

2001-08-16 Thread river
I am trying to get variables from an existing web site to mine, and I am having problem with the variable that the site generates. They use numbers at the beginning of the variable names. They use ASP which does not have any problems reading variables with numbers at the beginning, but CF does.

RE: Strange ODBC Error

2001-08-16 Thread Mark Woods
change your default Network protocol to TCP/IP in the SQL Server Client Config The named-pipes protocol does more than just shift data from A to B, it has some security mechanisms too. Any breaks in the network traffic between your web server and database can cause errors like this. Mark

RE: variable name with number at the beginning

2001-08-16 Thread Raymond Camden
If they are from a form, you can access them like a structure: CFOUTPUT#Form[9YourMother]#/CFOUTPUT That should work. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email : [EMAIL PROTECTED] ICQ

Java Script

2001-08-16 Thread Andy Ewings
I have 3 radio buttons on a form with the same name but different values. When each of them is clicked a JS function fires which attempts to trap the value. However I keep getting undefined. I'm pretty sure this is because the JS doesn't like the fact that the 3 controls are the same name.

Multilpe Domains on a single IP IIS with no virtual directory access

2001-08-16 Thread Mike Brunt
We have to set up a web site portfolio of 11 sites on a single IP with no access to IIS 5.0 to create virtual directories/folders. We need to use normal fully qualified domain names that will be set up in DNS to point to the one IP Address. We are able to get mappings set up in CF Admin and are

Re: Dynamic page creation help

2001-08-16 Thread Gary Kraeger
Try here. http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/editing/ mshtmleditor.asp Gary cfdev.com - Original Message - From: David Burt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 1:00 PM Subject: Re: Dynamic page creation help

Re: variable name with number at the beginning

2001-08-16 Thread Critter
Hello river, why not just append something to the beginning of the variable? -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion --- Thursday, August 16, 2001, 1:18:11 PM, you wrote: r I am trying

RE: Java Script

2001-08-16 Thread Raymond Camden
I believe you treat the control like an array. Maybe do.. val = document.formname.fieldname[y].value where y is the index that was selected. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email :

Re: SQL Syntax

2001-08-16 Thread tom muck
Also, for the text driver to work properly, you should have the column names as the first row in the text file. tom tom muck [EMAIL PROTECTED] wrote in message 3b7bfb4a$[EMAIL PROTECTED]">news:3b7bfb4a$[EMAIL PROTECTED]... CFQUERY NAME=rs DBTYPE=dynamic CONNECTSTRING= Driver={Microsoft

Re: Java Script

2001-08-16 Thread Critter
Hello Andy, html head titleUntitled/title /head SCRIPT LANGUAGE=JavaScript TYPE=text/javascript !-- function chkValue(control){ alert(control.value); } //-- /SCRIPT body form input type=radio name=radTest value=First onclick=chkValue(this) input type=radio

RE: Java Script

2001-08-16 Thread Craig Fisher
Show us the code! -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 11:18 AM To: CF-Talk Subject: Java Script I have 3 radio buttons on a form with the same name but different values. When each of them is clicked a JS function fires which

RE: Multilpe Domains on a single IP IIS with no virtual directory access

2001-08-16 Thread Ken Wilson
I've dealt with a similar situation using Intermedia before. I ended up dropping the sites into their own sub directories and then used a switch/case at the root level to look at the CGI.SERVER_NAME and cfinclude the appropriate application, index and onrequestend files for that site. While the

Re: Java Script

2001-08-16 Thread stas
input type = radio value = yes onClick = get(this) function get(radioBtn) { val = radioBtn.value; . } - Original Message - From: Andy Ewings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 1:18 PM Subject: Java Script I have 3 radio

Apache and cflocation......

2001-08-16 Thread Richard Kuryk
I am having a problem on my server where when I do a cflocation apache stops it from relocating and displays a 302 found error and comes up with the msg the document has moved here with a link. I can't seem to find any settings in my httpd.conf that would seem to fix this problem. Has anyone

RE: Java Script

2001-08-16 Thread Dan G. Switzer, II
Andrew, Check out the qForms API: http://www.pengoworks.com/qForms/ It'll make what you're trying to do very easy. As a matter of fact, if you want to know the value of the field, just do: obj.fieldName.getValue(); No need to trap the value, just call the getValue() method. You can

OT: test if Java is on

2001-08-16 Thread Bruce, Rodney
Hello all how can you test to see if the user has Java Scripting turned off? thanks Rodney ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: (SQL) Selecting Random Record From Database

2001-08-16 Thread Steve Reich
Someone posted this idea a while back. SELECT TOP 1 employee_id, newid() as new_id FROM yourtable CC That pulls the first1 record from the database. This will pull the first 1000 records... SELECT TOP 1000 employee_id, newid() as new_id FROM yourtable I need a random record. Isn't there

Diary of a hack attempt

2001-08-16 Thread Josh R
Wednesday morning, someone tried hacking into my website. (Not the first time, won't be the last) Didn't look like they made it. I can't be surprised. I have a controversial article about hacking plus I offer a security script. The fun part is there's nothing of value up there (my shopping

Re: test if Java is on

2001-08-16 Thread Steve Reich
how can you test to see if the user has Java Scripting turned off? Join JS-Jive and ask the question there. (Just send a blank email to [EMAIL PROTECTED]) Steve ~~ Structure your ColdFusion code with Fusebox. Get the official book at

URL string problem

2001-08-16 Thread Peter Fralin
I have a few dynamically generated hyperlinks in my site that generate links that look like this; http://www.theiia.org/iia/conferencedetails.cfm?conID=66conarea=conlistcat ID=2 and for 99% of my users the link works without any problems. But there is a small percentage of my clients who

Re: Java Script

2001-08-16 Thread Trishan Singh
what u can to do is check the checked property if (formname.elementname[radiobuttonnum].checked==true){ myvar=formname.elementname[radiobuttonnum].value } Does that help at all??? - Original Message - From: Andy Ewings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

looping form collection

2001-08-16 Thread Timothy Lynn
Welp, I'm about ready to hang up the keyboard with this thing. I've built a small shopping cart app. It's working perfectly on my development machine. Woohoo. So I move it to production to get it started. First problem -- can't lock scopes. I don't know what version they're using of CF (I

RE: test if Java is on

2001-08-16 Thread Joshua Miller
script if(document.all || document.layers){ ... execute code here ... } /script Joshua Miller Web Development - Eagle Technologies Group Business Solutions for the Next Generation www.eagletgi.com [EMAIL PROTECTED] -Original Message- From: Bruce, Rodney [mailto:[EMAIL

RE: Multilpe Domains on a single IP IIS with no virtual directory access

2001-08-16 Thread Billy Cravens
I’m going to assume that you don't have access to IIS to set custom headers. The way I've accomplished what you're trying to do is to take a concept from Fusebox: pass everything through one file (like index.cfm), and grab your content from a particular directory based on the server name. In

Re: Diary of a hack attempt

2001-08-16 Thread Fuon See Tu
whats even better, is if u can set up in SQL server or your DB program a personal string to append to your SQL code. that way it only runs when it sees that string there, so URL hacks will be almost useless Pooh Bear Web App Developer Picture Below (chicks dig my head!) HTML HEAD/HEAD BODY

Re: looping form collection

2001-08-16 Thread Fuon See Tu
errr, try #form.fld# heh Pooh Bear Web App Developer Picture Below (chicks dig my head!) HTML HEAD/HEAD BODY IMG SRC=http://www.geocities.com/kickerazn_2000/sniffles_138x92.jpg; /BODY /HTML From: Timothy Lynn [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

SQL and CF5-please help

2001-08-16 Thread Janine Jakim
It is one of those days. Here's the problem: 1. I did a verify test for a connection to my SQL2000 server when we still had CF4.5. It verified fine. We upgraded and I went to check it/hook it up (i've been using a test access db) and suddenly it isn't verified. We haven't had any rules/etc

CF5 Scheduled Task and CFHTTP

2001-08-16 Thread j s
Hello, We have been using a scheduled task to run a template that contains a cfhttp post for some time now without incident - that is, until we upgraded our dev server to 5.0. At first, I thought it might have something to do with how the code on the page being called is handling the cfhttpparam

form fields not being passed on the action page

2001-08-16 Thread Peter Fralin
I have a form field that is in a couple of radio button input tags, here is the code pinput type=radio name=publish value=1nbsp;Please submit this page for publishing. brinput type=radio name=publish value=0 checkednbsp;This page is in progress, please keep it in Edit mode./p As you can

RE: form fields not being passed on the action page

2001-08-16 Thread Howarth, Craig (IBK-NY)
Is it possible that the action page is being called directly -- i.e. not being posted. For instance, if someone has bookmarked the action page this error might occur if publish is the first form variable referenced. Craig -Original Message- From: Peter Fralin [SMTP:[EMAIL

Re: Diary of a hack attempt

2001-08-16 Thread Alex
SOLUTION: get on the bugtraq mailing list there are exploits posted evry dya ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Re: SQL Syntax

2001-08-16 Thread Nathan Chen
Thank you very much, Tom. I'll give it a try. tom muck wrote: CFQUERY NAME=rs DBTYPE=dynamic CONNECTSTRING= Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=c:\mydirectory\; Extensions=asc,csv,tab,txt;Persist Security Info=False; SELECT first,last from testnames.csv /CFQUERY cfloop

Re: looping form collection

2001-08-16 Thread Timothy Lynn
Wouldn't it be nice if it were that easy? It's saying that it can't resolve the parameter FORM. It should be able to accept a form as a collection for a loop. That's where the hiccup is happening. - Original Message - From: Fuon See Tu [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: Diary of a hack attempt

2001-08-16 Thread Rey Bango
Josh, Thanks for the information. Your account, observations and suggestions are a great help. I'm thinking about co-lo'ing a server so your post came in very handy. Best, Rey Bango... - Original Message - From: Josh R [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

Re: looping form collection

2001-08-16 Thread Deanna Schneider
I don't think that form fields were always stored in a structure, were they? I think you need to find out what version of cfserver they're running. I want to say that they weren't stored in a structure until 4.5, the same time scope became a valid attribute for locks. -d Deanna Schneider

sort of OT: firewall issues

2001-08-16 Thread Deanna Schneider
Hi Folks, Has anyone else had problems with clients using firewalls/proxy servers not being able to upload files? Not being the server person, I don't even know what to tell this client, other than that our server guy says we're not showing any errors from his IP in our error logs, so the upload

RE: ahh....help with rpt grouping troubles

2001-08-16 Thread Bryan Love
So change your column headers. The query will order the columns in alphabetical order (Applicant, Neither, Recipient) which is how it's being output. Your only real option here is to try this as your inner loop: cfoutput group=CompIncomp cfset variables.intTreatTotal =

RE: sort of OT: firewall issues

2001-08-16 Thread JSchlosser
No, just the opposite - all of my clients are using either firewalls or proxy servers and have no trouble at all uploading files to their respective sites residing on my server. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428

RE: sort of OT: firewall issues

2001-08-16 Thread Dan Phillips
Most system admins will block outgoing traffic on port 21 which is the default FTP port. I've run into the same situation with other clients several times and this is the case. The reasons for them doing this though varies to bandwidth monitoring or ensuring emplyees are working and not playing.

RE: dynamic populate select box question

2001-08-16 Thread Bryan Love
Try this: select name=guidepicture cfoutput query=guidepicture option value=#guidepicture# cfif guidepicture eq GetRecord.guidepictureselected/cfif#guidepicture#/option /cfoutput /select

RE: sort of OT: firewall issues

2001-08-16 Thread Dan Phillips
This is true also. There are about 101 ways to do Firewalls and Proxy servers. What is or isn't allowed it really up to the sys admin. When I used to work for a networking company, I had one client that wanted me to config the firewall to access nothing but port 80. Dan Phillips CFXHosting.com

Session control

2001-08-16 Thread Bruce, Rodney
In IE the user has the option Allow per-session cookies(not-stored under Tools/Internet Options/security. If the user checks Disable, this seems to keep session vars from working. In my application.cfm I have CFAPPLICATION ~~ SESSIONMANEGEMENT=yes SETCLIENTCOOKIES=NO ~~ and set CFCOOKIE

  1   2   >