CF5 Graph

2001-12-28 Thread Shahzad Butt
Hi If we use CFGraph Type=bar valueColumn=Total scalefrom. It shows graph with fixed bars. I want bar size depending on Total. If total is 300 bar would be half than total of 150. Can someone pls let me know which attribute will do this job. Regards Shahzad Butt

RE: CF5 Graph

2001-12-28 Thread Pascal Peters
I believe scaleto=X will do that (X is the maximum value you want) -Original Message- From: Shahzad Butt [mailto:[EMAIL PROTECTED]] Sent: vrijdag 28 december 2001 11:54 To: CF-Talk Subject: CF5 Graph Hi If we use CFGraph Type=bar valueColumn=Total scalefrom. It shows graph with

Re: Email headers

2001-12-28 Thread Howie Hamlin
From the cf docs: The following lists the message header and body columns returned by cfpop: queryname.date queryname.from queryname.messagenumber queryname.replyto queryname.subject queryname.cc queryname.to queryname.body queryname.header queryname.attachments queryname.attachmentfiles HTH,

Re: Email headers

2001-12-28 Thread Owen Leonard
From the cf docs: The following lists the message header and body columns returned by cfpop: queryname.date queryname.from queryname.messagenumber queryname.replyto queryname.subject queryname.cc queryname.to queryname.body queryname.header queryname.attachments

More CFGRAPH Fun

2001-12-28 Thread Brian Klaas
I'm having difficulty getting CFGRAPH to output in anything other than a 3:2 aspect ratio. My CFGRAPH tag looks like this: cfgraph type=bar query=accessReport valuecolumn=counterField itemcolumn=sectionID graphWidth=600 graphHeight=300 valuelabelsize=8 itemlabelsize=8 barSpacing=5 /cfgraph The

Using cffile to append to a text file

2001-12-28 Thread Tim
I am using cffile to append text to a text file from a form. I know to use (chr10) and (chr13) for line breaks and carriage returns, but what do I use to creats spaces between the fields and to tab over? Thanks, Tim __ Do You Yahoo!? Send your

Re: CFServer -- Problems in Win XPpro

2001-12-28 Thread Scott Brady
Anyone know where CFIDEService.exe can be found or what might have replaced it? Trying to get CF 4.0.1 working under MS Win XPpro. After a lot of trial and tribulation, useful advice from others in this group and some anti-useful advice from MS, it is now down not being able to start CF

RE: Using cffile to append to a text file

2001-12-28 Thread Dave Watts
I am using cffile to append text to a text file from a form. I know to use (chr10) and (chr13) for line breaks and carriage returns, but what do I use to creats spaces between the fields and to tab over? For spaces, you might simply include a space: #field1# #field2# For tabs, you might

RE: Using cffile to append to a text file

2001-12-28 Thread Macarie Neculai
Hi! You can insert the TAB character chr(9): CFLOOP query=query #column1##Chr(9)##column2##Chr(9)#. /CFLOOP or use the Left function: Fist column Second column Third column ... #Chr(13)##Chr(10)# #Left(column1, 20)#

RE: Using cffile to append to a text file

2001-12-28 Thread Sandy Clark
Use Chr(32) for Space and Chr(9) for Tab. For a complete guide to Ascii codes go to http://www.asciitable.com/ -Original Message- From: Tim [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 9:50 AM To: CF-Talk Subject: Using cffile to append to a text file I am using cffile

RE: CFServer -- Problems in Win XPpro

2001-12-28 Thread Dave Watts
Anyone know where CFIDEService.exe can be found or what might have replaced it? Trying to get CF 4.0.1 working under MS Win XPpro. After a lot of trial and tribulation, useful advice from others in this group and some anti-useful advice from MS, it is now down not being able to start

RE: was wondering if someone could point me in the right directio n

2001-12-28 Thread Dave Watts
I was wondering if there is a way to detect if someone has cookies enabled. As others have mentioned, there are custom tags which can do this for you. However, it's worth pointing out that whether you use those custom tags or do it yourself, there's only one way to detect if someone has

Tracking Emails

2001-12-28 Thread Chad McCue
I was wondering if there is any possible way to get the number of people that actually opened my email I sent them. I will need to get this number into a sql database. Please help!!! Chad McCue Cold Fusion Web Developer Advanced Media Productions

RE: Tracking Emails

