RE: cfhtmlhead

2002-03-11 Thread Brian Scandale
Yeah, I thought of that except that the header gets parsed BEFORE I know what I want in the body tag... The cfincludes after the header might require the body onload statement... Just like before I know what I'll put into the head tag the head is created... therefore the cfhtmlhead is a great

RE: input readonly or disabled

2002-03-11 Thread Brian Scandale
EXCEPT that this.blur() causes the TabKey Sequencing to get caught in the blurred field... you have to use the mouse and click out of it. Kinda screws up tab key navigation... ugh! Is that the ONLY way to protect it in Netscape? At 03:10 AM 3/11/02 -0500, you wrote: No your right, not until

Re: cfhtmlhead

2002-03-11 Thread Jim McAtee
Either call the incHeader.cfm as a CF tag with an optional parameter, or else set a variable before the cfinclude. Within the body tag in that file, look for the variable. The variable could contain text to be inserted into the body tag, or it could define the entire tag. cfset bodytagtext =

RE: cfhtmlhead

2002-03-11 Thread Steve Oliver
Yeah, I thought of that except that the header gets parsed BEFORE I know what I want in the body tag... The cfincludes after the header might require the body onload statement... - If you set the variable BEFORE you use the cfinclude tag, the header get's parsed AFTER you set the

Re: cfhtmlhead

2002-03-11 Thread Brian Scandale
Hummm Ok. I'm going to have to dig a bit I'm using the fusebox methodology and incHeader is part of my first index.cfm which includes everything else necessary. Let me see what I can do here. thanks, til tomorrow Brian At 01:09 AM 3/11/02 -0700, you wrote: Either call the

R: 401.3 Unauthorized: Unauthorized due to ACL on resource

2002-03-11 Thread forrester
We discovered the same thing that the IUSER account had to be added otherwise you ge that message. By the way you need to be careful with asp applications. Depending on the type we have found that read access is not enough. In some cases the IUSER also needs read access to folders under \WINNT

related selects, not query driven

2002-03-11 Thread Will Swain
Hey guys, Does anyone have some code for two related selects, that are not query driven. All the examples I can find require the information to be drawn from a query. Cheers Will __ Get Your Own Dedicated Windows 2000 Server

CFPOP Error

2002-03-11 Thread nagraj
Hi , I am using CFPOP to retrieve one of the email Box, But i am getting the following error, Connection Failure Caught an exception, type = COM.ALLAIRE.COLDFUSION.POPCONNECTIONFAILURE The contents of the tag stack are: What could be reason for this.? Any Help is really appreciated. With

windows nt

2002-03-11 Thread Robert Orlini
Hello, Sorry this is not a CF question, but any insight is appreciated. I'm trying to upgrade a laptop from Win 98 to Win NT 4.0, but I get the flooiwng error either when I boot w/the Win NT cd-rom or load it while Win 98 is running: Setup unable to install winnt boot loader. Ensure c: drive

CF5 as Clustered app on W2k

2002-03-11 Thread Kevan . Windle
Has anyone set up CF 5.0 as a generic clustered application on a fail-over clustered W2K system? It won't work for us and I can't find any mention anywhere. Initially we set it up on both nodes of the cluster and it worked, but to avoid having to duplicate admin changes on both nodes, we

Regular expressions

2002-03-11 Thread Dowdell, Jason G
Hi all, I'm looking for a good tutorial/reference manual for regualar expressions. Being that I came from a business background and the majority of my coding knowledge is self taught I don't have some of the basic elements a computer science major would. I'm looking for a good guide on regular

RE: windows nt

2002-03-11 Thread Joshua Tipton
You are probably trying to install NT 4.0 on a fat 32 partition which nt4 cannot read. Joshua Tipton -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 7:40 AM To: CF-Talk Subject: windows nt Hello, Sorry this is not a CF question, but any

RE: windows nt

2002-03-11 Thread Steve Oliver
I'm not sure if you can upgrade 98 to NT without formatting the drive to NTFS first. I've installed NT a few times and it's one of the hardest OS's to install. If NT doesn't support one of your devices you have to put one in that it will support, and that's not going to happen with a laptop.

RE: 401.3 Unauthorized: Unauthorized due to ACL on resource

2002-03-11 Thread D . A . Clover
Thanks for the tip! At least we are wiser - rebuilding the server and changing the SID for the account was a key! David Clover IT Support Manager Maths and Computing Faculty The Open University Ext: 59367/53529 Fax: +44 (0)709 236 3568 Voicemail:

