RE: access iif count

2000-09-28 Thread Jaime Garza
Power to the sub queries! FOR SQL Server: SELECT (SELECT Count(*) FROM Survey WHERE success=1) as SuccessYes, (SELECT Count(*) FROM Survey WHERE success=0) as SuccessNo, (SELECT Count(*) FROM Survey WHERE OtherFlag=32) as CountThirtyTwos For Oracle, same thing but you

RE: Encrypting a credit card field...

2000-09-28 Thread Steve Bernard
Also, when you use Encrypt() it will convert to binary format. Therefore, before storing in a non-binary compatible field or database you need to convert the encrypted string to base64 via ToBase64(). After extracting the information from the database for decryption use ToBinary(), then

RE: Great Writeup on Autobytel.com - Way to go Doug!

2000-09-28 Thread dougn
Thanks Dave!!! --Doug -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 7:50 AM To: CF-Talk Subject: Great Writeup on Autobytel.com - Way to go Doug! This is a multi-part message in MIME format.

RE: performance white papers

2000-09-28 Thread dougn
The real question here wasn't whether CFMAIL was the best tag written, but rather that it's the easiest to explain to a layman-level customer. Show them the code example provided below then show them the CFMAIL equivalent of your example. Very quickly the customer can see that it's going to be

RE: Encrypting a credit card field...

2000-09-28 Thread Pete Freitag
For some reason I just though of this, but I want to make sure ecommerce people know about this, so: Here's general tip for everyone who does ecommerce... You should use input type="text" autocomplete="off" for form fields that are used for credit card numbers, or other sensitive data. With

RE: Relief from redundancy?

2000-09-28 Thread Sharon DiOrio
I used to do that, then I started setting some of these "common change items" as variables in the application.cfm. You want to change the background on all pages? One line of code. cfset REQUEST.background = "image.gif" The best part is, because you control how you're using the variable, you

RE: Delay

2000-09-28 Thread Peter Stolz
Use CF_BLOCK from the Tag Gallery. This is the tag's description as written by the author: "This tag simply stops the execution of the current template for the specified number of seconds. No loops or temporary files. Does not consume ANY server resources. It uses only two nested CFLOCKs that

6 hours for the list

2000-09-28 Thread Jim Taylor
It has taken over 6 hours for the list to send messages.. any ideas? Jim Taylor Web Centric Central http://130.13.69.228 [EMAIL PROTECTED] Home Office: 480-496-0712 Cell Phone : 602-576-0508 Fax:: 208-474-8305

Re: Duplicate emails

2000-09-28 Thread WBB
up to 7 duplicates of some messages...and it's getting really old! Sorry to bother everyone, but has anyone else been getting lots of duplicate emails from this list? Thanks, Bob -- Archives:

Re: cf sbs

2000-09-28 Thread Gregory Harris
First of all, accept one truth Your server WILL go down at some point, plan accordingly. Also, as far as servers supported, legally unless you buy multiple licenses you can't run multiple small business servers. However the rule that would apply is 1 domain per network, not one server per

Progress re ColdFusion SP2

2000-09-28 Thread Mike Kear
Yesterday I posted on this list and sent to Damon Cooper at Allaire my request that as well as releasing a Server SP2, they release a fixed Studio too. Studio has been a bugbear of mine (and lots of other people too) for ages, and the correspondence between me, Allaire and their Australian

RE: Suppress debug for a single template...

