RE: SQL Convert and joining on date

2001-02-14 Thread Seva Petrov
Duane, Assuming you use SQL Server, you could do the following: convert(varchar(10), t1.datefield, 110) That should produce a result in the "mm-dd-" format. Best, Seva Petrov Senior Developer TheSquare.com -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]]

CFLOCATION and CFCOOKIE - the reason

2001-02-14 Thread Michael Dinowitz
Cookies are stored in a document header. The only way for a cookie to be set on a browser is for a document with a cookie in its header to get to the browser. CFLOCATION STOPS a document from getting to a browser. It instead says, go somewhere else and return NOTHING from the current page.

RE: Dateformat behaviour

2001-02-14 Thread Phoeun Pha
I think coldfusion reads it as a european date. maybe thats why it didn't generate an error. Dateformat("13/12/2000","mmdd") 20001213 December 13, 2000 thats what it reads it as hehehe -Original Message- From: INGECOM - D. Delcomminette [mailto:[EMAIL PROTECTED]] Sent:

RE: What are some options for generating large outputs

2001-02-14 Thread Peter J. MacDonald
Well if you are looking for out of the box try this. There is a tool that we sell, support and implement called Impromptu from Cognos Corporation. It is an end user report writer that can talk to any database that has a native client connection or ODBC connectivity. You could then publish as

RE: CFSCRIPT

2001-02-14 Thread John Quarto-vonTivadar
Hi David, in addition to any help you find on the list, you might also like to know that Mike Dinowitz will be giving a talk at the NYC CFUG soon about just this topic. you can get more info at www.nycfug.org (or contact Mike directly) Sorry if this is a dumb question, but i'm curious about

CF number question

2001-02-14 Thread Phoeun Pha
I have a form variable whose value is "0.00" if I do a conditional, would this be right? CFIF Form.Variable EQ 0 TRUE CFELSE False /CFIF what i am saying is, will "0.00" be the same as 0? will it read it as a string or a number? or sometimes? explain! thanx

RE: CFSCRIPT

2001-02-14 Thread Philip Arnold - ASP
Sorry if this is a dumb question, but i'm curious about CFSCRIPT. what language is the script written in? i've seen some examples that look like javascript, but i haven't been able to determine for sure what language is being used. Also, if anyone can point me to a source where i can learn

RE: CFSCRIPT

2001-02-14 Thread Dave Watts
Sorry if this is a dumb question, but i'm curious about CFSCRIPT. what language is the script written in? i've seen some examples that look like javascript, but i haven't been able to determine for sure what language is being used. Also, if anyone can point me to a source where i can

RE: CFSCRIPT

2001-02-14 Thread Hays, Duncan
You can find info on CFSCRIPT in the CF Studio help files. It's similar but has slightly different syntax than JavaScript. -Original Message- From: David Baskin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 2:02 PM To: CF-Talk Subject: CFSCRIPT Sorry if this is a dumb

Re: a single quote bug with cf4.0?

2001-02-14 Thread Jennifer Larkin
Rick Lamb wrote: I'm having a problem with a query. I've isolated the problem to a field that contains a single quote and can't figure out why it's now escaping it correctly. Is there a bug with cf 4.0 with not escaping single quotes, or is it something else? Something else. One of the

Re: CFSCRIPT

2001-02-14 Thread Jennifer Larkin
David Baskin wrote: Sorry if this is a dumb question, but i'm curious about CFSCRIPT. what language is the script written in? i've seen some examples that look like javascript, but i haven't been able to determine for sure what language is being used. Also, if anyone can point me to a

(OT) IIS Web Logs, how to parse and calculate unique visitors

2001-02-14 Thread Eric Dawson
(OT) IIS Web Logs, how to parse and calculate unique visitors Has anyone created a web log analyzer? How do you determine unique visitors over a period of time? Given things like AOL rotating IP client addresses, and proxy servers? Curious. Eric

RE: Custom Tags for CF Logs

2001-02-14 Thread Stephenie
i used to use logviewer also, but the new price tag is definitely out of the question as a hosting provider, now i use logmagic http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=logmag ic -- Stephenie Hamilton Senior ColdFusion Administrator Express Technologies, Inc. want

Re: Custom Tags for CF Logs