2001-12-28 Thread Larry Engleman
If you send a million people mail through the postal service, can you check how many people open it and how many throw it out? -Larry -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 10:46 AM To: CF-Talk Subject: Tracking Emails I was

RE: Tracking Emails

2001-12-28 Thread Dave Watts
I was wondering if there is any possible way to get the number of people that actually opened my email I sent them. I will need to get this number into a sql database. Please help!!! Unfortunately for you, there's no tracking information provided by SMTP mail, to the best of

Re: Tracking Emails

2001-12-28 Thread Howie Hamlin
Send it with a link to a small image on your server that is really a cf link like: img src=http:\\somedomain.com\track.cfm?userid= Then, use a cfcontent in the page to send the image and also record the image request. Note: this will not work if the user does not have an email client that

Re: OT: was wondering if someone could point me in the right direction

2001-12-28 Thread Bud
On 12/27/01, Troy Montour penned: I was wondering if there is a way to detect if someone has cookies enabled. reason I'm asking is I have a site that sets a cookie and we are having problems when people have cookies disabled when its another dealer of the site it defaults to the main site and

RE: Tracking Emails

2001-12-28 Thread Tracy Bost
The closer thing I could think of is place something in your mail header s to the effect of X-Confirm-Reading-To: Return-Receipt-To: Many variables would have to fall in place such as the mail server for th e recipient would have to be configured to understand confirm the recipie nt's

Running CF as command line tool

2001-12-28 Thread stas
I am wondering what it takes to run CF to perform certain tasks that are not not web related... as one would use PERL. I've started learning PERL a few months ago as a tool to do some local data cleansing, etc... but I still miss the facilities CF provides for database and file interaction. I

Cfapplication

2001-12-28 Thread Kris Pilles
Is it possible to set your session variables to expire when the browser is closed? I cant seem to get my session variables to expire??? Any ideas? Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

Re: Cfapplication

2001-12-28 Thread Bruce Sorge
You could try something like this: CFLOCK TIMEOUT=180 SCOPE=SESSION TYPE=READONLY CFCOOKIE NAME=CFID VALUE=#SESSION.CFID# CFCOOKIE NAME=CFTOKEN VALUE=#SESSION.CFTOKEN# /CFLOCK -- Original Message -- From: Kris Pilles [EMAIL PROTECTED]

Re: Running CF as command line tool

2001-12-28 Thread Alex
wrong tool for the job. you could write a webpage in assembly if you wanted too. On Fri, 28 Dec 2001, stas wrote: I am wondering what it takes to run CF to perform certain tasks that are not not web related... as one would use PERL. I've started learning PERL a fe w months ago as a tool to

RE: Running CF as command line tool

2001-12-28 Thread Joel Parramore
I've never tried using cfml.exe directly --- you'll have to let me know h ow that works. You could write your CF templates and use the CF Administrator to run scheduled tasks to carry them out, or run them using a browser directly. Or, getting even more baroque, use Perl to make a HTTP request

RE: Running CF as command line tool