2000-09-28 Thread Jeff Beer
cfsetting enablecfoutputonly="No" showdebugoutput="No" This should do the trick :-) -Original Message- From: Rice, David [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 4:00 PM To: CF-Talk Subject: Suppress debug for a single template... Isn't there a CF tag or

RE: OMG!!!!!

2000-09-28 Thread lsellers
I just got off the phone with a company and they said that that were goning ro change from coldfusion to Asp beause coldfusion does not fit their international language requirments... Does anyone know what they were talking about. I am talking that some major cold coldfusion fusion houses

Re: Duplicate emails

2000-09-28 Thread Bud
On 9/27/00, Bob Silverberg penned: Sorry to bother everyone, but has anyone else been getting lots of duplicate emails from this list? Yes. It happens every couple weeks. You'll get used to it. :) -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion

Re: Access 2000 remote install

2000-09-28 Thread David Hannum
Question. Are you just wanting to use Access files? Or do you need the Access GUI? If you just want to run files, then you don't even need Access. Just put the latest MDAC on your server. If you do need the whole shebang, then from the Access disc, you can choose which components you wish to

Re: super random

2000-09-28 Thread David Hannum
CF 4.5 (maybe 4.01 too) offers the UUID for creating even greater unique numbers. Dave - Original Message - From: Gavin Myers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 27, 2000 2:05 PM Subject: super random double question cfset x =

Re: Autonumber?

2000-09-28 Thread David Hannum
In Oracle, you have a separate sequencing table, and you reference it to insert your next record number. Dave - Original Message - From: Mark Warrick [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 27, 2000 12:49 PM Subject: RE: Autonumber? You don't have

Re: Force sessiontimeout??

2000-09-28 Thread Joseph Eugene
Hello all, StructDelete may have been a solution in CF4.0 and earlier. Has anyone seen this post by allaire? http://www.allaire.com/handlers/index.cfm?ID=14143Method=FullPageCall=/sup I dont know how you guys are getting structDelete to work with

Re: Configuring a Datasource on a Different Server

2000-09-28 Thread Nick McClure
Be careful using mapped drives, if you should change users some of those things don't stay connected. Also if you reboot the server the mapped drive might not reconnect until you log in. At 04:18 PM 9/27/2000 -0400, you wrote: make the cold fusion application server user accessible and

Drill down click menu navigation!

2000-09-28 Thread Scott, Andrew
Ok I have burnt my brain enough on this, and can't seem to get the logic right. I know I am close but it doesn't seem to work the way it is supposed to:-) What I am trying to achieve is simple enough, the below array is static at the moment but will be created on the fly later. The idea is that

RE: Autonumber?

2000-09-28 Thread HappyToad.com
I want the autonumber id to be displayed as a query on the checkout page for the customer as well. I can't do this if I let the database assign the number. Rich -Original Message- From: Mark Warrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 12:50 PM To: CF-Talk

RE: Suppress debug for a single template...

2000-09-28 Thread Peter Tilbrook
Spectra has a "cfa_stripdebugger" tag that apparently "Strips ColdFusion debugging output from the bottom of a page.". Probably not much use - but I did find this: 'Generating debug information for an individual page You can view the parameters and CGI environment variables for an individual

Any web-based message board software that can do this?

2000-09-28 Thread Lawrence B. Afrin, M.D.
This is a multi-part message in MIME format. --CD01BFD9EB790CB195C41678 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Howdy -- I have been looking for (preferably but not necessarily commercial) web-based message board software that meets certain

Was Getting Outlook information - MS Digital Dashboard

2000-09-28 Thread Peter Tilbrook
Microsoft's "Digital Dashboard" might assist here. Check out the link below for more information. http://www.microsoft.com/solutions/km/DigitalDashboard.htm Cheers! Peter Tilbrook Internet Applications Developer Aspect Computing Pty. Ltd. 19-25 Moore Street Turner, ACT, 2612 AUSTRALIA

Re: sql question

2000-09-28 Thread jeffc
I have to wonder why the same Users_ID would be registered for the same class 4 times(a very large person needing 4 seats??) That aside. Add an Identity field for the table. class_registration_ID. Then delete from class_registration where class_registration_ID = theIDnumber - Original

Re: Protecting Content / content leeching... A CF method?

2000-09-28 Thread Rob Keniger
on 9/28/00 7:28 AM, Nadir Ait-Laoussine at [EMAIL PROTECTED] wrote: Now, I've been recommended to user CFCONTENT, the problem with CFCONTENT is that it just spews out the content, so a PDF file (even if I specify the mime type) will come not come out as a PDF file, but some garbled text.

Re: Autonumber?

2000-09-28 Thread Nick Slay
This is a multi-part message in MIME format. --18DED34028AA5599808DB230 Content-Type: multipart/alternative; boundary="642EBD9C7220BF144AD611F4" --642EBD9C7220BF144AD611F4 Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854";

Re: Encrypting a credit card field...

2000-09-28 Thread Rob Keniger
Simple solution - DON'T display the credit card number at any time unless the page is secured with strong SSL encryption and even then avoid it if possible. Use client or session variables to store the CC number - don't use hidden form fields or URL parameters even if you use encryption on the

Re: Autonumber?

2000-09-28 Thread Rob Keniger
on 9/28/00 7:41 AM, HappyToad.com at [EMAIL PROTECTED] wrote: How do I use UUID? cfset uniqueid=createUUID() -- Rob Keniger big bang solutions mailto:[EMAIL PROTECTED] http://www.bigbang.net.au -- Archives:

Help with CFHTTP building a query from a CSV

2000-09-28 Thread Peter Theobald
I am saving an Excel spreadsheet as a CSV (Comma Separated Values) file. I import it into my web site by uploading it with CFFILE, then building a query out of it using CFHTTP. The problem is the CSV format saves each field as data separated by commas, and ONLY if there is a comma inside the

RE: Getting Outlook information

2000-09-28 Thread Pete Freitag
If you use roaming profiles, and your profiles are stored on a server that CF can access. Then you can read in the outlook data file (username.pst), and use the Outlook COM object with CFOBJECT, to read it. I remember seeing this somewhere, but I can't recall where.

RE: Costing a private project..

2000-09-28 Thread Peter Theobald
Between $40/hr and $150/hr depending on your experience, your skill, your sales ability, your client's needs, your client's budget, and how nicely you can tie a necktie :-) Look on guru.com and compare your skillset to others to get a better idea. At 08:08 AM 9/27/00 -0300, Angél Stewart