RE: windows nt

2002-03-11 Thread Joshua Tipton
NT does not have to be installed on a NTFS partition. It can be installed on FAT or NTFS. Joshua Tipton -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 7:53 AM To: CF-Talk Subject: RE: windows nt I'm not sure if you can upgrade 98 to NT

RE: windows nt

2002-03-11 Thread Steve Oliver
FAT, being FAT16, but not FAT32, which 98 systems are. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:17 AM To:

RE: input readonly or disabled

2002-03-11 Thread Semrau, Steven L Mr RDAISA/SRA
I have a similar problem and solved it by branching my function for NN and using something similar to below. Basically get the 'group' of radio buttons and set the 'checked' attribute to false. var voteGrp = eval(document.forms[0] + thisRadioGrpName); voteGrp.checked = false;

RE: Regular expressions

2002-03-11 Thread Peter Windemuller
http://www.houseoffusion.com/RegEx.ppt -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: maandag 11 maart 2002 13:48 To: CF-Talk Subject: Regular expressions Hi all, I'm looking for a good tutorial/reference manual for regualar expressions. Being that I came

RE: windows nt

2002-03-11 Thread Mark A. Kruger - CFG
To be absolutely clear - you cannot upgrade this laptop without reformatting the disk - meaning losing everything. Plus, I can tell you that upgrading a laptop (in particular) to NT Is a crap shoot at best. Look for preparation utilities or driver packs from the OEM for the laptop - good luck

thanks

2002-03-11 Thread Robert Orlini
Thanks all for the info. I'll leave it at Win 98...I'd rather deal with the occasional hang-ups. Robert O. __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month ·

Re: cfdirectory - Check to see if directory exists

2002-03-11 Thread phumes1
Hi, I want to check MyDirectory.name to see if a directory exists on the server and if not, create it. The below code doesn't work. Whats the correct cfif statement? cfdirectory directory=c:\temp\test name=MyDirectory cfif #MyDirectory.name# IS test h4Found/h4 cfelse h4Not

RE: cfdirectory - Check to see if directory exists

2002-03-11 Thread kbutterly
look at the directoryexists function. that will do what you want. Kathryn Butterly Web Developer Washington Mutual Finance 813 632-4490 [EMAIL PROTECTED] -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:56 AM To: CF-Talk Subject: Re:

RE: cfdirectory - Check to see if directory exists

2002-03-11 Thread Steve Oliver
cfif DirectoryExists(c:\temp\test\) h4Found/h4 cfelse Create Directory... /cfif _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent:

RE: Regular expressions

2002-03-11 Thread Dylan Bromby
http://www.amazon.com/exec/obidos/ASIN/1565922573/qid=1015855436/sr=8-1/ ref=sr_8_67_1/102-6894441-0446552 -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 4:48 AM To: CF-Talk Subject: Regular expressions Hi all, I'm looking for a

Re: Intranet apps

2002-03-11 Thread Frank Mamone
We have it on our Corporate intranet but it doesn't take up much real estate. I agree with Jeffrey that what you described is a failed implementation. We provide local weather based on their office location detected via their IP range. - Original Message - From: Jeffry Houser [EMAIL

Printer cuts off rows and columns

2002-03-11 Thread Tristram Charnley
I have a query which is the result of a cross select template, so I don't know in advance how many columns will be in the resulting table, but there's no way it will fit onto a single printed page. I need to know if there is a way to print this table so that columns and rows are not cut off by

Re: 401.3 Unauthorized: Unauthorized due to ACL on resource

2002-03-11 Thread Stephen Moretti
Some information for you to read through. Macromedia Security Zone http://www.macromedia.com/v1/developer/SecurityZone/ Running ColdFusion on NT/IIS with restricted user accounts http://www.defusion.com/articles/index.cfm?ArticleID=89 Bear in mind that the defusion article is for cf4.x I'm

RE: 401.3 Unauthorized: Unauthorized due to ACL on resource

2002-03-11 Thread Dave Watts
Though nobody offered anything on this - I've now discovered that the IUSR_servername account was not listed as a user of the z:\cfusion folders - and now I've run CACLS through the folders and added it, all is well. It's not at all clear how it happened - it may have been during a file

RE: OT: my own box

