RE: protect downloadble documents

2001-08-27 Thread Andrew Scott
There are a number of ways to do this, and the best if the situation is applicable to you is this: Underneath the project's root directory, have the document directory; this will stop people from just typing the url address and getting the document. Now you could do the following here, you could

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Tim Heald
Single quotes would screw your sql all up man. - Original Message - From: "Raymond Camden" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 11:08 PM Subject: RE: Encryption differences in ColdFusion 4.5 and 5.0? > > The issue with the out-of-the-box Col

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
> The issue with the out-of-the-box ColdFusion encrypt/decrypt functions is > that it doesn't limit itself to "safe" characters when doing the > encrypting. > Specifically, there's the possibility that the encrypt() function will > generate an encrypted string with single quotes ('), spaces ( ), >

Re: CF and Windows 2000

2001-08-27 Thread Kay Smoljak
On Mon, 27 Aug 2001 00:50:17 -0700, Sharon Fling <[EMAIL PROTECTED]> wrote: >Has anyone had problems running CF 4.5 on a W2K workstation? I'm >new to W2k and when I tried to get CF going, found that I >couldn't use Personal Web Server, but was told that I had to run >IIS. But IIS turned my machine

Re: protect downloadble documents

2001-08-27 Thread Vygandas Razhas
Store your document in folder not accessible from the Web. CFCONTENT tag uses physical path to access documents. Vygandas Razhas Senior Web Developer/ Project Manager Eriss Macromedia Certified ColdFusion Developer, MCSD [EMAIL PROTECTED] ERISS San Diego, California >From: "Don Vawter" <[EMAI

Re: protect downloadble documents

2001-08-27 Thread Don Vawter
someone had a trick for that I think it was www.somewher.com/mytemplace.cfm/realfilename.zip but I have a bad memory so don't rely on that. - Original Message - From: "Darryl Lyons" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 8:20 PM Subject: RE: pr

RE: protect downloadble documents

2001-08-27 Thread Darryl Lyons
the file for download will be the CFM file that is pushing the content back to the browser -- any ideas if there is a work around with this? I'm pretty sure there isn't, but just wanted to see if anyone had a workaround.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Dates in Access

2001-08-27 Thread Kay Smoljak
Hi all, Sorry for what is undoubtably a basic question, but I've been spoilt with SQL Server. I'm trying to insert a date into an Access database. The parts of the date have been split into their day, month and year components - and #createdate(form.year,form.month,form.day)# is throwing a very u

RE: protect downloadble documents

2001-08-27 Thread JSchlosser
Which filename? JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Darryl Lyons [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 7:58 PM To: CF-Talk Subject: RE: protect downloadble doc

RE: CFLOCATION

2001-08-27 Thread Dave Watts
> Can CFLOCATION be used to redirect to a URL in another Frameset? > > EG: There is a static frame on the left and a user logs in in > a frameset on the right. I need the CFLOCATION to load a new > frameset to replace the current. CF, and server-side code in general, doesn't know anything abou

CFLOCATION

2001-08-27 Thread Tilbrook, Peter
Can CFLOCATION be used to redirect to a URL in another Frameset? EG: There is a static frame on the left and a user logs in in a frameset on the right. I need the CFLOCATION to load a new frameset to replace the current. Thanks! Peter Tilbrook ColdFusion Applications Developer Australia New Zea

RE: protect downloadble documents

2001-08-27 Thread Darryl Lyons
Is there anyway to change the filename? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 25, 2001 8:52 AM To: CF-Talk Subject: RE: protect downloadble documents Darn, forgot you can't get at it. I'll put it up on the web Monday if anyone need

RE: protect downloadble documents

2001-08-27 Thread S R
Thank you very much, again. You've been a great help. Sal >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: protect downloadble documents >Date: Mon, 27 Aug 2001 17:19:09 -0400 > >The MIME Type Document is up at http://128.121.22.104/CFCONTENT_

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Troy Hiltbrand
On the subject of encryption in Cold Fusion, does anyone know what algorithm is used by Cold Fusion to encrypt and decrypt the data? Is it an accepted algorithm like RC4 or Blowfish or something like that or is it proprietary? If anyone could let me know, I would appreciate it. -Original Me

Re: loop question

2001-08-27 Thread Nelson Winters
Tony, I agree! Once you get used to using lists, you start using them all over the place. Attached is an example of some code I wrote last week to output a non-formatted xml packet (one without any spaces between the <> tags like you see when you output a wddx packet) into the nested format tha

RE: Netscape Cookie Woes

2001-08-27 Thread Jeffry Houser
At 03:53 PM 08/27/2001 -0600, you wrote: >Thanks for the response. The security check is a bit more comprehensive >than a simple comparison of vairables - we do some data access/logging as >well. ;) > Putting the routine in application.cfm would also affect the login >page so would requir

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Jon Hall
I've posted this snippet before, and I'll post it again. I got it from this list originally many moons ago... This produces a db safe string This decrypts the string This string will still produce characters that are not url safe, but that's not really the point anyway...I cant remember if

RE: loop question

2001-08-27 Thread Jones, Becky
this works. thank u. bec. -Original Message- From: Nate Smith [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 5:17 PM To: CF-Talk Subject: RE: loop question It seems that you be better off using this: SELECT * FROMqryCHECKOUT WHERE AppID IN (#form.appid#) AND Che

RE: New IIS security tool

2001-08-27 Thread Lee Fuller
I can't get the silly thing to work. Keeps erroring with an "SID" error. Was going to test it on a dev system.. But looks like it isn't going to run anyway. Lee Fuller Chief Technical Officer PrimeDNA Corporation / AAA Web Hosting Corporation "We ARE the net." http://www.aaawebhosting.com > -

Re: loop question

2001-08-27 Thread Tony Schreiber
Ah, the joy of finding lists in everything we do... ;p I find that when doing funky text processing or parsing, it's helpful to find lists where you wouldn't think there are...for example: A text file is a list ( delimiter CHR(10) ) of records, A hostname is a list (delimeter ".")... And as How

RE: Netscape Cookie Woes

2001-08-27 Thread Shawn Grover
Thanks for the response. The security check is a bit more comprehensive than a simple comparison of vairables - we do some data access/logging as well. Putting the routine in application.cfm would also affect the login page so would require some additional logic to have it NOT run when viewing th

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Jeffry Houser
At 05:12 PM 08/27/2001 -0400, you wrote: > > >As a side, however, why are there even "unofficial" functions included in > > >the standard distribution of ColdFusion? > > > >It's a common thing. There are tons of undocumented functions as part > > of the Windows API, aren't there? > >They

Caching Insert Problem

2001-08-27 Thread Joshua King
Building a simple prototype using MS Access (perhaps the problem starts here), into which I'm inserting data. The basic problem is that each time the page is requested, the exact same data is inserted. I've got "Show Query Information" enabled in the Admin, so I can see that the query is corr

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Tyson Vanek
Ray and all, The issue with the out-of-the-box ColdFusion encrypt/decrypt functions is that it doesn't limit itself to "safe" characters when doing the encrypting. Specifically, there's the possibility that the encrypt() function will generate an encrypted string with single quotes ('), spaces (

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
> that may be the case, but raymond implied that one wasn't to use the > function at all (it's "dangerous")... and seeing as how he's from > macromedia, i wanted to know why it's included if it's not supposed to be > used. Woah now, hold up. I've said this before and I'll say it again. I speak

Re:[Re: Create a dynamic array]

2001-08-27 Thread Julia Phu
Thanks again for the assistance. I want to populate data based on the first select drop down. I tried the AutoPopulate and TwoSelectsRelated from the Allaire Developer site, but I don't know where to place the tag and what else need to be done. Please see below of my code. I'm able to create a d

reg expression help please?

2001-08-27 Thread Rick Lamb
Hoping someone with regular expression knowledge could help me. I need to take a string and eliminate everything but numbers, "-" negative signs and "." decimal points. Basically just leaving pos and neg decimal numbers filtering out anything else. Anyone willing to help? Thanks, Rick

RE: loop question

2001-08-27 Thread John Quarto-vonTivadar
Becky, You can fix it by putting in a condition that is always true as the first condition, therefore all following conditions can be prefaced with the AND/OR (so you wont have to do a CFIF test) Such as: (note the WHERE line) SELECT * FROM qryCHECKOUT WHERE 0=0 AND OR AppID = #h#

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
Is it just me, or does it seem like Raymond almost has a chip on his shoulder? Every response in this thread he seems agitated or defensive about something... > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 27, 2001 5:07 PM > To: CF-Talk > S

RE: Netscape Cookie Woes

2001-08-27 Thread Shawn Grover
Found the problem. One of our developers added some code that refered to the Cookie before the cookie was initialized with a tag. CF should have thrown an error, but instead just hung trying to load the page. Moved our block before the first call, and our problem went away. That was a frustr

Re: loop question

2001-08-27 Thread Kwang Suh
Why not use: WHERE AppID IN (#form.appid#)? - Original Message - From: "Jones, Becky" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 3:00 PM Subject: loop question > my query below keeps putting an OR after the last appid. > how can i fix that? > t

RE: New IIS security tool

2001-08-27 Thread Dave Watts
> Has anyone tried this new IIS tool? > > http://www.microsoft.com/technet/treeview/default.asp?url=/tec > hnet/itsolutions/security/tools/locktool.asp > > I will try it on a development server first, but wanted to > see if anyone has had good or bad experiences. I haven't tried it, since it d

RE: protect downloadble documents

2001-08-27 Thread JSchlosser
The MIME Type Document is up at http://128.121.22.104/CFCONTENT_types.cfm JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24

Re: loop question

2001-08-27 Thread Howie Hamlin
Wouldn't it be simpler to do something like: where AppID in (#form.appid#) 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 www.coolfusion.com/devco

RE: loop question

2001-08-27 Thread Timothy Heald
try OR Tim Heald ACP/CCFD :) Application Development http://www.schoollink.net/ -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 5:00 PM To: CF-Talk Subject: loop question my query below keeps putting an

RE: loop question

2001-08-27 Thread Jann VanOver
What is your query name? qryGetApp or qryDetails? You don't introduce the qryDetails anwhere in this code except in the condition. Also, the tags around "OR" don't serve any purpose at all. -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 200

RE: loop question

2001-08-27 Thread Nate Smith
It seems that you be better off using this: SELECT * FROMqryCHECKOUT WHERE AppID IN (#form.appid#) AND CheckIn IS NULL ORDER BY AppName, AppVersion DESC -Nate -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 5:00 PM To

Re: Netscape Cookie Woes

2001-08-27 Thread Jeffry Houser
At 02:29 PM 08/27/2001 -0600, you wrote: >we have an application which uses a custom tag at the start of each >template. This tag checks session variables against the required access >level for the page and if need be, redirects to the login page. > >We are finding that Netscape refuses to run th

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Timothy Heald
We are using cfusion encryptand cfusion_decrypt to encrypt our url variables. This has been tested in CF 5 and on 4.5.1 sp1. Tim Heald ACP/CCFD :) Application Development http://www.schoollink.net/ -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27

RE: loop question

2001-08-27 Thread Dave Feltenberger
A really quick fix is simply to change it to: SELECT * FROMqryCHECKOUT WHERE AppID = #h# or 1=1 AND CheckIn IS NULL ORDER BY AppName, AppVersion DESC note the "1=1" in there... it's a hack, but it helps you a

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Watts
> As a side, however, why are there even "unofficial" functions > included in the standard distribution of ColdFusion? If you > don't want people to use it, or you want to make it obvious > that it's not a function that's to be used, as you say is the > case, why have it implemented in the fir

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
The problem is that I have information stored in a database that was put there by CF 4.5, using CF 4.5's cfusion_encrypt/decrypt. When I try to pull the information out, the encrypted string that CF 5.0 creates is slightly different than the one CF 4.5 makes (CF 4.5 puts two extra letters on the

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
> >As a side, however, why are there even "unofficial" functions included in > >the standard distribution of ColdFusion? > >It's a common thing. There are tons of undocumented functions as part > of the Windows API, aren't there? >They do this so that they (in this case the 'they' is All

Re: New IIS security tool

2001-08-27 Thread Jon Hall
From NTBugtraq...reprinted without permission, so sue me. I'm not exactly sure why I'm supposed to be elated, maybe its the fact it has an "Undo" feature. Call it sour grapes, but this thing falls short of what I offered as a prototype several weeks ago (in some ways) while being far superior in

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
> > So, the problems were with the unofficial funcs? If so, I'm not going > to > > worry about them. Again, if you don't use the official funcs, you reap > what > > you sow. ;) > > No, this is how the standard cf_decrypt/encrypt functions operate. Ok, I'll check. > > > Another problem which aros

RE: Netscape Cookie Woes

2001-08-27 Thread Costas Piliotis
As far as I understandm session state is maintained through a cookie. CFID and CFTOKEN are stored as cookie values. The session state is destroyed when you destroy the cookies file. A new session is thus started and all of your session variables are lost. -Original Message- From: Shaw

loop question

2001-08-27 Thread Jones, Becky
my query below keeps putting an OR after the last appid. how can i fix that? thanks, bec. SELECT * FROMqryCHECKOUT WHERE AppID = #h# or AND CheckIn IS NULL ORDER BY AppName, AppVersion DESC **

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Billy Cravens
I've run some tests using cfusion_encrypt and cfusion_decrypt on CF5, and they seem to work fine. Perhaps there's something funky going on with how you're feeding in the string and key, or with the data you're pulling from the DB? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -O

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Billy Cravens
I've always like cfusion_encrypt/cfusion_decrypt because they're purely alphanumeric - very beneficial when you're writing to a database. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Timothy Lynn
> So, the problems were with the unofficial funcs? If so, I'm not going to > worry about them. Again, if you don't use the official funcs, you reap what > you sow. ;) No, this is how the standard cf_decrypt/encrypt functions operate. > > Another problem which arose were some strange ascii charac

RE: CF "FTP" Application

2001-08-27 Thread Duane Boudreau
The input type=file file is read-only. You can read the contents, which returns the name of the file, find the last "." and whatever else is there is the extension. It should also be backed up with a server side check also. Duane -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTEC

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
> If I remember correctly, the Encrypt routine will often place some bogus > characters on the end of the encrypted string. These characters can be > stripped off, and it will decrypt fine. But I don't remember the > source of Define 'bogus'. I seem to remember that strings returned from Encr

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Tony Schreiber
Admittedly not very helpful, but for users passwords, I've been using HASH rather than encrypt/descrypt... > I can't speak for Dave, but from what I've read on the Allaire forums, > the regular Encrypt/Decrypt function produces inconsistent results. > Obviously not a good thing! > > I've just put

New IIS security tool

2001-08-27 Thread Chad Gray
Has anyone tried this new IIS tool? http://www.microsoft.com/technet/treeview/default.asp?url=/technet/itsolutions/security/tools/locktool.asp I will try it on a development server first, but wanted to see if anyone has had good or bad experiences.

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Timothy Heald
I am using cFusion_encrypt cFusion_decrypt, as well as some of the undocumented ODFC functions. Tim Heald ACP/CCFD :) Application Development http://www.schoollink.net/ -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 7:32 PM To: CF-Talk Sub

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
> However, I went and re-read them and it seems that it's the usage of the > function which was producing inconsistent results. Encrypting with > cf_encrypt will produce some random characters at the end of the string > and if comparing using a where clause as in: > > where cf_encrpyt(form.passwo

RE: CF "FTP" Application

2001-08-27 Thread Timothy Heald
You use the tag to get the file and have the do an on Submit call to a function that checks everything in your user defined list of allowed extensions against the letters after the period. You are not accessing the local file system merely the name of the file. That way the form will only subm

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Jeffry Houser
At 04:12 PM 08/27/2001 -0400, you wrote: >Uh... you're right, it doesn't help. I don't like to think of myself as a >ColdFusion programmer (I think the language itself it pretty weak) and I >didn't write the code, but I'm forced to clean up the mess of a co-worker. >I'm not surprised that it's a

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Timothy Lynn
Hey Ray, Search on Allaire's forums for "encrypt" and "different" and you get a few threads. However, I went and re-read them and it seems that it's the usage of the function which was producing inconsistent results. Encrypting with cf_encrypt will produce some random characters at the end of th

Netscape Cookie Woes

2001-08-27 Thread Shawn Grover
we have an application which uses a custom tag at the start of each template. This tag checks session variables against the required access level for the page and if need be, redirects to the login page. We are finding that Netscape refuses to run this tag (it hangs trying to load the page) if w

RE: CF "FTP" Application

2001-08-27 Thread Aaron Rouse
How do you check the file extension with JavaScript? I thought one of the security features built into JS would not allow you to access local file systems. Snipe - On Mon, 27 Aug 2001, Timothy Heald wrote: > Hey, > Using JavaScript, CFFILE, CFDIRECTORY and some plain old html you can wr

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Shawn Grover
If I remember correctly, the Encrypt routine will often place some bogus characters on the end of the encrypted string. These characters can be stripped off, and it will decrypt fine. But I don't remember the source of this (think it was in the list bout a month ago), or any of the allaire kb ar

RE: CF "FTP" Application

2001-08-27 Thread Timothy Heald
Hey, Using JavaScript, CFFILE, CFDIRECTORY and some plain old html you can write your own web based FTP client. Use Javascript to verify the file type against your personal list of ok file extensions. Tim Heald ACP/CCFD :) Application Development http://www.schoollink.net/ -Original

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
I have an example where CFusion_Encrypt/Decrypt produces inconsistent results :-) > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 27, 2001 4:07 PM > To: CF-Talk > Subject: RE: Encryption differences in ColdFusion 4.5 and 5.0? > > > I'm not say

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
Uh... you're right, it doesn't help. I don't like to think of myself as a ColdFusion programmer (I think the language itself it pretty weak) and I didn't write the code, but I'm forced to clean up the mess of a co-worker. I'm not surprised that it's an obfuscated function, though, to be honest..