Re: TO ALL: Request for ColdFusion SP2 Input

2000-09-28 Thread Peter Theobald
Thread-safe Sybase drivers on Linux would be nice :-) At 08:50 AM 9/27/00 -0400, Damon Cooper wrote: Folks, ColdFusion Service Pack 2 is under construction, and I'd like to get your feedback on what you believe to be Must-Be-Fixed items. While Service Pack 1 focused heavily on stability and

RE: Costing a private project..

2000-09-28 Thread Peter Theobald
What does it cost to join this list (after your free three month period is up)? At 06:07 AM 9/27/00 -0700, paul smith wrote: What was the question? At 01:27 PM 9/27/00 +0100, you wrote: Any where from around £35 - 100, the higher figure if you have specific industry experiance to add to a

Re: TO ALL: Request for ColdFusion SP2 Input

2000-09-28 Thread Peter Theobald
Cold Fusion Studio crashes a Win98 system every time due to resource problems. At 08:50 AM 9/27/00 -0400, Damon Cooper wrote: Folks, ColdFusion Service Pack 2 is under construction, and I'd like to get your feedback on what you believe to be Must-Be-Fixed items. While Service Pack 1 focused

Re: query exchange 5.5 ldap

2000-09-28 Thread Eric Dawson
I have very basic phonelist app that connects to an exchange 5.5 server. I link to an access database to add additional profile information. like pictures, and stuff. Very basic. but I'll package and (very) briefly document and forward to you. I'll post in the exchange as well. It has Alpha

Re: ColdFusion SP2