2002-03-11 Thread Dave Watts
I'm wondering if anyone can share thoughts on installing IIS My best advice is DON'T, if you can possibly help it. I personally disable IIS before my machines ever get connected to the Internet. Website Pro is the way to go. The time you'll save not having to spend checking for

RE: 401.3 Unauthorized: Unauthorized due to ACL on resource

2002-03-11 Thread Brockman, Chuck
I ran into the same issue. The way I corrected it was to give the IUSER account read access to all of the cf*.dll that are in the winnt\system32 directory. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:00 AM To: CF-Talk Subject:

RE: dynamic pages to html

2002-03-11 Thread BEN MORRIS
I have done similar low-tech solutions for demos, either using (in IE) save as 'web page complete' or 'web page archive' which will save the associated images as well. You can also just use alt-print screen and paste the screen shots into a ppt presentation, then you can make it 'clickable'

Re: OT: my own box

2002-03-11 Thread Pete Ruckelshaus
I agree with Dave entirely here (and I'm sure Dave just breated a huge sigh of relief). Microsoft (and IIS as a result), because of its position in the marketplace, is held to a higher level of scrutiny, and this, the flaws that do exist are publicized with a level of glee at Slashdot and the

RE: OT: my own box

2002-03-11 Thread Dylan Bromby
We ran Website Pro from January '96 (version 1.0) until just over a year ago then migrated to IIS on WIN2K. Our main contention was, under heavy load, Website just crapped out whereas IIS did a much better job it seemed of pooling/managing threads. Additionally, our CF-based B2B channel

CFSLIDER not working

2002-03-11 Thread Julia Green
Hi...My ISP says both CFGRID and CFSLIDER work but I do not get a complete applet when I go to: http://www.juliagreen.com/cfpasswd/f4.cfm This is for the slider -- I got the code from Ben Forta's book on 4.0, f4.cfm CFFORM ACTION=TEST.CFM METHOD=POST NAME=TEST CFSLIDER NAME=TEST1 BR

RE: CFSLIDER not working

2002-03-11 Thread Dan Phillips
I know that with CFGRID, I have sometimes has to created a virtual directory in IIS to the CFIDE folder on the server. This should fix it without any code modifications. Dan Phillips CFXHosting.com -Original Message- From: Julia Green [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11,

RE: Regular expressions

2002-03-11 Thread Carlisle, Eric
http://www.houseoffusion.com/RegEx.ppt Here's a quote from a great movie most of you should recognize... Sounds like somebody has a case of the Mondays! Hrmmm.. let's see.. must have been from Dude Where's My Car. __ Why

RE: OT Regular expressions

2002-03-11 Thread Eric J Hoffman
Office Space. Great Movie. The retort: Man, if someone said that to me I'd punch him. Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: Monday, March

RE: Regular expressions

2002-03-11 Thread Dave Carabetta
Here's a quote from a great movie most of you should recognize... Sounds like somebody has a case of the Mondays! Hrmmm.. let's see.. must have been from Dude Where's My Car. No way. That's clearly an Office Space reference. In the future, let's try not to confuse any line from Dude

RE: Regular expressions

2002-03-11 Thread Dowdell, Jason G
The answer I was looking for was Office Space. Fortunately, I've never seen Dude Where's My Car? but I can see that the majority of the people on this list are familiar with cubicle life. Thanks to everyone for their input on the regex guides. The powerpoint on HouseofFusion was quite good and

RE: OT: my own box

2002-03-11 Thread Haggerty, Michael A.
I used Website Pro version 1.0 in college, and I remember getting some free server software for building dynamic Web pages along with it. The name sounded like something from a physics class, and the name of the company started with an 'A'... Anyone remember? -Original Message- From:

RE: Regular expressions

2002-03-11 Thread Simon Horwith
there's also a ppt file on reg ex at cfugorama.com. Go to the library, then the section on DevCon 2001 presentations. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion 5 Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct

Transferring CFA Settings

2002-03-11 Thread Kamie Curfman
Hey, I'm hoping someone can help me with this. At work, I was using a desktop that had CF 4.5 Studio and Server on it. Today, I got a brand new laptop that I just put 5.0 (Studio and Server) on. Through our network, I've been able to successfully transfer all the (.doc, .cfm, etc.) files that

RE: Help - Security Configuration Editor?

2002-03-11 Thread Christopher Olive
go to http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/Default.asp pick tools and checklists on the left side. go nuts. CF_PLUG TYPE=SHAMELESS or you can call us as a consultant, since i've just opened up a new security division, of which i'm the head. :) /CF_PLUG

RE: OT: my own box

2002-03-11 Thread Dylan Bromby
ColdFusion shipped with Website Pro 1.0 on floppies. Website later shipped with iHTML. -Original Message- From: Haggerty, Michael A. [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:00 AM To: CF-Talk Subject: RE: OT: my own box I used Website Pro version 1.0 in college, and I

sql data type wierdness

2002-03-11 Thread John McCosker
greetings, CF outputs this value from MS SQL SERVER 7.0 as 3.02777801E-2 , in enterprise manager the value looks like this 0.03027778 any help would be appreciated, respectfully, J __ Get Your Own Dedicated

RE: Regular expressions

2002-03-11 Thread Carlisle, Eric
Here's a quote from a great movie most of you should recognize... Sounds like somebody has a case of the Mondays! Hrmmm.. let's see.. must have been from Dude Where's My Car. No way. That's clearly an Office Space reference. In the future, let's try not to confuse any line from Dude

RE: Regular expressions

2002-03-11 Thread Alex
On Mon, 11 Mar 2002, Dave Carabetta wrote: Here's a quote from a great movie most of you should recognize... Sounds like somebody has a case of the Mondays! Hrmmm.. let's see.. must have been from Dude Where's My Car. No way. That's clearly an Office Space reference. In the future,

RE: sql data type wierdness

2002-03-11 Thread John McCosker
Sorry its a float length of 8 dataype, -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 4:22 PM To: CF-Talk Subject: sql data type wierdness greetings, CF outputs this value from MS SQL SERVER 7.0 as 3.02777801E-2 , in

RE: sql data type wierdness

2002-03-11 Thread Dylan Bromby
That's pretty vague. What exactly is your question? -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:22 AM To: CF-Talk Subject: sql data type wierdness greetings, CF outputs this value from MS SQL SERVER 7.0 as 3.02777801E-2

Example of CFGRID

2002-03-11 Thread Julia Green
Could someone give me a generic example of CFGRID with both the originating form and the resulting form? All I can find is the originating form, I just need the simplest code possible to get it to work. Thanks -- Julia Green Julia Computer Consulting --- Dylan Bromby [EMAIL PROTECTED] wrote:

RE: Help - Security Configuration Editor?

2002-03-11 Thread Dave Watts
I'm setting up a client's box, and want it to be as secure as possible. I've seen many mentions of how wonderful the Security Configuration Editor is, but I'm damned if I can find a copy of it anywhere. The server is running Win 2k, which apparently has it installed by default. Well I

Re: sql data type wierdness

2002-03-11 Thread Stephen Moretti
Both numbers are the same. Enterprise manager is displaying it cleanly, where as you probably need a NumberFormat around the cf output of the variable. Floating point numbers are generally depicted with the E-x notation as you never know quite where that decimal point is going to be.

RE: OT: my own box

2002-03-11 Thread Dave Watts
I used Website Pro version 1.0 in college, and I remember getting some free server software for building dynamic Web pages along with it. The name sounded like something from a physics class, and the name of the company started with an 'A'... If I recall correctly, Website Pro did not

RE: OT: my own box

2002-03-11 Thread Mark A. Kruger - CFG
I would only add that in terms of new alerts, I have noticed an increase in CERT advisories regarding solaris, snmp, oracle, apache etc. - and a noticible decrease for MS products - although MS products are still pretty high. I do thin MS has done a better job with security over the last year -

Re: sql data type wierdness

2002-03-11 Thread Jim McAtee
If you mean the difference in value: Enterprise manager is rounding the number off slightly, while CF displays the number with a larger number of significant digits. Computer floating point numbers almost always have some sort of 'inexactness', or rounding error, whatever you'd like to call it.

RE: sql data type wierdness

2002-03-11 Thread John McCosker
Sorry for seeming hectic, some latitudes and longitudes are coming intp SQL server from server agents listening to GSM and GPS satellites, CF is displaying the data on some occaissions which seems to be wrong, e.g. In a vehicle reports page, I'm just outputting that data straight, no

RE: OT: my own box

2002-03-11 Thread Dylan Bromby
You may be right about v1.1... Good call on the ref to Bob. :) DB -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:52 AM To: CF-Talk Subject: RE: OT: my own box I used Website Pro version 1.0 in college, and I remember getting some free

RE: OT: my own box

2002-03-11 Thread Dave Watts
Good call on the ref to Bob. :) He taught me everything I know. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40