2001-02-14 Thread Bryan LaPlante
I've got an app for managing logs. It comes with cf_logentry, the tag is free to use, it just writes standard log files. You can download the tag from http://www.netwebapps.com/remotedev2001/index.htm use the my tags button and then search with no text to see all the tags you can down load. The

RE: PDFs, Linotronic PS Drivers, Forms and Adobe Licensing

2001-02-14 Thread JustinMacCarthy
Check out : ActivePDF.com GhostViewer Justin -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 7:37 PM To: CF-Talk Subject: PDFs, Linotronic PS Drivers, Forms and Adobe Licensing So this guy says to me. It's be cool if ... I think I

Query Confusion

2001-02-14 Thread Adrian Cesana
I need some help with an update query. I have a table with 2 fields defined as a Primary Key, we managed to get a several thousand recs loaded with only one of the fields having a value and the other a blank, I need to populate the field that is blank with the value of the other field. Here is

RE: SQL Convert and joining on date

2001-02-14 Thread Duane Boudreau
On a slightly different topic, is there a way to do a custom defined formatting mask? Duane -Original Message- From: Seva Petrov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 3:01 PM To: CF-Talk Subject: RE: SQL Convert and joining on date Duane, Assuming you use SQL

Re: Document to PS, Form to CF, Distiller to PDF ...

2001-02-14 Thread Rey Bango
Eric, Take a look at Activepdf.com or FDFMerge from digapp.com Rey Team Allaire - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 14, 2001 2:37 PM Subject: Document to PS, Form to CF, Distiller to PDF ... So

RE: Passing values to Flash

2001-02-14 Thread Evan Lavidor
Kinley, Are you still dealing with this issue? If so, let me know. I've just dealt with a very similar project. Thanks, Evan -- -=-=-=-=-=-=-=-=-=- Evan Lavidor Circle.com Boston Tel: 617-585-3107 Fax: 617-585-3091 -=-=-=-=-=-=-=-=-=- -Original Message- From: Kinley Pon

Re: Connecting to Lotus Notes

2001-02-14 Thread allred
Neil H. wrote: Long time ago I tried this. There was a little Notes ODBC connector and I could read data. Had a hell of time writing data into a DB but given enough time you can probably figure it out. I haven't tried this ODBC connector, but I have used Notes. The structure of a Notes

RE: CF number question

2001-02-14 Thread Duane Boudreau
Since CF is loosely typed cfset x = "0.00" CFIF x EQ 0 1:true /CFIF CFIF NOT x 2:true /CFIF CFIF x EQ 0.00 3:true /CFIF results in: 1:true 2:true 3:true HTH, Duane -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14,

Dynamic column order

2001-02-14 Thread Randi Knutson
Sorry for the basic question, but here goes: I'm trying to allow the columns in a query output table to be dynamic in order, depending on the sort selection the user previously made in the form (in the form field form.sort). Form.sort has four fields in order, and they are comma-delimited. In

RE: CF number question

2001-02-14 Thread Warrick, Mark
Yes, ColdFusion will intepret that as a number. For example, try this: cfset var1 = "0.00" cfset var2 = "0" CFIF Var1 EQ 0 TRUE CFELSE False /CFIF br br CFIF Var1 EQ "0" TRUE CFELSE False /CFIF cfif var1 eq var2 True cfelse False /cfif Note

RE: a single quote bug with cf4.0?