2000-09-28 Thread Peter Theobald
I'll bet you are running NT or Win2K. It crashes Win98 very quickly. It has the same resource leaks under NT, but NT is just better at handling it. At 07:17 PM 9/27/00 +0100, James Smith wrote: Interesting, I am running CFStudio just fine on a 96Mb laptop. My current memory usage is reported

Re: ot: sql question

2000-09-28 Thread David Shadovitz
This hurts to look at. Is that the entire table? Or are there additional fields that make those rows unique? If it's the entire table, why do you have identical rows, and why do you want to retain them? If there's more to the table, extend your 'where' clause to identify the unique row that

Drill down click menu navigation!

2000-09-28 Thread Scott, Andrew
Ok I have burnt my brain enough on this, and can't seem to get the logic right. I know I am close but it doesn't seem to work the way it is supposed to:-) What I am trying to achieve is simple enough, the below array is static at the moment but will be created on the fly later. The idea is

RE: access iif count

2000-09-28 Thread Peter Stolz
For Access try SUM instead of COUNT cfquery name="countyesnos" datasource="#dsn#" SELECT SUM(IIF(success = 1, 1, 0)) AS successyes, SUM(IIF(success = 0, 1, 0)) AS successno FROM survey /cfquery P. -Original Message- From: Jaime Garza [mailto:[EMAIL

Updating 2 databases on 2 seperate servers using one form submission

2000-09-28 Thread AustralianAccommodation.com Pty. Ltd.
I have dual sites running on 2 separate cf servers is there a way that I can update both databases when I am using one of my database update forms so that with one click of the form submit button it will take the form data and update both databases at the same time Kind Regards Claude Raiola

Re: Cant nest CFLOOPs !

2000-09-28 Thread Sean Renet
Peter make them lists. Cfset names = valuelist(myquery.name) etc then use listgetat - Original Message - From: "Peter Theobald" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, September 26, 2000 8:42 PM Subject: Cant nest CFLOOPs ! I just found out that if you nest

ColdFusion SP2 Input

2000-09-28 Thread Stephen R. Cassady
Mr. Damon Cooper; There are two specific issues with CF right now that I have come across and have torn my hair out with. The second is "fixed" with different coding methods, but the first requires close interaction (read: bugging of) with my ISP. 1) Additional Parameters with CFHTTP (and

RE: Delay

2000-09-28 Thread Reynolds, Adam
Yup and take one of those threads from you multi threaded server environemnt and lock it up for 2 seconds20% fall in server perfomance...bingo. :) -- From: Simon Horwith[SMTP:[EMAIL PROTECTED]] Sent: 27 September 2000 15:51 To: CF-Talk Subject: RE: Delay

Re: OMG!!!!!

2000-09-28 Thread John Forrester
Sounds like someone has not analysed the requirements very well. We have been using CF for over four years. Certainly there are problems with character representations at times ... nothing that we have not been able to work around. Once and awhile someone tries to code in ASP. So far whether from

Re: O'Reilly Website

2000-09-28 Thread W Luke
Found a tag related to this myself, if anyone else is interested: http://devex.allaire.com/developer/gallery/info.cfm?ID=CA3476BA-2830-11D4-AA 9700508B94F380method=Full Cheers Will - Original Message - From: "W Luke" [EMAIL PROTECTED] Newsgroups: cf-talk Sent: Monday, September 25,

RE: Any web-based message board software that can do this?

2000-09-28 Thread Mike Connolly
Have you looked at Allaire Forums? It'll support most of your requirements. I'm unsure about limitations on the application. -Original Message- From: Lawrence B. Afrin, M.D. [SMTP:[EMAIL PROTECTED]] Sent: 28 September 2000 04:30 To: CF-Talk Subject: Any web-based message

Webtrends

2000-09-28 Thread Iztok Polanic
Hi! We are using Webtrends Log Analyzer 5.0 But we found out that pur graphs don't look so good. Here are some examples: http://www.btc-city.com/logs/DEFAULT10.jpg http://www.btc-city.com/logs/DEFAULT22.jpg http://www.btc-city.com/logs/DEFAULT23.jpg How can we change sharpnes in Webtrends

Re: Webtrends

2000-09-28 Thread Dave Hannum
If you want us to look, we need the user name and pwd . . . .g Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message -

RE: updating two databases with one form submit (WAS: RE:)

2000-09-28 Thread Jeff Beer
You might want to put an insert trigger on your 'primary' database tables. When a record is inserted, the trigger would insert the same record into the other database. Also, same thing goes for updates and deletes. -Original Message- From: AustralianAccommodation.com Pty. Ltd.

RE: Any web-based message board software that can do this?

2000-09-28 Thread Steve Pierce
Look at Twister from Software.com. It isn't free, they don't have an NT version, but will scale like you want it too. Using news as the backend and a web interface is the best solution to discussion forums. Moreover it gives you the flexibility of using a News client or web browser. - Steve

RE: Any web-based message board software that can do this?

2000-09-28 Thread Lanny R. Udey
We are trying out cfboards. It looks pretty good and you can buy the source licence. Done if 100% fusebox if that is an advantage. It is at www.cfboards.com I should note that we haven't run it in production yet though. I have no affiliation with the company. Lanny Udey Hofstra University

RE: Autonumber?

2000-09-28 Thread HappyToad.com
That is exactly what I wanted. I appreciate it. thanks, Rich -Original Message- From: David Hannum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 6:07 PM To: CF-Talk Subject: Re: Autonumber? One useful way is this: CFSET OrderID = #DateFormat(Now(),

RE: Instant Messaging in Cold Fusion

2000-09-28 Thread Bob Silverberg
There was an article in the August 2000 edition of ColdFusion Developer's Journal that suggests a method of doing this using application structures. It might give you some ideas. Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27,

Re: updating two databases with one form submit (WAS: RE:)

2000-09-28 Thread AustralianAccommodation.com Pty. Ltd.
thanks for the suggestion regarding the insert trigger however I have no idea how I do that so your further guidance would be appreciated please keep in mind that for the moment all this is being done using access 200 database not sql - Original Message - From: "Jeff Beer" [EMAIL

RE: Autonumber?

2000-09-28 Thread HappyToad.com
I am getting the following error when I tried to use the code you sent me. Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 16 at position 49. ColdFusion was looking at the following text:#Invalid expression format. The usual cause is an error

Re: Webtrends

2000-09-28 Thread Iztok Polanic
Hi! Sorry...here they are: www.abak.net/webtrends Please provide any info you can. Tnx!!! Bye, Iztok - Original Message - From: "Dave Hannum" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, September 28, 2000 13:24 Subject: Re: Webtrends If you want us to look,

RE: Slightly OT -- Database Question

2000-09-28 Thread Bob Silverberg
It's difficult to build a good data model from the limited amount of information provided, but assuming that is _all_ the information you need to store, the quickest answer (not necessarily the best), would be to store the data in two tables. Order Table --- OrderID Quantity CardID

CGI. Auth_user timeout??

2000-09-28 Thread joeug
Hello All, Does anyone know whether or how the "CG.AUTH_USER" timesout or does it timeout at all. Thanks Joe - Sent using MailStart.com ( http://MailStart.Com/welcome.html ) The FREE way to access your mailbox via any web browser, anywhere!

Costing vs. Price Fixing

2000-09-28 Thread Guy J. McDowell
I believe the big difference between costing and price fixing is: Costing - Getting a feel for what is the average cost Price fixing- A majority of the community agreeing to maintain a minimum cost. Salary surveys are everywhere and many job postings carry salary expectations. I just don't see

Re: OMG!!!!!

2000-09-28 Thread JustinMacCarthy
Yes allaire has siad that Unicode will be part of CF5. Should be a sideeffect of using Java anyway... ~J - Original Message - From: "Paul Hastings" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, September 28, 2000 11:22 AM Subject: Re: OMG! Most likely that

RE: updating two databases with one form submit (WAS: RE:)

2000-09-28 Thread Reynolds, Adam
You are stuffed then. Write it in coldfusion as a double insert/update. -- From: AustralianAccommodation.com Pty. Ltd.[SMTP:[EMAIL PROTECTED]] Sent: 28 September 2000 13:01 To: CF-Talk Subject: Re: updating two databases with one form submit (WAS: RE:)

RE: Slightly OT -- Database Question

2000-09-28 Thread Andy Ewings
I guess it all depends on the potential size of the database. If it is going to be large and you want to search on it quickly then what tends to happen these days is people start of with a normalized data structure and then de-normalize until they reach a happy medium...aka data warehousing.

Re: Autonumber?

2000-09-28 Thread Deanna L. Schneider
With Oracle you need a sequence and a trigger script. The trigger fires on insert and pulls the next number from the sequence. I can provide samples of each if you need. -Deanna Deanna Schneider Interactive Media Developer UWEX

RE: Getting Outlook information

2000-09-28 Thread Robert Everland
Look here towards the bottom Dain has been able to log on to the exchage server http://www.cfm-resources.com/members/comet/forum/ViewThread.cfm?ThreadID=D5F C2DFE-4101-49FB-B7699011B9740E7C You will need Outlook on the server unfortunately but if it's an intranet who cares. To see what else he

Re: access iif count

2000-09-28 Thread Deanna L. Schneider
Thanks Jaime, But, it doesn't work. Syntax Error. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706 (608) 265-7923

Re: access iif count

2000-09-28 Thread Deanna L. Schneider
Thanks Peter. That did it. I swear I tried that. Oh well. Brain burp. -Deanna Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI

RE: ColdFusion SP2 -install issues

2000-09-28 Thread Al Musella, DPM
I don't remember if SP1 worked this way or not, but my biggest request would be for EVERY new version of CF - be able to be installed without having installed a previous version. I ran into trouble once where my webserver died. I had to rebuild everything. I forget which version of CF it

RE: Configuring a Datasource on a Different Server

2000-09-28 Thread Alan Wolf
According to other responses I have received, CF by default does not allow access to remote shares for security reasons (makes sense), and uses the local system account. I setup a cfuser account and gave it appropriate NT permissions to the folder I needed and it works. I'm only doing this until

CFTRANSACTION only works in same page?

2000-09-28 Thread Mike Amburn
i have a complex transaction that i have grouped into multiple includes. i am trying to wrap them into a transaction so that if any part fails, i can rollback. cftransaction action="begin" cfinclude template="part1.cfm" (if exception, rollback) cfinclude template="part2.cfm" (if exception,

date question in Query

2000-09-28 Thread Ben Densmore
This is a multi-part message in MIME format. --=_NextPart_000_0017_01C02930.A6560C40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am running a query to grab values from my db between a range of dates. = the only problem is that it only

Re: ColdFusion SP2

2000-09-28 Thread James Smith
I'll bet you are running NT or Win2K. You loose your bet, I have win98. It crashes Win98 very quickly. It has the same resource leaks under NT, but NT is just better at handling it. Not mine it doesn't -- James Smith [EMAIL PROTECTED]

Re: Costing vs. Price Fixing

2000-09-28 Thread J.Milks
Guy, how long have you been working (since college). Also, not that it really matters, but what did you study in college (or university)? It has been my experience that even new grads can expect at LEAST 30k right out of school in most canadian cities other than Toronto and Vancouver, where it

In search of security solutions for ColdFusion apps and Unix

2000-09-28 Thread Larry W. Virden
Here are some of the issues that I am asked about with regards to Unix and use of Coldfusion: Developers often resist having database user ids and passwords embedded into ColdFusion admin databases. This is not secure (since the ColdFusion admin now has info that they may, in fact, not be

RE: CF Career Advice?

2000-09-28 Thread Eric Dawson
consider starting a Cold Fusion users group in your area. I have been thinking of doing that in Winnipeg. Got a board room, access to a projector. And a core group to attend. If there are any fellow Winnipeggers that are interested let me know. email me at [EMAIL PROTECTED] Also, is there a

RE: Costing vs. Price Fixing

2000-09-28 Thread Hayes, David
I assume you know you can make more, but you're working for the non-profit because you support its goals. There are things more important than money, fortunately. -Original Message- From: Guy J. McDowell [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 7:23 AM To: CF-Talk

Re: In search of security solutions for ColdFusion apps and Unix

2000-09-28 Thread JustinMacCarthy
I would suggest sending this to the cf-linux list but... Developers often resist having database user ids and passwords embedded into ColdFusion admin databases. This is not secure (since the ColdFusion admin now has info that they may, in fact, not be cleared to see). What are the

Re: CF Career Advice?

2000-09-28 Thread J.Milks
CF in the Peg! Who knew? I run the Ottawa group, and have found it a GREAT career boost for me. Contact Amy Brooks at Allaire ([EMAIL PROTECTED]). She runs the CFUGs and is a great person. Jim - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

RE: Webtrends

2000-09-28 Thread Mark W. Breneman
WHAT?? How are you getting Webtrends Log Analyzer 5.0 to do jpgs? I asked Webtrends if it was possible they said not at this time only PNG files. So I proceeded to tell them what I thought about having a reference to using jpgs in the index but no content on the page it referenced. Typo in

synchronous vs non-synchronous ccard processing

2000-09-28 Thread Simon Horwith
Does anyone know the difference between synchronous vs non-synchronous credit card processing, and/or where I might learn more about it? ~Simon Simon Horwith Senior Developer Fig Leaf Software, Inc. 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com

CFINCLUDE problems

2000-09-28 Thread Gina Shillitani
Can you not include files in the following manner? Notes: CF Server has the mapping, so does IIS, and if you view the page I'm trying to include directly or link to it, it works fine. I am attempting to do this: CFINCLUDE TEMPLATE="/acb/webpage.cfm?WebPage_ID=20DID=9" but when I do this, I get

RE: Delay

2000-09-28 Thread Reynolds, Adam
Stop it! You are hogging a Server Thread while you do this. This really is horrendous programming technique. -- From: Simon Horwith[SMTP:[EMAIL PROTECTED]] Sent: 28 September 2000 14:32 To: CF-Talk Subject: RE: Delay actually, I think CFSET

RE: ColdFusion SP2 -install issues

2000-09-28 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I don't remember if SP1 worked this way or not, but my biggest request would be for EVERY new version of CF - be able to be installed without having installed a previous version. CF_Gripe Can I say AMEN to that?! It seems like some versions

cnencode parameters

2000-09-28 Thread Stan Newdel
This is a multi-part message in MIME format. --=_NextPart_000_000B_01C14810.44B36A50 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Could anybody please give me a command line to encode a directory? (or = does this have to be done file by

RE:

2000-09-28 Thread Hayes, David
Well, if that's what you really want to do, one way would be to set up a datasource reference on each server to the db on the other server, create a list of the datasources, and loop through them on your form action page. CFSET dbList = "db1,db2" CFLOOP index="db" list="dbList" CFQUERY

Need some help here, unknown error SQL 7008N

2000-09-28 Thread James Taavon
This is a multi-part message in MIME format. --327729A9AA7CC339FC1F4ECE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I checked to see what the error meant and it said this: SQL7008N REXX variable "variable" contains inconsistent data. Cause: A

quick question

2000-09-28 Thread Paul Johnston
What is the information in CGI.HTTP_USER_AGENT? For Netscape I get: Mozilla/4.08 [en] (Win98; U ;Nav) and for IE I get: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98) I am writing a page logging application, and I would like to know as much about the user as possible. What can I do about

RE: Delay

2000-09-28 Thread Simon Horwith
correct. I don't preach server side timers, I just replied to somebody's question. They need a timer, written in CF and running server-side only. This was the best code I could come up with to do that. I think what they are actually after is something like a 10 second delay, not one minute,

Re: Delay

2000-09-28 Thread Michael Dinowitz
WaitFor 1.0 Using this component you can pause your ASP app for a specified time, wait until a file exists or wait until the component can get exclusive read/write permissions to a file http://www.serverobjects.com/comp/waitfor.zip Use it with CFOBJECT and save in processing. NEVER USE CFLOOP FOR

RE: CFINCLUDE problems

2000-09-28 Thread Hayes, David
The answer is in that message; it thinks you're referencing and absolute path. Use the relative path syntax if you don't want to create a mapping. -Original Message- From: Gina Shillitani [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 10:21 AM To: CF-Talk Subject:

Re: CF Career Advice?

2000-09-28 Thread Neil H.
In Canada is Cold Fusion not that Cold :) I couldn't resist :) Neil - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, September 28, 2000 10:24 AM Subject: RE: CF Career Advice? consider starting a Cold Fusion users group in

Re: Combo box

2000-09-28 Thread Dru Whitledge
There's an unencryted (modifiable) tag available on the Allaire Site (called ComboBox.cfm) that does precisely what you want to do -- using Javascript to divide the functionality between the two form elements and allowing each to influence and know (somewhat) what the other is doing. If you

RE: TO ALL: Request for ColdFusion SP2 Input

2000-09-28 Thread Jesse Noller
Peter: We do not have control over the Sybase drivers on linux that you are speaking about. Those come directly from Sybase, and Sybase has publicly stated that the drivers a non-thread-safe due to the whacked threading model on Linux. I agree with them, the threading model has

RE: quick question

2000-09-28 Thread Anthony Geoghegan
Hi Simon, I am currently working on a similar project... ick question What is the information in CGI.HTTP_USER_AGENT? For Netscape I get: Mozilla/4.08 [en] (Win98; U ;Nav) and for IE I get: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98) These values are provided by the browser and as such

RE: Delay

2000-09-28 Thread Simon Horwith
egg-knowledged!! use of a COM object would definitely be the best way to do this. Whether or not that method is available to whomever originally posed the question of how to create a server side pause with cf code, is a mystery. If he has access to CFOBJECT, this is a much better solution.

RE: Delay

2000-09-28 Thread Peter Stolz
CF_BLOCK P. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:36 AM To: CF-Talk Subject: RE: Delay correct. I don't preach server side timers, I just replied to somebody's question. They need a timer, written in CF and running

RE: Delay

2000-09-28 Thread Simon Horwith
what is cf_block? ~Simon -Original Message- From: Peter Stolz [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:57 AM To: CF-Talk Subject: RE: Delay CF_BLOCK P. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000

RE: CFINCLUDE problems

2000-09-28 Thread Gina Shillitani
I did create the mapping though... it is in CF Server: Logical Path Directory Path / C:\INETPUB\WWWROOT\ /acb/ C:\Inetpub\wwwroot\acb\acb\ -Original Message- From: Hayes, David [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:44 AM To: CF-Talk Subject: RE:

Re: TO ALL: Request for ColdFusion SP2 Input

2000-09-28 Thread Damon Cooper
Peter, the Sybase Open Client for Linux threading issue has nothing to do with Allaire or ColdFusion. The issue is that Open Client for Linux is currently single threaded. From Sybase: "The current releases of OpenClient for Linux are NOT thread-safe. I'm told this is because of the

Re: Delay

2000-09-28 Thread Ryan
I think the CFX_Sleep tag someone mentioned sounds perfect. Maybe someone mentioned some problems with this method that I missed or something. RPS -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

  1   2   3   >