RE: sql data type wierdness

2002-03-11 Thread John McCosker
Thanks folks, understand better, J -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 4:48 PM To: CF-Talk Subject: Re: sql data type wierdness If you mean the difference in value: Enterprise manager is rounding the number off slightly, while CF

RE: sql data type wierdness

2002-03-11 Thread Dylan Bromby
I have a fair amount of exp with tens of millions of record SQL DBs with lat/lon fields. We chose to normalize all values into whole numbers. We had some of our own data, data from 3rd parties, and services from still more 3rd parties. It was critical to maintain the data in a consistent format

Update multiple rows

2002-03-11 Thread Paul Ihrig
ok i am trying to update multiple rows based on a form element that loops over a query can this be done? my action in the UPDATE is not working right. using sql 7. i could just do one at a time easy enough. but would like to do them together. !--- Form Page --- cfloop query=set_Emp INPUT

RE: Update multiple rows

2002-03-11 Thread Paul Ihrig
-paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 12:07 PM To: CF-Talk Subject: Update multiple rows ok i am trying to update multiple rows based on a form element that loops over a query can this be done? my action in the UPDATE is not

RE: Update multiple rows

2002-03-11 Thread Paul Ihrig
oops! my error Error Diagnostic Information ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC SQL Server Driver][SQL Server]Syntax error converting the varchar value '341,95' to a column of data type int. The error occurred while processing an element with a general identifier