RE: Alternating table row colors producing duplicated output

2001-08-27 Thread Cornillon, Matthieu
Mike, First, I'd make absolutely sure that the bgcolor setting is what's hurting you. Clip out the whole bgcolor="..." parameter, then take another look. If you still see a problem, I'd cut out all the formatting: see whether the data is coming out duplicated. If the problem suddenly leaves, I'

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
I'm not saying you're wrong, but I'd like to see an example where encrypt produces inconsistent results. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Timothy Lynn
I can't speak for Dave, but from what I've read on the Allaire forums, the regular Encrypt/Decrypt function produces inconsistent results. Obviously not a good thing! I've just put together an app using the cfusion_encrypt function on a 4.51 machine. Hopefully there's a valid solution around so I

Alternating table row colors producing duplicated output

2001-08-27 Thread Mike Brunt
Can anyone see why this code is producing duplicated output for every record. This ran perfectly in the local dev enironment using CF5.0 and Access 2000. Moved to staging using CF50 and SQL2000 we are getting each record twice. Here is the code: - #SupplierName##City# #Comments# Kind

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Raymond Camden
Errr, this doesn't help you, but why did you use that function instead of the "real" function, Encrypt? Wasn't it a bit dangerous to use the "unofficial" function in the first place? I'm not saying you are stupid or anything, and I'm not speaking for MACR, but it does seem like something that sho

Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Dave Feltenberger
I recently upgraded ColdFusion 4.5.2 to 5.0 on a website I'm using, and now some users can't log in to the site. I'm using the CFusion_Encrypt (string, key) function, and it seems that the encryption is slightly different between the two versions of ColdFusion. The key hasn't changed, and this