2001-12-28 Thread Joel Parramore
as regards file handling below should read and file handling features, also,... Regards, Joel Parramore -Original Message- From: Joel Parramore [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 11:53 AM To: CF-Talk Subject: RE: Running CF as command line tool I've

Learning CF 5. Stumped with this problem

2001-12-28 Thread Thomas Smith
I am just starting learning ColdFusion 5 using Ben Forta's Web Application Construction Kit. I'm stumped already. My problem is the following: I am using the Record View Wizard (pg 115). I select the server (loalhost) and get the message taht authentication failed. I added the file to the

IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread Brunt, Michael
I recently had an apparent problem with cookies that set and work fine in IE 5.5 and earlier but caused an issue in 6.0, they were not getting set. So I looked at what I think was the default Privacy setting in IE 6.0 and it looks like it gets set to Medium on install. Which has settings as

Re: Cfapplication

2001-12-28 Thread Douglas Brown
CFLOCK NAME=session.sessionID TYPE=exclusive TIMEOUT=10 !--- Define CFTOKEN CFID as temporary variables//--- CFIF ISDEFINED('SESSION.CFID') AND ISDEFINED('SESSION.CFTOKEN') CFSET TEMPID = SESSION.CFID CFSET TEMPTOKEN = SESSION.CFTOKEN CFCOOKIE NAME=CFID VALUE=#tempID# CFCOOKIE NAME=CFTOKEN

RE: Running CF as command line tool

2001-12-28 Thread Dave Watts
I am wondering what it takes to run CF to perform certain tasks that are not not web related... as one would use PERL. I've started learning PERL a few months ago as a tool to do some local data cleansing, etc... but I still miss the facilities CF provides for database and file

RE: CF5 Graph

2001-12-28 Thread Shahzad Butt
I am using scale to 10. now size is fix upto 10 for each bar. I want bar size to be varible depending upon Total. -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: 28 December 2001 11:04 To: CF-Talk Subject: RE: CF5 Graph I believe scaleto=X will do that (X is

Re: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread Thomas Muck
Yes, IE 6 is cookie-unfriendly by default. Most users wouldn't know this, unfortunately, so there are many sites out there that are simply not working with IE 6. tom Brunt, Michael [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I recently had an apparent

RE: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread jon
Yeah... we did. You actually have to build the compact privacy policy... It's not too evil, just kind of hard to get used to. Sadly, I don't have the URL anymore, but there's a tool which can help you. -- jon - jon roig epilepsyfoundation.org -Original Message-

RE: Session variables

2001-12-28 Thread UXB Internet
cf_rant I wish Allaire/Macromedia would address the problem of requiring high level programming locks for session and application variables and place that code into the interpreter where it belongs. If you ALWAYS have to lock session and application variables then the code to do so should part

RE: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread jon
Found it: (sorry for the double message) This tool will assist you in building a compact privacy statement. http://www.alphaworks.ibm.com/tech/p3peditor/ -- jon - jon roig epilepsyfoundation.org -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent:

RE: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread Brunt, Michael
Tom and Jon, thanks for the feedback and unfortunate confirmation that there is an issue with IE 6.0. As an question/comment (more comment) I am concerned at what peculiarities might ensue in the ongoing development of Internet Explorer as .NET becomes the major imperative for all that Microsoft

Diffeerent error page displayed in IE with debug and without

2001-12-28 Thread Macarie Neculai
Hi! I have the following error monitor: CFERROR type=monitor template=monitor_error.cfm and in the first line of this file I disable the debug output: CFSETTING showdebugoutput=No But: in IE5.0 if I do not show the debug output

RE-POST: stored procedures and cftransaction

2001-12-28 Thread Bryan Stevenson
Hey again, Dave Watts assured me yesterday that I should be able to use CFSTOREDPROC and CFQUERY inside a CFTRANSACTION with the same datasource and have no problems. Thanks Dave ;-) Now below is my original post and I am wondering if anyone has encountered a similar situation with a mix of

CFTree - Auto close

2001-12-28 Thread Larry Juncker
Happy Holidays to all- I was wondering if anyone has come up with a way of telling CFTree to close an expansion if someone clicks to expand another menu? For instance: Parent basketball has been expanded to show the submenus under Basketball Someone clicks to expand Football submenus, I want

locking rant (was RE: Session variables)

2001-12-28 Thread Cameron Childress
I wish Allaire/Macromedia would address the problem of requiring high level programming locks for session and application variables and place that code into the interpreter where it belongs. I for one am glad Allaire/Macromedia has *not* done this. I like my applications to run fast.

RE: Using cffile to append to a text file

2001-12-28 Thread Owens, Howard
You can use chr9. Or you can just use a tab ... field field field field H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 -Original Message- From: Dave Watts [SMTP:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 7:00 AM

Re: Running CF as command line tool

2001-12-28 Thread stas
Okay, I'm convinced! Any suggestions then for a general-purpose language that I could run on my desktop for text/file processing and database connectivity? I like PERL, but I am still at the level where I always have to grab a book to look up syntax, as its syntax doesn't render itself to quick

Re: Diffeerent error page displayed in IE with debug and without

2001-12-28 Thread Max Paperno
I recall hearing that if your error page is less than 2K (or some such number) in size then IE will show its own error page vs. yours. Perhaps that's the issue? Also there's an advanced setting in IE about showing friendly HTTP errors (vs. server errors which apparently are considered

Re: Running CF as command line tool

2001-12-28 Thread Jim McAtee
In a MS environment, VB is often the tool of choice. For fast text file processing, it's hard to beat Perl, though. If it's mostly database processing and done on a server where CF is already installed, I find it very hard NOT to use CF. (How does the saying go about if you've got a hammer,

RE: Running CF as command line tool

2001-12-28 Thread Dave Watts
Okay, I'm convinced! Any suggestions then for a general-purpose language that I could run on my desktop for text/file processing and database connectivity? I like PERL, but I am still at the level where I always have to grab a book to look up syntax, as its syntax doesn't render itself

RE: RE-POST: stored procedures and cftransaction

2001-12-28 Thread Dave Watts
Dave Watts assured me yesterday that I should be able to use CFSTOREDPROC and CFQUERY inside a CFTRANSACTION with the same datasource and have no problems. Thanks Dave ;-) Now below is my original post and I am wondering if anyone has encountered a similar situation with a mix of

RE: Running CF as command line tool

2001-12-28 Thread Jerry Johnson
If performance is not an issue, but developer maintenance is, I have been using a combination of the two. We manage the files/directories in CF, pass the filespec and parameters to perl using CFHTTP, do all the string manipulation in Perl, then pass back the results as XML which CF parses and

Re: RE-POST: stored procedures and cftransaction

2001-12-28 Thread Bryan Stevenson
OK I got this one cased...when I went back and re-created the error it hit meI'm a moron ;-) Sometimes I wonder if my head is leaking or something...geesh. I was passing the username and password (for SQL Server) in the CFSTOREDPROC and don't have a user/pass setup for the datasource in CF

Re: Running CF as command line tool

2001-12-28 Thread Alex
go with perl. You should always -- use strict; and -Tw flags. As far as rote memorization forget it. After a while you'll have some code snippets and you'll fly through scripts. Comprehension not Memorization. On Fri, 28 Dec 2001, stas wrote: Okay, I'm convinced! Any suggestions then for a

Re: Running CF as command line tool

2001-12-28 Thread Alex
also if you are on windows look at cygwin or a ported unix shell to install. You can do alot of things in one line shell. On Fri, 28 Dec 2001, stas wrote: Okay, I'm convinced! Any suggestions then for a general-purpose language that I could run on my desktop for text/file processing and

RE: Running CF as command line tool

2001-12-28 Thread Mark W. Breneman
I know that this is not exactly what you are looking for but http://www.winbatch.com/ is a cool scripting / automation tool. I have seen it do some amazing things. Mark W. Breneman -Macromedia Certified ColdFusion 5 Developer -Network / Web Server Administrator Vivid Media [EMAIL

vspider --- help please

2001-12-28 Thread Sean McCarthy
Hi, I thought I had it all working was I wrong. The vspider is great but... I have multiple sites on the same box with different IP's. Technically in my eyes they are all local but I cannot find a way to get the spider to go through the site. I even tried the same IP with different

RE: vspider --- help please

2001-12-28 Thread Dave Watts
I thought I had it all working was I wrong. The vspider is great but... I have multiple sites on the same box with different IP's. Technically in my eyes they are all local but I cannot find a way to get the spider to go through the site. I even tried the same IP with different

RE: vspider --- help please

2001-12-28 Thread Mark A. Kruger - CFG
NTLM means NT lan manager - you probably have a problem with your securit y (cals on files maybe?) -Original Message- From: Sean McCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 1:28 PM To: CF-Talk Subject: vspider --- help please Hi, I thought I had it all

RE: vspider --- help please

2001-12-28 Thread Sean McCarthy
Thank you. One more question, for the moment, has anyone had sucess using the verity spider with multiple sites with different IP's on the same server? Is this going to be possible or will it only allow the localhost, servername, or 127.0.0.1. Thanks Sean -Original Message- From: Dave

OT: Merchant Account Banks...

2001-12-28 Thread Jon Hall
This is really OT, but I know a lot of you guys provide merchant accounts with shopping carts and the like too. I am looking for recommendations for banks with quality support that will let us set up as an Merchant Account rep/ISO for them. We have run into some very bad experiences with a rather

Re: IE 6.0 Cookies Default Settings Cookie Problem

2001-12-28 Thread Jochem van Dieten
jon wrote: Yeah... we did. You actually have to build the compact privacy policy... Actually, the whole concept and idea behind P3P are pretty interesting (but I believe the actual implementation is a disaster which has got more to do with Big Companies(tm) extracting information from you

RE: vspider --- help please

2001-12-28 Thread Garza, Jeff
From what I've been able to find, it will only spider the localhost address space. You'll have to set the site in question to respond to localhost _and_ make sure that you are using only relative links... Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]