RE: OT: my own box

2002-03-11 Thread Michael Dinowitz
Not only do I have copies of WS and WS pro, I've got emails from Bob and some code he wrote to help me write a CFX for website security. As for its current use, I've been using WS pro on HoF for years and have had no problems at all. I greatly fear going to IIS for many, many reasons. At

RE: sql data type wierdness

2002-03-11 Thread John McCosker
Thanks Dylan, Repectfully, -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 5:02 PM To: CF-Talk Subject: RE: sql data type wierdness I have a fair amount of exp with tens of millions of record SQL DBs with lat/lon fields. We chose to

RE: Update multiple rows

2002-03-11 Thread kbutterly
Paul, AFAIK, you can only update multiple rows at the same time if you are updating the rows to the same value(s). Since each of your updates are unique, then each query must be run separately. Kathryn Butterly Web Developer Washington Mutual Finance 813 632-4490 [EMAIL PROTECTED]

RE: Update multiple rows

2002-03-11 Thread Christopher Olive
use the IN clause. (this is assuming that FORM.phoneID is a comma delimited list) UPDATE tblPhone SET PhoneNumb='#FORM.PhoneNumb#' WHERE tblPhone.EmpResID = '#FORM.EMPLOYEE_ID#' AND tblPhone.PhoneID IN (#FORM.PhoneID#) christopher olive cto, vp of web development, vp it security atnet

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
You could user currentrow like so. input type=hidden name=records value=#set_Emp.recordcount# cfloop query=set_Emp INPUT TYPE=text NAME=PhoneNumb#currentrow# VALUE=#Trim(PhoneNumb)# SIZE=14 MAXLENGTH=14 class='input' input type='hidden' name='PhoneID#currentrow#' value='#Trim(PhoneID)#' br

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
Whoops, should be SET PhoneNumb='evaluate(FORM.PhoneNumb #Emp#)' WHERE tblPhone.EmpResID = '#FORM.EMPLOYEE_ID#' AND tblPhone.PhoneID = 'evaluate(FORM.PhoneID #Emp#)' _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com

RE: Help - Security Configuration Editor?

2002-03-11 Thread Dave Watts
I'm setting up a client's box, and want it to be as secure as possible. I've seen many mentions of how wonderful the Security Configuration Editor is, but I'm damned if I can find a copy of it anywhere. go to http://www.microsoft.com/technet/treeview/default.asp?url=/tec

RE: Update multiple rows, doh

2002-03-11 Thread Steve Oliver
One more try, lol SET PhoneNumb='#evaluate(FORM.PhoneNumb Emp)#' WHERE tblPhone.EmpResID = '#FORM.EMPLOYEE_ID#' AND tblPhone.PhoneID = '#evaluate(FORM.PhoneID Emp)#' _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com

RE: CFSLIDER not working

2002-03-11 Thread Joshua Tipton
The slider works fine when I go to the page. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 10:33 AM To: CF-Talk Subject: RE: CFSLIDER not working I know that with CFGRID, I have sometimes has to created a virtual directory in IIS to the

RE: OT: my own box

2002-03-11 Thread Dylan Bromby
Bob rules. He helped me with some advanced threading issues with WS. Still didn't make WS as heavy-duty as IIS for us, but he's still the king ;). I just thought it was cool he had his own registry entry: ../DENNY. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]