RE: bug tracking

2001-08-27 Thread Billy Cravens
Haha, I'm not gonna try to sell you some whiz-bang tracking app that I or my company has written :) I'm pretty impressed with Merant's PVCS Tracker. There's also some cool ones on SourceForge. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Kirk Boeck

Client variables

2001-08-27 Thread Janine Jakim
I have my pages set up with client variables. I need to change my main client variable. When I change my queries/cfsets to the new variable it doesn't work. Do I need to make the change somewhere else to? What I have done thus far: Query for login Cfset New CLIENT variable Go to new page Query u

RE: CF 5.0 Management Repository Server

2001-08-27 Thread Dave Watts
> I have noticed that the service "CF Management Repository Server" is > sucking up all my memory on my Win2k system. I have 261M RAM on my > system. Is this not enough? The problem just started this morning. I > loaded CF 5.0 about 5 days ago. There's a patch for this, which Ben Forta announced

RE: Way Slow web pages

2001-08-27 Thread BT
This is in the CLient Configuration Utility. A snap-in in the SQL Enterprise console -Original Message- From: Bruce, Rodney [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 1:34 PM To: CF-Talk Subject: RE: Way Slow web pages Justin Were is the option to choose between pipes and

CF 5.0 Management Repository Server

2001-08-27 Thread James Taavon
I have noticed that the service "CF Management Repository Server" is sucking up all my memory on my Win2k system. I have 261M RAM on my system. Is this not enough? The problem just started this morning. I loaded CF 5.0 about 5 days ago. James ~~ St

RE: It Matchs, but CFIF says it doesn't

2001-08-27 Thread BT
This is in the CLient Configuration Utility. A snap-in in the SQL Enterprise console -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 1:55 PM To: CF-Talk Subject: RE: It Matchs, but CFIF says it doesn't Thanks, Nate and Marius. I never kn

RE: CF Max Memory usage?

2001-08-27 Thread Tyson Vanek
That's not adjustable with ColdFusion. You can control how much memory it will allow cached templates to be stored in, but you cannot tune the overall memory footprint of ColdFusion Server. -Tyson -Original Message- From: Jerre Hale [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 20

RE: Ot: sending pdf to the browser

2001-08-27 Thread Janine Jakim
Acrobat reader are on all of the machines. PDFviewer is a plug-in. I'm resigned to the fact that the plug in needs to be set before acrobat will show in the browserbut I keep thinking I'm missing something... -Original Message- From: Steve Aylor [mailto:[EMAIL PROTECTED]] Sent: Monday

Re: Ot: sending pdf to the browser

2001-08-27 Thread Steve Aylor
Im not a Mac pro - so forgive the ignorance ... what is PDFVeiwer? Is that the Acrobat reader? It wont work on either platform unless they have at least Acrobat Reader - or some other PDF rendering engine that opens inside a brower window. Steve - Original Message - From: "Janine Jaki

RE: Importing saved DTS in SQL 7

2001-08-27 Thread Billy Cravens
Very true. The instances in which I've done this have been with straighforward databases (internal references only). --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Chris Sinkwitz [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 12:21 PM To:

RE: It Matchs, but CFIF says it doesn't

2001-08-27 Thread Owens, Howard
Thanks, Nate and Marius. I never knew the difference. H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 > -Original Message- > From: Marius Milosav [SMTP:[EMAIL PROTECTED]] > Sent: Monday, August 27, 2001 9:55 AM > To: CF-Talk > Su

RE: Way Slow web pages

2001-08-27 Thread Chris Sinkwitz
It's in your Client Network Utility for your local machine and Server Network Utility for the Server. Are you using MDAC 2.5? If so there is a bug that might affect you that will make the server app really slow and sometimes even timeout. You might want to check Microsoft for a hotfix on your M

RE: It Matchs, but CFIF says it doesn't

2001-08-27 Thread BT
do a trim(variable) that shouldwork -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 12:55 PM To: CF-Talk Subject: Re: It Matchs, but CFIF says it doesn't Check the column datatype. If it is char than it is automatically padded with space

RE: CF "FTP" Application

2001-08-27 Thread Duane Boudreau
My bad, I should have said cfcontent. Sometimes the fingers work faster the brain. Most clients are not likely to want to separate html from php/asp/cf files, especially with the sites being dynamic. Basically I'm looking a webbased pseudo FTP client written in CF, similar to what geo cities use

Help with error message

2001-08-27 Thread David Green
Hello List I'm having trouble with a site I have not looked at in awhile. (Since a upgrade 4.5 to 5.0 & A hard drive failure).I try to open the website that has a CFTREE on it in a frame and get the error below in my java console. I don't know for sure if this site worked since I upgra

Re: CF "FTP" Application

2001-08-27 Thread Howie Hamlin
You can't build such an application with cfftp. Cfftp is a client and not a server. What you can do is only allow uploads into a folder that does not have execute or scripting rights (assuming that you are using IIS). If you do this then you can use any ftp server including the one built into

Re: It Matchs, but CFIF says it doesn't

2001-08-27 Thread Marius Milosav
Check the column datatype. If it is char than it is automatically padded with spaces up the declared size. You can change it to varchar and it will take care of the spaces. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosof

RE: It Matchs, but CFIF says it doesn't

2001-08-27 Thread Nate Smith
If that is the case, then check your data type for the problematic field. I'm not sure about Oracle, but on SQL 7 and 2k the type 'char' returns your string padded to the length of the char field. Try using varchar if this is the case. That or remember to use TRIM() all the time. HTH - Nate ---

RE: Way Slow web pages

2001-08-27 Thread Bruce, Rodney
Justin Were is the option to choose between pipes and TCP/IP? I'm looking in the SQL Manger properties but don't see it? both are slow -Original Message- From: Justin Greene [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 5:56 PM To: CF-Talk Subject: RE: Way Slow web pages M

RE: It Matchs, but CFIF says it doesn't

2001-08-27 Thread Owens, Howard
Thanks to Mark, Don, Tim, Andrew and Joshua for responding ... It was a Trim() issue. I wasn't really expecting that because I KNEW the data had been entered into the DB without any leading or trailing spaces. I did try some tests for that, but they didn't show any spaces. But actually usi

CF "FTP" Application

2001-08-27 Thread Duane Boudreau
I have a server that I will be hosting several clients on. I don't want to give clients complete ftp access. I need to limit there ability to upload to only those with files with specific extensions such as html, zip, gif, jpg, etc. In other words, no cfml, asp, cgi, exe etc. I am looking for an

RE: Importing saved DTS in SQL 7

2001-08-27 Thread Chris Sinkwitz
You could have DTS packages on one server that are not on your dev server and by replacing the .mdf and .ldf it would erase any hooks to that package that it didn't know about. What you are doing is basically taking and entire SQL repository from your dev machine and placing it on your prod machi

Re: CF Max Memory usage?

2001-08-27 Thread Jerre Hale
Where and how do you make these setting changes that will control the amount memory the CF will use. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.c

RE: Splitting a database (horizontal partitioning)

2001-08-27 Thread Aidan Whitehall
> What RDBMS? Sybase's Adaptive Server Anywhere. Aidan -- Aidan Whitehall <[EMAIL PROTECTED]> Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775 ~~ Structure your ColdFusion code with Fusebox. Get the official book at htt

RE: protect downloadble documents

2001-08-27 Thread S R
Awesome!! Thank you!! Sal >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: protect downloadble documents >Date: Fri, 24 Aug 2001 18:31:18 -0400 > >I just did this - use CFCONTENT > >Here is a powerpoint: > >http://128.121.22.119/scriptcontent/

Re: CF and Windows 2000

2001-08-27 Thread Birgit Pauli-Haack
You could run Apache's NT version on the Windows 2000 station. www.apache.org provides the 3.20 version with a nice installation program that runs smoothly in a Windows environment. Make sure you move the CF Module for Apache servers from the CF/bin directory into the apache/modules directory and

RE: Importing saved DTS in SQL 7

2001-08-27 Thread Billy Cravens
I'd agree, but like I said, I've had some success with it, so file it away as a "last resort". Just for my own curiosity, what would cause corruption? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Chris Sinkwitz [mailto:[EMAIL PROTECTED]] Sent: Mond

RE: Importing saved DTS in SQL 7

2001-08-27 Thread Mark Stewart
Chris, I guess I didn't look thoroughly enough. You are exactly right! Although I'm using SQL Server 2K, the process is the same except it says "Open Template" instead of Open Package. I have learned something today, I can go home now... Thanks! Mark -Original Message- From: Chris Sinkw

Re: which web server do you use for CF?

2001-08-27 Thread Howie Hamlin
Yes, both as a cgi or isapi. Regards, 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 www.coolfusion.com/devcon - Original Message - From: "Pa

  1   2   >