2001-02-14 Thread Leroy, Eric
Check the length of the fields in your table. You will probably find that the value for one (or more) field that you are trying to insert is too long for the field in the table. Eric J. LeRoy RST Database Admin/Software Developer -Original Message- From: Jennifer Larkin [mailto:[EMAIL

Open Link and my scrollbars disapear

2001-02-14 Thread Mike
I do not know what it is but for some reeason when I click on a link to my main page from my idex page I lose my scrollbars. I have tried javascript like : window.personalbar.visible='no'; window.scrollbars.visible='no'; window.locationbar.visible='no'; window.menubar.visible='no';

RE: (OT) IIS Web Logs, how to parse and calculate unique visitors

2001-02-14 Thread Evan Lavidor
We use WebTrends to parse our logs and run pretty reports. I think it was a "why reinvent the wheel" issue. Regarding unique visitors, most off-the-shelf programs I've seen will recommend that you track users by cookie, not by IP. That gives you a much more accurate count of unique visitors,

RE: PDFs, Linotronic PS Drivers, Forms and Adobe Licensing

2001-02-14 Thread Arden Weiss
Take a look at www.amyuni.com/pdfpd.htm -- their various kits (printer drivers) for doing PDFs, RTFs, etc. via desktop and web-based apps. ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Eric Dawson [SMTP:[EMAIL

MSDE with CF

2001-02-14 Thread Christopher P. Maher
Does anyone have experience with using MSDE (rather than full SQL Server) with CF? Other than size limitations on the database and not having Enterprise Manager, is there any problem with using MSDE for a CF project? Are there any licensing issues? SQL Server is simply too expensive for some of

RE: weather feeds

2001-02-14 Thread dougn
Also look at http://www.weatherguys.com/ You can insert their image generation code into your site to pull ZIP-code based images of various weather reports. --Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 8:18 PM To:

Re: REPOST: Weird pcode error (please! help!)

2001-02-14 Thread David Cummins
Never has for us! David Michel Vuijlsteke wrote: Really? Can anyone confirm that not putting a dbtype in cfquery causes cfschedule to throw PCode exceptions? -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 4:41 PM To:

Re: Document to PS, Form to CF, Distiller to PDF ...

2001-02-14 Thread Stephen M. Aylor
So this guy says to me. It's be cool if ... No Doubt but there's always a catch it seems.. I think I heard some comments on using Adobe Distiller on an Internet Server is in violation of the Adobe license for Distiller? Is this true? Yes it's true - even on an intranet - unless

Dynamic column order

2001-02-14 Thread Randi Knutson
Sorry for the basic question, but here goes: I'm trying to allow the columns in a query output table to be dynamic in order, depending on the sort selection the user previously made in the form (in the form field form.sort). Form.sort has four fields in order, and they are comma-delimited. In

OT: Sites with Coldfusion Flash Dreamweaver

2001-02-14 Thread Michael
Thought it would be of interest: **MACROMEDIA SPECIAL** Need a proof point where Allaire and Macromedia are already working together? Checkout these high profile sites: www.Heineken.com - CF and Flash www.Jaguar.com.au - CF, Flash, Fireworks and Dreamweaver www.UniversalMusic.fr - CF

Re: CF number question

2001-02-14 Thread Bud
On 2/14/01, Phoeun Pha penned: I have a form variable whose value is "0.00" if I do a conditional, would this be right? CFIF Form.Variable EQ 0 TRUE CFELSE False /CFIF what i am saying is, will "0.00" be the same as 0? will it read it as a string or a number? or sometimes? explain! It will

Re: Opening Adobe Acrobat form from CF page with SSL

2001-02-14 Thread Stephen M. Aylor
IS the web server trying to "byteserve" the PDF? I'd also suggest having a look on www.planetpdf.com or pdfzone.com for some of the heavy guru's. One that comes to mind is Leonard Rosenthal of a www.digapp.com - Original Message - From: "Todd Stanley" [EMAIL PROTECTED] To: "CF-Talk"

RE: Cookies

2001-02-14 Thread Himanshu Shekhar
i assigned the value of the cookie to a client variable for something kinda similar and it worked. you could also use session var. -Original Message- From: Charlie McCormack [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 7:03 PM To: CF-Talk Subject: Cookies Hi All, I've

RE: CFPOP unknown error

2001-02-14 Thread lsellers
What is the COM solution you found? How is it speed-wise? Hmm. You could always use the tcpclient com. :) I rewrote the base64 mime and uu routines a while back. Someone else is apparently working on some cf connection pooling code with it which might be useful for smtp code to go along with.

Array help?

2001-02-14 Thread Allan . Davis
New to the list, new to the language, quite possibly in WAY over my head...and posting this to the list at the advice of our webmaster. I'm using Cold Fusion to compare two files by loading them into arrays, and I'd like to know if anyone can help me out with some array problems. (The short

RE: (OT) IIS Web Logs, how to parse and calculate unique visitors

2001-02-14 Thread Parker, Kevin
Web Trends does it if you use cookies. http://www.webtrends.com/ + Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.workcover.com p: +61 8 82332548 f: +61 8 82332000 m: 0418 800 287 + -Original Message- From:

Re: Passing values to Flash

2001-02-14 Thread John Dowdell
At 7:57 PM 2/13/1, Kinley Pon wrote: Is there a way to pass or set values to variables within a flash clip for example if I set the GET URL as www.blabblah.com/index.cfm?fuseaction=loginloginID=#LoginID#password=#pass word#. I'm just getting up to speed in this particular area myself (so

Re: CF Charting Technology?

2001-02-14 Thread John Dowdell
At 8:24 AM 2/14/1, Vance Duke wrote: I am looking for something that will do charting like flow charts, network diagrams, process diagrams, that will work with CF and can be dynamic. I don't know of a ready-rolled general solution with the Macromedia Flash Player yet, although you could

RE: REPOST: Weird pcode error (please! help!)

2001-02-14 Thread Michel Vuijlsteke
Course not. Sigh I'll just lump his together with the rest of the bloody ColdFusion bugs that no-one has any idea how to work around or avoid. Am I the only one who's getting disillusioned in a major way here? Michel -Original Message- From: David Cummins [mailto:[EMAIL

RE: Cookies

2001-02-14 Thread Alexandre Dornback
You could create a wddx file and then call back the wddx file... This can be done as a file on the server or a wddx structure as a value in a cookie (see http://www.teamallaire.com/tutorials/index.cfm?fuseaction=displaytopicid=03 8 ) -Original Message- From: Himanshu Shekhar

starting from scratch

2001-02-14 Thread Ramonda Ramos
Hi, Our department may be looking for a contractor to answer some questions regarding how we should do things in Cold Fusion. Has anyone had a good experience w/a contractor? ~~ Structure your ColdFusion code with Fusebox. Get the official

Re: Array help?

2001-02-14 Thread Scott Weikert
Try using a structure, using the line number as the key, instead of an array. A bit more flexible IMHO. --Scott - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 14, 2001 4:09 PM Subject: Array help? New to the list, new to the

AW: Dynamic column order

2001-02-14 Thread Christoph Schmitz
Hi, evaluate() should do the trick: cfoutput query="GetResults" tr td#Evaluate("getResults." sortlist[1])#nbsp;/td td#Evaluate("getResults." sortlist[2])#nbsp;/td ... /cfoutput HTH, Chris -Ursprüngliche Nachricht- Von: Randi Knutson [mailto:[EMAIL PROTECTED]] Gesendet:

Re: MSDE with CF

2001-02-14 Thread Stephen M. Aylor
Seems pretty cool as far as my goofing with it goes. Havent seen it in a real enviro - like a live site with lots o' traffic. On thing that has caaght my eye is that ... unless something has changed about it ... if you are a license holder of VC++ or Visual InterDev - I beleive I read

Re: Opening Adobe Acrobat form from CF page with SSL

2001-02-14 Thread Stephen M. Aylor
The PDF listers want to know: Web Server OS? Web Server Software (IIS ...?) Client OS? Client Browser and version? Problem on the client? It appears that way to me but to be sure ...? Steve - Original Message - From: "Todd Stanley" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

Re: SOT: starting from scratch

2001-02-14 Thread Jennifer
At 04:01 PM 2/14/01 -0800, you wrote: Hi, Our department may be looking for a contractor to answer some questions regarding how we should do things in Cold Fusion. Has anyone had a good experience w/a contractor? The experience depends entirely on the quality of the contractor. If you're

AW: REPOST: Weird pcode error (please! help!)

2001-02-14 Thread Christoph Schmitz
Hi, are you doing something like cfif myVar EQ "" in your cfexectask.cfm? This is known to generate PCode errors sometimes. (Could even be that the CFSCHEDULE has nothing to do with the error at all, although it is mentioned in the error msg!) And for the "unknown query" ... maybe the crashing

RE: REPOST: Weird pcode error (please! help!)

2001-02-14 Thread Michel Vuijlsteke
I know it's hard without more details. And that's exactly what stumps anyone trying to make sense of this. Even with all the details at hand and with three years' worth of heavy-duty ColdFusion experience I can't make heads or tails of it. To answer your questions: no, I don't do cfif myVar EQ

AW: Array help?

2001-02-14 Thread Christoph Schmitz
Hi, CFSET temp= ArrayInsertAt(qArray1,#SEQUENCE_NUMBER#, "#TEXT#") this shifts elements with a higher index to the right, including undefined elements. So if qArray1[50] is undefined and you do ArrayInsertAt() with sequence_number = 50, the undefined element will be shifted to position 51.

how do I turn cfregistry ability back on?

2001-02-14 Thread Andrea Benton
The ability to use CFREGISTRY has been turned off at the CF Administrator. How do we turn it back on, because now we can't access the CF Administrator pages? Dumb question, I know... Thanks... Andrea P.S. I've tried altering the setting in the registry, but that hasn't allowed the CF

AW: Query Confusion

2001-02-14 Thread Christoph Schmitz
Hi, UPDATE myTable SET F2 = F1 WHERE F2 IS NULL (maybe use F2 = '' instead) AND F1 IN (SELECT F1 FROM testTable GROUP BY F1 HAVING count(F1) = 1); Depending on the database and the number of records that could take a while though. ;-)) HTH, Chris -Ursprüngliche Nachricht- Von:

Re: how do I turn cfregistry ability back on?

2001-02-14 Thread Bryan LaPlante
go to HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server and set the EnableCFREGISTRY key back to 1 - Original Message - From: "Andrea Benton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 14, 2001 7:07 PM Subject: how do I turn cfregistry

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Benjamin S. Rogers
The ability to use CFREGISTRY has been turned off at the CF Administrator. How do we turn it back on, because now we can't access the CF Administrator pages? Disabling the CFREGISTRY tag should not have disabled the ColdFusion Administrator. Do receive error messages when you try to visit the

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Andrea Benton
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" HTML HEAD META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1" META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2650.12" TITLERE: how do I turn cfregistry ability back on?/TITLE /HEAD BODY PFONT SIZE=2Thanks,

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Andrea Benton
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" HTML HEAD META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1" META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2650.12" TITLERE: how do I turn cfregistry ability back on?/TITLE /HEAD BODY PFONT SIZE=2Thanks,

OT:Pre-made State and Country database tables?

2001-02-14 Thread Joby Bednar
Anyone have a pre-made Access database table with the State Name and State Abbr. and/or Country Name and 2 digit Country Code? Or really any other information that might be of use... I'm using Access 2000, but any format that can be imported would be helpful. I need to use them for a client's

JS and Netscape...

2001-02-14 Thread Scott, Andrew
There is a property of a Table that is called display... Under IE I can say TableID.style.display = block|none, does any of the Netscape browsers support something similar regards Andrew Scott Senior Coldfusion Application Developer -Original Message- From: Andrea Benton

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Scott, Andrew
Yes it does, I made this mistake a few years ago... The CF Administrator relies heavily on this tag, so be very careful. I wish there was something in the text to say what damages it could do:-) regards Andrew Scott Senior Coldfusion Application Developer ANZ Business eCommerce * Ph 8615 6018

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Andrea Benton
Bryan... I discovered that I had to stop and restart the CF service for this change to be recognized. Problem solved! Thanks all! == -Original Message- == From: Bryan LaPlante [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] == Sent: Wednesday, February 14, 2001 5:15 PM == To:

CFHTMLHEAD no longer being parsed?

2001-02-14 Thread defective dreams
One of the servers at my host, sentris.com, no longer seems to be parsing CFHTMLHEAD tags. They're running CF 4.0.0 on NT with I dunno what service packs. I'm sure this would be solved by moving to a CF 4.5.0 box, but I don't have confidance in my host's ability to move my site without being

Re: as400 connection : error still

2001-02-14 Thread Mak Wing Lok
i did changed the port to 446 and did reinstall the DB2 connect, and got this new error : SQL1400N Authentication is not supported. anyway, to make thing clear, may be i did something wrong during the installation, which the following is the required software that i need to install to make the

Re: thumbnails

2001-02-14 Thread defective dreams
Hi All, Thanks for your responses... I can't install image robot as I'm on a shared server for hosting. For those who suggested PhotoShop or other image editing tools: I need a server side solution to automatically make good thumbnails when people upload pics to my site. BTW, thanks for the

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Andrea Benton
Yes, it's difficult finding decent documentation on some of these tags! == -Original Message- == From: Scott, Andrew [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] == Sent: Wednesday, February 14, 2001 5:23 PM == To: CF-Talk == Subject: RE: how do I turn cfregistry ability back

Re: Distrubuted apps and time zones

2001-02-14 Thread defective dreams
If your data is in a database, and you're storing UTC or GMT timestamps there, why do you need to worry about the timezone of the system? Please forgive the somewhat off topic post. I'm looking for some resources about how to manage time zone differences across a distributed server

RE: thumbnails

2001-02-14 Thread Duane Boudreau
Can you convince them to install CFX Tags? If so there is a tag (image.dll) in the tag gallery I believe that can be used to generate thumbnails Duane -Original Message- From: defective dreams [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 8:43 PM To: CF-Talk

OT: IIS redirect URL

2001-02-14 Thread Jay E Wigginton
I apologize for the off topic message but I am about to pull my hair out trying to figure out how to redirect a URL in IIS v5.0... I have a website that has two domain names... http://www.mydomain.com and http://members.mydomain.com they are both DNS'd to the same IP address... the

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Benjamin S. Rogers
My apologies. I thought I had done this before without "disabling" the administrator. I guess I was thinking of something else. Benjamin S. Rogers Web Developer, c4.net Voice: (508) 240-0051 Fax: (508) 240-0057 -Original Message- From: Scott, Andrew [mailto:[EMAIL PROTECTED]] Sent:

Re: HumanClick

2001-02-14 Thread defective dreams
It wouldn't be too difficult to build something like HumanClick with CF. I've been thinking about doing this for some time... I don't like some of the limitations of HC, mostly the limited selections of graphics... I'd rather have a text link. Anyone wanna join in on development of the CF

RE: IIS redirect URL

2001-02-14 Thread Jay E Wigginton
I made a typo in the message below... I need the users to be able to type in the url... http://members/mydomain.com/username rather than http://www.mydomain.com/username as I stated in the message below blush Like I said I am starting to lose it over this... G thanks Jay -Original

Re: Image Optimising???

2001-02-14 Thread defective dreams
There's CFX_Image that can resize images... if you find a tag that will let you change the quality/compression of a JPG, pls let me know. Does anyone know if there is a custom tag that works in conjunction with CFFILE that will optimise gif and jpg images upon upload??

Re: Image Thumbnail

2001-02-14 Thread defective dreams
Coming from a non C-programmer point of view... I'm curious why someone hasn't written a CFX that can convert between several image formats and handle those formats' options like image quality/compression. People upload .art files to my site. I haven't spent too much time investigating it,

RE: HumanClick

2001-02-14 Thread Erika L Walker
This is the first I've heard of this Human Click thread here on the boarddoes anybody have the previous questions and/or replies to this thread? I've always been interested in HumanClick and I was curious as to what was said here Erika AIM: WebErika5

Re: thumbnails

2001-02-14 Thread defective dreams
Image.dll can reduce the dimensions of an image, but it cannot change the quality/compression setting. Thumbnails I make by hand are about 1.5 to 2.5 kilobytes... I'm lucky if I get 4 kilobytes with Image.dll. I often get 9kb thumbnails... and that's just too big when i'm putting several

Re: CFSCRIPT

2001-02-14 Thread Michael Dinowitz
www.houseoffusion.com/script.ppt I'll be adding to this at an upcoming NYCFUG. I'll cover looping through lists, queries and other structures as well as showing the new User Defined Functions that will be part of CF 5. Hi David, in addition to any help you find on the list, you might also

Re: (Admin) mailing code

2001-02-14 Thread Michael Dinowitz
There are parts that I didn't post both for security and because its rather standard. Getting the mail is a CFX_Pop2 operation and sending it is a CFMAIL (modified) operation. Archives are just passing the info into a DB. The cleaner I posted is the one that does the real work. Thanks! I thot

RE: how do I turn cfregistry ability back on?

2001-02-14 Thread Cruz, Joseph
Hi, all. I believe this is fixed(Is it a feature or a bug?) in 4.5...I definitely remember the headaches in 4.0.1 when trying to secure our servers. :) Joe -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 9:12 PM To: CF-Talk

Re: Backup Place

2001-02-14 Thread defective dreams
does anyone else notice that people on irc are extremely elitist and aren't helpful unless you're a regular? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: UltraDev extensions

2001-02-14 Thread Don Cuniff
Donald F. Cuniff, Ed.D. ByTheNet Publishing Asheville, NC doncuniff@home. com -Original Message- From: tom muck [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Wednesday, February 07, 2001 11:02 AM Subject: OT: UltraDev extensions I'm looking for some CF people who use UltraDev

Re: (OT) IIS Web Logs, how to parse and calculate unique visitors

2001-02-14 Thread Jim McAtee
Well, there are two ways to look at this. If you use IP addresses you may undercount because of proxying, and NAT. But, if you use cookies, you do the same for all the users who refuse cookies. A number of coporate proxy servers and firewalls will also block cookies. Tracking by IP address

Re: OT: Sites with Coldfusion Flash Dreamweaver

2001-02-14 Thread James Taavon
what about Bank of America, Catalog City and Toys R Us? Michael wrote: Thought it would be of interest: **MACROMEDIA SPECIAL** Need a proof point where Allaire and Macromedia are already working together? Checkout these high profile sites: www.Heineken.com - CF and Flash

Re: Backup Place

2001-02-14 Thread William J Wheatley
lol yea that was very true, i used to get on mIrc all the time but then let myself stop doing it and coming back after a hiatus was very rough =) Bill Wheatley Director of Development Allaire Certified ColdFusion Developer AEPS INC Allaire ColdFusion Consulting Partner www.aeps.com

Re: HumanClick

2001-02-14 Thread Clint Tredway
I have already built a humanclick like app in CF... It's not hard... just design your db right and the interface is actually pretty easy. I built it because some friends of mine couldn't use any of the chat software due to firewall issues. So I thought, well... if they can browse the web, then

Re: Backup Place

2001-02-14 Thread Kevin Schmidt
Hack their channel and give yourself Op control kick all their regular ops before they know what's going on and then they might pay attention to you. If they don't start kicking people and banning them. - Original Message - From: defective dreams [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: Backup Place

2001-02-14 Thread Scott Weikert
Yeah, THAT'LL work. :/ It's a good reason my exit note on IRC is "IRC - making megalomaniacs out of little boys since 1988" :) - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, March 07, 2001 9:09 PM Subject: Re: Backup Place

Re: Urgent.... please help...

2001-02-14 Thread Vikram-burlee
Hi vani Could u be a little bit specific ...where have u set the session timeout in application.cfm or server or in individual pages...check that out first...and thers no posibility that each session expires at one time... Regards Vikram - Original Message - From: Vani Kolli [EMAIL

RE: Passing values to Flash

2001-02-14 Thread Chad Elley
Check out this site: -Original Message- From: John Dowdell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 3:37 PM To: CF-Talk Subject: Re: Passing values to Flash At 7:57 PM 2/13/1, Kinley Pon wrote: Is there a way to pass or set values to variables within a flash clip

RE: Passing values to Flash

2001-02-14 Thread Chad Elley
http://www.blue-pac.com/products/aspturbine/default.htm -Original Message- From: John Dowdell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 3:37 PM To: CF-Talk Subject: Re: Passing values to Flash At 7:57 PM 2/13/1, Kinley Pon wrote: Is there a way to pass or set values

Re: (Admin) mailing code

2001-02-14 Thread paul smith
At 10:12 PM 2/14/01 -0500, you wrote: There are parts that I didn't post both for security and because its rather standard. Getting the mail is a CFX_Pop2 operation and sending it is a CFMAIL (modified) operation. Archives are just passing the info into a DB. Oh, I somehow thought the messages

RegExp to extract info between tags

2001-02-14 Thread David Shadovitz
Can anyone show me a CF regular expression to extract the information between an opening and closing tag? Two examples: 1. number12345/number I want to extract "12345". 2. stringEmployee/string I want to extract "Employee" The tag could be any single word, with no attributes. Thanks. -David

CFPop

2001-02-14 Thread Michael Gribbin
Hi gang, I'm using CFPop and downloading my email into a database. Is there a way, when I display the body of the message later in "view message" mode, to get the line breaks to actually work and to not be one long sentence? Tough to read that way. Thanks in advance, Michael Gribbin Digital

<    1   2