CFFILE/GetFileFromPath Problem

2002-03-11 Thread S R
Hi everyone, I've ran into a weird problem I can't get around. I'm using the CFFILE tag to upload some files. As you know, you have to use the enctype=multipart/form-data attribute within the CFFORM tag for CFFILE to work. But this causes a problem with the GetFileFromPath function because

Alternatives to CFCONTENT

2002-03-11 Thread Scott Van Vliet
Do any of you out there know of any alternatives to CFCONTENT? We recently upgraded our testing server to CF 5, but it hangs-up crashes when pages are hit that are using CFCONTENT to serve up Excel reports. We have already contacted Macromedia about this, and it is a known issue with CF 5,

RE: Help - Security Configuration Editor?

2002-03-11 Thread Christopher Olive
hey! i was fishing for a business trip down to new zealand! CF_ADVERTISEMENT and besides, does your class cover securing the OS of the box, or just CF? does it include a full vulnerability assessment of the client network? and a flight to new zealand? :) /CF_ADVERTISEMENT christopher

Target back to parent.

2002-03-11 Thread Neil H.
If I use JavaScript to spawn a new window how can I have that spawned window's form post back to the parent page, and then close the spawned window. Thanks, Neil __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256

Search Engines

2002-03-11 Thread Gordon Burns
I have a client with a new CF site where the pages are created dynamically form several CfIncludes. The client has used a SE optimization company that they employed in the past who have now sent me some changes that they want me to incorporate on the site. From a conversation I had with

RE: CFFILE/GetFileFromPath Problem

2002-03-11 Thread Dylan Bromby
Once CFFILE has uploaded the file, you can use the CFFILE vars to get the original file name. For starters, try outputting some of these: CFFILE.ServerFile CFFILE.ClientFileName CFFILE.ClientFileExt And you'll get the hang of it. -Original Message- From: S R [mailto:[EMAIL PROTECTED]]

Re: Regular expressions

2002-03-11 Thread Joseph Thompson
A few more :-) http://py-howto.sourceforge.net/regex/regex.html http://gosling.miass.chel.su/books/Perl/3/RegExp_Tutorial.html http://www.cfugorama.com/cfugorama/codelibrary/Regular-Expressions.cfm http://www.boost.org/libs/regex/syntax.htm

RE: Search Engines

2002-03-11 Thread Robert Everland
Well the thing with these search engine placement companies is they were worth something about 2 years ago. Right before google came around and the other search engines started making you pay for placement. Google goes by link popularity, the more people that link back to you the more

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
You can reference the parent window with opener opener.document.formname.fieldname.value=whatever; window.close(); _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Neil H. [mailto:[EMAIL

RE: OT: my own box

2002-03-11 Thread Brunt, Michael
It's a shame that IIS got so dominant, I also used WebSite Pro for many years then eventually and reluctantly went to IIS. With all the latest security woes re IIS Website Pro could have been in such a strong position as far as Windows based Web Servers go. One ironic note, whilst I was working

RE: CFFILE/GetFileFromPath Problem

2002-03-11 Thread S R
Thank you very much. It worked. From: Dylan Bromby [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: CFFILE/GetFileFromPath Problem Date: Mon, 11 Mar 2002 09:53:08 -0800 Once CFFILE has uploaded the file, you can use the CFFILE vars to get the original

Re: Target back to parent.

2002-03-11 Thread Neil H.
I am not worried about form field access. I am more worried about posting back to that original page and closing the current window (hence the window.close()) Is there a target attribute? Thanks, Neil - Original Message - From: Steve Oliver [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Search Engines

2002-03-11 Thread Steve Oliver
You know, that might of worked back in the day, but the new search engine's do not go by the number of words on a page. From what I've read, they go by links to your page (i.e. references from other pages to yours). What's that mean? Just make sure you put your copyright info with a link on

CFDirectory sort case-insensitive

2002-03-11 Thread Rosa, Issac
Is it possible to sort a cfdirectory ingnoring the case of the filename? cfdirectory action=LIST directory=#this.path# name=DirList sort=name Asc Currently it lists the files in this order: American_eagle.gif Aniheart.gif News_Flash.gif anchorage.jpg antenna2.gif I want the listing to be:

Re: Alternatives to CFCONTENT

2002-03-11 Thread Stephen Moretti
Scott, There is a patch for CFCONTENT on the Macromedia website. Hotfix 30471 Web Server stub fix to allow CFCONTENT to download binary files http://www.macromedia.com/v1/Handlers/index.cfm?ID=20371Method=Full#50 It may or may not be related, but you could give it a try. Regards Stephen

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
What exactly do you mean by posting back to the page? You run that script in the spawned window, and it sends anything you want back to the parent window, then the window.close() (run in the spawned window) will close the spawned window. _ steve oliver senior internet

RE: INACCESSIBLE_BOOT_DEVICE error on Win2k

2002-03-11 Thread Dirk Sieber
Hi David, You might want to take a look at this page: http://www.windowsreinstall.com/install/other/motherboard/problems.htm They discuss this exact issue, and a variety of possible solutions. Dirk -Original Message- From: David Grabbe [mailto:[EMAIL PROTECTED]] Sent: Sunday,

RE: Update multiple rows

2002-03-11 Thread Paul Ihrig
thanks Steve but that gives me this error: i may just do all updates separately. not sure ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC SQL Server Driver][SQL Server]Syntax error converting the varchar value 'evaluate(FORM.PhoneID 1)' to a column of data type int. -paul

Re: OT: my own box

2002-03-11 Thread Howie Hamlin
Bob's site is solo.dc3.com. He has some of his stuff on there... Howie - Original Message - From: Haggerty, Michael A. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 11, 2002 12:01 PM Subject: RE: OT: my own box I remember that! I spent almost a semester trying

RE: Update multiple rows

2002-03-11 Thread Andy Ewings
try wrapping it in the convert function -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: 11 March 2002 18:11 To: CF-Talk Subject: RE: Update multiple rows thanks Steve but that gives me this error: i may just do all updates separately. not sure

Re: Alternatives to CFCONTENT

2002-03-11 Thread Scott Van Vliet
Thanks for the tip, but unfortunately this won't fix the problem. Any other suggestions?? Thanks! - Original Message - From: Stephen Moretti [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 11, 2002 10:10 AM Subject: Re: Alternatives to CFCONTENT Scott, There

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
You have to wrap it in cfoutput or it'll try to put that text into the dbase. 'cfoutput#evaluate(FORM.PhoneID 1)#/cfoutput' _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Ihrig

RE: Target back to parent.

2002-03-11 Thread Dylan Bromby
Neil; This might help, it might not. I don't have code handy for forms, but here's how you do it with links. Perhaps you can adapt this to work with forms and if you get it, post back to the list. 1. Spawn the new window with a link like this: A

RE: INACCESSIBLE_BOOT_DEVICE error on Win2k

2002-03-11 Thread David Grabbe
Thanks -- this is just what I was looking for. David David Grabbe Manager, Information Systems Church of the Great God [EMAIL PROTECTED] http://www.cgg.org -Original Message- From: Dirk Sieber [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002

RE: Search Engines

2002-03-11 Thread Matt Robertson
Does anyone have current stats SE rankings? Last I heard Yahoo, at 38%, was still the top first-use search facility, although it was sinking. MSN was a distant #2 (about 16%) with Google and AOL making up the #3 and #4 spots (11 and 7 1/2%). That was May 2001 on Statmarket.com. That noscript

RE: Update multiple rows

2002-03-11 Thread Bryan Love
pound signs - yes CFOUTPUTs - no +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecommunication Systems [EMAIL PROTECTED] +---+ ...'If there must

RE: Alternatives to CFCONTENT

2002-03-11 Thread Dave Watts
Do any of you out there know of any alternatives to CFCONTENT? We recently upgraded our testing server to CF 5, but it hangs-up crashes when pages are hit that are using CFCONTENT to serve up Excel reports. We have already contacted Macromedia about this, and it is a known issue with

  1   2   >