File I/O CFC

2004-10-11 Thread Massimo, Tiziana e Federica
A stateless CFC that support different kind of file I/O tasks, including recursive directory listing and much more. Feel free to grab it here: http://www.olimpo.ch/tmt/cfc/tmt_file_io Any feedback is appreciated Massimo Foti DW tools: http://www.massimocorner.com CF

Re: New Install giving me H#LL

2004-10-11 Thread Donna French
i got it working thx.. On Mon, 11 Oct 2004 22:11:48 -0600, Donna French <[EMAIL PROTECTED]> wrote: > Haven't checked ISAPI and don't know what to check for if I do. Have > never had any trouble in the past like this. > > The error I get is: > > HTTP 405 - Resource Not Allowed > > Any

Re: New Install giving me H#LL

2004-10-11 Thread Donna French
Haven't checked ISAPI and don't know what to check for if I do. Have never had any trouble in the past like this. The error I get is: HTTP 405 - Resource Not Allowed Any ideas? Or can you point me in the direction to check ISAPI??? TIA, Donna On Mon, 11 Oct 2004 23:25:59 -0400, Josh <[EMAIL P

RE: Outputting Structure Key Problem

2004-10-11 Thread Matthew Walker
Ah right whoops sorry. How about trying ?   _   From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 October 2004 4:23 p.m. To: CF-Talk Subject: RE: Outputting Structure Key Problem Score is a struct created with Structnew(), not a query. I'd check for whitespace in the data in

RE: Outputting Structure Key Problem

2004-10-11 Thread James Holmes
I checked the source of the page to which you linked; it is indeed adding whitespace at the end of the QUIZID column. I'm guessing that instead of using a varchar type you used a fixed column width and this is causing the problem. Trim() the data before you insert it into the struct. -Original

Re: Outputting Structure Key Problem

2004-10-11 Thread Umer Farooq
hmm.. just dump out score.. to see whats in there.. [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: >  >#Score["Sleep"]# > > Tried that and got the following errror: > > Element Sleep is undefined in a CFML structure referenced as part of an > _expression_ > > Interestingly if I hard code the str

Re: Outputting Structure Key Problem

2004-10-11 Thread Josh
Was your message cut off?  Seems like you were in the middle of explaining this further? -Josh -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including MS SQL Server! [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: > >

Re: New Install giving me H#LL

2004-10-11 Thread Josh
Have you checked your ISAPI filters?  do you see anything in the for CF? Are you seeing any errors when you try to bring up .cfm files? -Josh -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including MS SQL Server!

RE: Outputting Structure Key Problem

2004-10-11 Thread James Holmes
Score is a struct created with Structnew(), not a query. I'd check for whitespace in the data in the DB - perhaps there is an unintentional space after the word "Sleep" in the DB? -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 October 2004 10:29 To:

Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Here you.. go.. returns.. orderId, date, customerId, customer name, paymentReceived, amount due (per order)... ,     SELECT orders.orderId, order.orderDate, orders.customerID,    customers.customerName, customerPayment.PaymentReceived    (SELECT sum(unitPrice * quantity)   

Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Hi,    Here you.. go.. returns.. orderId, date, customerId, customer name, paymentReceived, amount due per order... ,    SELECT orders.orderId, order.orderDate, orders.customerID,   customers.customerName, customerPayment.PaymentReceived   (SELECT sum(unitPrice * quantity)   

RE: Outputting Structure Key Problem

2004-10-11 Thread Matthew Walker
You've created a query record set, not a structure. You could use query of queries to retrieve the matching record from your record set or you could use a UDF like this: http://cflib.org/udf.cfm?ID=586   _   From: sebastian palmigiani [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 October 2004

Re: Outputting Structure Key Problem

2004-10-11 Thread sp
>#Score["Sleep"]# Tried that and got the following errror: Element Sleep is undefined in a CFML structure referenced as part of an _expression_ Interestingly if I hard code the structure with [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donation

New Install giving me H#LL

2004-10-11 Thread Donna French
I just built a new system and for some reason I'm having trouble running CF pages. I've installed IIS, CF 5 and CFMX - checked services and both are running so I'm not sure what the problem is. Any suggestions would be great. Thx, Donna -- Donna French [EMAIL PROTECTED]

RE: Access to and / listings

2004-10-11 Thread James Holmes
There has to be a way, since the CF admin does it. Perhaps some poking around is in order. -Original Message- From: Anders Green [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 October 2004 1:22 To: CF-Talk Subject: Re: Access to and / listings At 11:42 AM 10/11/2004, you wrote: >Does anyo

Re: SQL Query Help Please.

2004-10-11 Thread Nomad
Hi Josh, Thanks for your reply. Your query is similar to what I have been trying. My query is: SELECT customer.Customercompanyname, orders.Orderid, orders.Orderdate, (Orderdetails.unitprice * Orderdetails.quantity) As OrderValue, CustomerPayments.PRIG As PaymentsReceived FROM  Orders , OrderDeta

RE: Outputting Structure Key Problem

2004-10-11 Thread James Holmes
#Score["Sleep"]# [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: locale of the JVM

2004-10-11 Thread Matthew Walker
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/i18n11.htm   _   From: Paul Wilson [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 October 2004 2:31 p.m. To: CF-Talk Subject: locale of the JVM How do you edit the locale of the JVM? Is there a way of setting this without using SetLocale

RE: locale of the JVM

2004-10-11 Thread Adrian Lynch
At a guess it's taken from the OS it's on, not sure if that's any help but! Ade -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED] Sent: 12 October 2004 02:31 To: CF-Talk Subject: locale of the JVM How do you edit the locale of the JVM? Is there a way of setting this without

locale of the JVM

2004-10-11 Thread Paul Wilson
How do you edit the locale of the JVM? Is there a way of setting this without using SetLocale When I use getLocale on one of my servers I get "English US", the other is "English Australian" Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [D

Re: SQL Query Help Please.

2004-10-11 Thread Josh
Here's a start, though you'll have to explain your tables and your calculations further. SELECT c.Customername, a.Orderid, a.Orderdate, ( where is this being stored? AmountReceived maybe this could be d.PaymentReceived  AS AmountReceived ? ), ( put your formula for calculating AmountDue her

Outputting Structure Key Problem

2004-10-11 Thread sebastian palmigiani
The following code below can be seen at http://www.tcmtests.com/files/codetest.cfm When I try append the following code to it I get an error that the variable Sleep is not defined #Score.Sleep# How can I output the structure key value that I want? --- select AVG(QuizPercent) as

Outputting Structure Key Problem

2004-10-11 Thread sp
The following code below can be seen at http://www.tcmtests.com/files/codetest.cfm When I try append the following code to it I get an error that the variable Sleep is not defined #Score.Sleep# How can I output the structure key value that I want? --- select AVG(QuizPercent) as A

Re: ot: css ?

2004-10-11 Thread dave
actually i do think its done, i tried using a color and that didnt work so i followed the other suggestion but instead of a transparent bg i made a white one and wrote that in and that workd. thanks all [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Do

Re: ot: css ?

2004-10-11 Thread Nathan Strutz
You just have to be more specific... body { color:red; } html body { color:green; } your text will be green because the 2nd selector is more specific. If you wanted to be even more specific: html>body { color:blue; } but the direct descendant selector only works in newer browsers (firefox, et

Re: ot: css ?

2004-10-11 Thread Umer Farooq
are you sure.. as this works.. in IE and Firefox..
body { background: #FF url(/images/spacer.gif) repeat-x; }
dave wrote: > i had already tried something similiar with no success > :( > > -- Original Message -- > From: Umer Farooq <[EM

Re: ot: css ?

2004-10-11 Thread dave
i had already tried something similiar with no success :( -- Original Message -- From: Umer Farooq <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Mon, 11 Oct 2004 18:29:46 -0400 >just define a new css body tag for that page.. with transparent image

Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Hi, http://www.techonthenet.com/access/queries/joins1.htm For beginner I would suggest.. SAMS SQL in 21 Days.. and Google.. :-) Nomad wrote: > Hello! > > I am trying to create a join of four tables to get data from a db in the > format I want. > > The Database tables and fields are: > Orders

Scopes. Which are nested?

2004-10-11 Thread Matt Robertson
I'm looking to cfdump out data as part of an error handler and don't want to repeat myself.  Especially since I am storing data in a db with a finite field size.  I know the cfcatch scope is contained within the variables scope (so I don't need to cfdump out both to get the cfcatch data) but are th

Re: ot: css ?

2004-10-11 Thread Umer Farooq
just define a new css body tag for that page.. with transparent image as background...  CSS takes the last defined setting... dave wrote: > is there a way to override a body tag? > > what the problem is that i have 1 page that i want a white bg on but in > my css i have an image bg in my body t

SQL Query Help Please.

2004-10-11 Thread Nomad
Hello! I am trying to create a join of four tables to get data from a db in the format I want. The Database tables and fields are: Orders (orderid,customerid,Orderdate) OrderDetails(Orderid,UnitPrice,productid,quantity) Customer(Customerid, customername, address) CustomerPayments(orderid,PaymentR

ot: css ?

2004-10-11 Thread dave
is there a way to override a body tag? what the problem is that i have 1 page that i want a white bg on but in my css i have an image bg in my body tag and i need the css file in there and dont really want to add another for validation purposes. so again, is there a way to be able to over ride th

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Sean Corfield
On Mon, 11 Oct 2004 16:47:37 -0400, Dave Watts <[EMAIL PROTECTED]> wrote: > > We use Microsoft WAST (free) for simple stuff ... > But Sean, that only runs on Windows! Given the length of a typical load > test, I'm surprised you can hold your nose that long. LOL!!! I do try to stay out of the QA l

Re: Mirroring CFMX Configurations...

2004-10-11 Thread Charles Heizer
I'm using a BigIP 2400 from F5. I was wondering if you have any issues   with loadblancing and using Sessions. I have SSL configured and it   won't keep or set the session, but if I take one of the two hosts   off-line it works fine. Thanks, - Charles On Oct 11, 2004, at 2:13 PM, Josh wrote: > C

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Spike
ROFL That's the funniest thing I've seen on this list in a long time. Dave Watts wrote: >>We use Microsoft WAST (free) for simple stuff ... > > > But Sean, that only runs on Windows! Given the length of a typical load > test, I'm surprised you can hold your nose that long. > > Dave Watts, CTO,

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Umer Farooq
too bad OpenSTA has only win GUI.. try Jmeter http://jakarta.apache.org/jmeter/ If you need to get a hold of... system resource data.. etc.. etc.. try Nagios (windows plugins are available) and have the output put into a DB.. and then use CF to graph.. and it won't taint your results.. I thin

Re: Mirroring CFMX Configurations...

2004-10-11 Thread Josh
Charles Heizer wrote: > Cool ... Thanks for the info. No prob, glad to help. > > If you don't mind I have another question. Do you use a Hardware   > Load-Balancer or is it software? I have used both. I prefer hardware load balancing...but it can be pricey! -- Exciteworks, Inc Expert Hosting

RE: Slightly OT, load testing CF Applications.

2004-10-11 Thread Dave Watts
> We use Microsoft WAST (free) for simple stuff ... But Sean, that only runs on Windows! Given the length of a typical load test, I'm surprised you can hold your nose that long. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads] [T

Re: Mirroring CFMX Configurations...

2004-10-11 Thread Charles Heizer
Cool ... Thanks for the info. If you don't mind I have another question. Do you use a Hardware   Load-Balancer or is it software? Thanks, - Charles On Oct 8, 2004, at 6:31 PM, Josh wrote: > Linux!  awesome...we run a small farm of linux servers ourselves. > > Just copy the appropriate xml files

Re: OT: DB Design - Bad Case of the Mondays

2004-10-11 Thread Patricia Lee
Perhaps add a third table AuthorizedUsers that allows a many to one between users and accounts. You can maintain the one-one relationship between accounts and Users to represent the primary uber-authorized user. -Patti > I've got a db that includes the following tables: > > Accounts > --

Re: OT: DB Design - Bad Case of the Mondays

2004-10-11 Thread Ben Doom
I would look at it like this: There's a many:1 relationship users:accounts.  Salesrep:account is a subset of this relationship.  The 1:1 nature of this is a restraint I'd enforce outside the DB proper. That is, I would check to see if there's a user for the account where the usertype is salesr

Web services in FB3

2004-10-11 Thread Kyle McNamara
Hello, I am trying to create a web service that requires may of the same global vars as my FB3 app that it pertains to. Rather than trying to recreate all the vars, I would like to somehow have people call it remotely from other apps, using syntax that would invoke it from inside the FB3 architect

OT: DB Design - Bad Case of the Mondays

2004-10-11 Thread Jim McAtee
I've got a db that includes the following tables: Accounts -- AccountID   PK Name AccountRepID    FK Users -- UserID  PK Name Username Password AccountID   FK UserType The Users table will be used for logins to the system.  In the Users table will

Re: why can't they log in?

2004-10-11 Thread Ray Champagne
100% correct. Ray At 03:48 PM 10/11/2004, you wrote: >Are you saying you can log into the application from your PC using their >username and password, but the user cant log in from their location? > >Thanks, >CC > > > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [Use

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Sean Corfield
On Mon, 11 Oct 2004 16:51:53 +0100, Craig Dudley <[EMAIL PROTECTED]> wrote: > What do people you to test their CF Applications/Sites? > > Any advice on what to avoid/try? We use Microsoft WAST (free) for simple stuff and Segue SilkPerformer ($$$) for heavy duty testing. -- Sean A Corfield -- htt

Re: why can't they log in?

2004-10-11 Thread Casey C Cook
Are you saying you can log into the application from your PC using their username and password, but the user cant log in from their location? Thanks, CC [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: CF / PHP Forum ?

2004-10-11 Thread Ketan Patel
Check this out. http://www.adersoftware.com/index.cfm?page=cfbb The Forums here is free and seems to be good only problem is you have to stick with MSSQL2000 for DB. Ketan Patel   _   From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 1:00 PM To: CF-Talk Subj

Re: ebags

2004-10-11 Thread Won Lee
At 15:13 10/11/2004 -0400, Won Lee wrote: >I know ebags.com is written in CF but I'm having major problems with their >site and their customer support people.  First of all the website didn't >calculate my shipping correctly.  I noticed this and called them about it >without submitting my order.

ebags

2004-10-11 Thread Won Lee
I know ebags.com is written in CF but I'm having major problems with their site and their customer support people.  First of all the website didn't calculate my shipping correctly.  I noticed this and called them about it without submitting my order.  I was told to submit my order and that the

Re: why can't they log in?

2004-10-11 Thread Ben Doom
We've had similar problems with software firewalls (specifically Norton) and proxy servers. HTH. --Ben Ray Champagne wrote: > I have inherited a rather simple application that has a section where > listees of an online directory can add/edit/delete their account info once > logging in to the

why can't they log in?

2004-10-11 Thread Ray Champagne
I have inherited a rather simple application that has a section where listees of an online directory can add/edit/delete their account info once logging in to the system. I am having a very small percentage of the users telling me that they are having troubles logging in.  The system does not a

Re: Sports

2004-10-11 Thread Michael Dinowitz
Please move this to CF-Community as it's off topic for CF-Talk. Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Adam Churvis
Our load testing lab uses e-TEST Suite 7.0 from Empirix, plus a few other tools for generating production scale data, analyzing database internals under load, etc. We provide this as a service, if you're interested. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Spike
I've used OpenSTA in the past with pretty good results. If you want to do some really heavy duty testing and can afford the licenses there are a couple that I'm aware of. When I used to teach the ColdFusion Performance Tuning class a few years back we used Segue SilkPerformer. It was one of the

Java 1.5

2004-10-11 Thread Michael Dinowitz
Ayone using Java 1.5 with CF. Any speed increase noted? Problems? Comments? Is it something that should be upgraded to? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

CFHTTP 408 Request Time-Out

2004-10-11 Thread Umer Farooq
Hi,    For some reason... out of the blue.. CFHTTP would start giving out 408 Request Time-Outs to A https URL... I have tested the URL with wget it works fine.. and telnet to the port 443... can connect from diffrent MX6.1 servers... and I can connect to other SSL URLs fine from the same server..

Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Douglas Knudsen
pu it in produciton and see what happens!  :)  I've used the M$ webstress tool also. Craig, you asking about stress testing or unit type testing? Doug On Mon, 11 Oct 2004 13:06:20 -0400, Russ <[EMAIL PROTECTED]> wrote: > We've been using MS Web Application Stress Tool >   > > http://www.microso

Re: Sports

2004-10-11 Thread Ray Champagne
Baseball.  Baseball is a big sport in Boston and New York, we are *ahem* heated rivals If you're not part of it right now, you probably won't get it.  Much like heroin, baseball payoffs between the Red Sox and Yankees should be avoided by non-fans, as it will suck you in and destroy your li

Re: IS this an MX issue??? Form Validation...

2004-10-11 Thread Douglas Knudsen
yeah, I usually take the path of not using cfform.  I find it fairly limited anyhoo. Jeff, you can look at teh onsubmit and passthrough attributes of cfform to add some of your on code.  IIRC, what you put in onsubmit is 'attached' after the CFFORM onsubmit function fires. DK On Mon, 11 Oct 2004

Re: Access to and / listings

2004-10-11 Thread Anders Green
At 11:42 AM 10/11/2004, you wrote: >Does anyone know of a way...to list the scheduled tasks that CF has H, I was just wondering that myself yesterday, but hadn't looked into it yet. Anyone? Anders +===+ |Anders Green Emai

OT: Server performance article

2004-10-11 Thread Damien McKenna
Here's a really good article for those of you debating server upgrades: http://www.samag.com/documents/s=9408/sam0411b/0411b.htm -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 "Nothing endures but change." - Heraclitus [T

RE: currentrow is undefined?

2004-10-11 Thread Katz, Dov B (IT)
Also, your code might be more elegant (just my personal opinion) if you relegate colors to css classes, and keep your server-side processing to a minimum.
    tr.row0{
text-color:black;
background-color:white;
    }


    tr.row1{
text-

RE: currentrow is undefined?

2004-10-11 Thread Cornillon, Matthieu (Consultant)
Phillip, In the CFQUERY tag, you define the name of the query as "display".  So the later CFIF statement should read CFIF Display.CurrentRow... instead.  When you took out the "error_table" part, CF looked through the available variable scopes and found the data somewhere, but it may have been l

Re: IS this an MX issue??? Form Validation...

2004-10-11 Thread Scott Brady
On Mon, 11 Oct 2004 13:05:37 -0400, Jeff Waris  wrote: >  How do other people do form validation when they want to check form fields >  manually and also use CFform validation as well? Both use the onsubmit() >  _javascript_ function... >   Simple. I don't use CFForm.  I stopped trying to use it (

RE: currentrow is undefined?

2004-10-11 Thread Katz, Dov B (IT)
currentrow is local to the query, so all you need is mod 2 is 1 >   _   From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 1:24 PM To: CF-Talk Subject: currentrow is undefined? Thanks for the info from my last question. Now here is my next issue. I am calling f

currentrow is undefined?

2004-10-11 Thread Phillip Perry
Thanks for the info from my last question. Now here is my next issue. I am calling for information from 2 tables. I want to find out which row is even and which is odd from one of them. I'm using. MOD 2 IS 1>  but this throws an error saying that currentrow is undefined. Yet if I take out the erro

RE: grouping by...

2004-10-11 Thread Cornillon, Matthieu (Consultant)
If you want to do this in SQL, you can use the DECODE function.  Let's say you have a table called TASKS, and you want to prioritize TASK_Name by TASK_Priority, High to Low: SELECT TASK_Name, DECODE(TASK_Priority,'High',1,'Normal',2,'Low',3) AS PriorityOrder FROM TASKS ORDER BY PriorityOrder

RE: Slightly OT, load testing CF Applications.

2004-10-11 Thread Russ
We've been using MS Web Application Stress Tool http://www.microsoft.com/technet/archive/itsolutions/intranet/downloads/webs tres.mspx It's pretty simple to use, but I haven't really been impressed with the features. I, too, would like to see what else people are using out there. Russ   _ 

Re: Sports

2004-10-11 Thread Les Mizzell
> We have another fall classic.  The valiant and pure of heart Yankees defend > everything against the monstrous RedSox who allegedly commit such heinous > crimes like ripping the tags off beds before purchase. Is this basketball or soccer? I don't know too much about sports teams And what

RE: IS this an MX issue??? Form Validation...

2004-10-11 Thread Jeff Waris
Must have stumped everyone today...  Anyone with any clues??? I've spent most of the morning looking through macromedia and and the talk archives with really no luck... How do other people do form validation when they want to check form fields manually and also use CFform validation as well? Bot

RE: grouping by...

2004-10-11 Thread Gaulin, Mark
You can also use a CASE _expression_ like this: select ... from .. where .. order by case when priority = 'high' then 1 when priority = 'med' then 2 when priority = 'low' then 3 end The explicit priority table is a good idea too, and if you use it "fully", will probably make the whole app cle

Re: CF / PHP Forum ?

2004-10-11 Thread Rick Root
Jordan Michaels wrote: > > Has cfmbb.org been mentioned yet? Haven't used it personally though. > > http://www.cfmbb.org/ Thanks for the mention... I haven't quite released the source yet but it'll happen soon... The forum on the DRK is called Galleon.  It requires SQL Server.  And you must p

Re: Sports

2004-10-11 Thread Ray Champagne
I was going to comment on this one sometime today myself. Except my version includes the WORLD CHAMPION Patriots and the superbly awesome record-breaking performance that was witnessed yesterday, making them the only team in NFL history to win 19 in a row. As far as the Sox/Yankees, man I have

RE: grouping by...

2004-10-11 Thread John Stanley
something like this work for you? select case when importance = 'high' then 1   when  importance = 'normal' then 2 when importance = 'low' then 3   end as importance_order from  importance_table order by importance_order -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTE

Re: grouping by...

2004-10-11 Thread Greg Morphis
assign another field to the importance table, maybe called priorityID priorityIDPriority 0   Low 1   Normal 2   High Then order by priorityID desc On Mon, 11 Oct 2004 12:30:37 -0400, Phillip Perry <[EMAIL PROTECTED]> wrote: > Hi, > > I w

Sports

2004-10-11 Thread Won Lee
What a great time for sports in NY. We have another fall classic.  The valiant and pure of heart Yankees defend everything that is good about baseball against the monstrous RedSox who allegedly commit such heinous crimes like ripping the tags off beds before purchase.  Boo! The Jets are playin

RE: CFMX application security issue

2004-10-11 Thread Dave Watts
> > OK, I just got our intranet migrated to MX on our development server > > using the CFLOGIN for user security. However, my managers find it > > unacceptable that users have to login again if they close the browser > > window. Does anyone have any suggestions for work arounds? > > Using cookies i

RE: CFMX application security issue

2004-10-11 Thread Steve Brownlee
Using cookies is the best way around this.  As soon as a user logs in, store their authentication information to a cookie and then on the login page, write code to read your cookie and auto-log them in if it exists. From: Rebecca Wells [mailto:[EMAIL PROTECTED] S

grouping by...

2004-10-11 Thread Phillip Perry
Hi, I want to arrange my data that is being displayed by the database field "importance". I want High to be shown first, then Normal, then Low (which are the 3 choices in the importance table"). How can i get Normal items to show up before Low items? [Todays Threads] [This Message] [Subscript

CFMX application security issue

2004-10-11 Thread Rebecca Wells
OK, I just got our intranet migrated to MX on our development server using the CFLOGIN for user security. However, my managers find it unacceptable that users have to login again if they close the browser window. Does anyone have any suggestions for work arounds? This message has been scanned by t

RE: query of query question

2004-10-11 Thread Steve Brownlee
Is vehicleid field an integer or a varchar?  If it's integer, you don't need the single quotes. WHERE vehicleid in (165,564) From: John mccosker [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 11:35 AM To: CF-Talk Subject: Re: query of query question

RE: Verity Problem

2004-10-11 Thread Robertson-Ravo, Neil (RX)
Apoliogies this was an internal problem mailed to me...here it is again.. "I have an English collection (custom from db) which contains French words (eg. sécurité, président).  When searching the collection no results are returned even though the word exists. Any work arounds? I also have the same

Re: CFCONTENT and PDFs (Re: CFCONTENT and GetPageContext())

2004-10-11 Thread Adrian Moreno
>You should be able to specify a different name within your CFCONTENT tag: > >http://www.figleaf.com/demo/mimetest/ > >Dave Watts, CTO, Fig Leaf Software Dave, I had been using and have changed it to . Now everything loads correctly in MSIE. Thanks very much. Adrian J. Moreno -

Verity Problem

2004-10-11 Thread Robertson-Ravo, Neil (RX)
So this is the problem ... I have an English collection (custom from db) which contains French words (eg. sécurité, président).  When searching the collection no results are returned even though the word exists. Any work arounds? I also have the same problem with German words with special charact

Re: SQL stored procedure question

2004-10-11 Thread Don
Interesting arguments on "parametric query" and stored procedure's use with CF.  Imho, the facts of the app itself, the developer's "comfortness" with tools at hand and the environment would be taken into consideration as well. I'll address the "specific" of the second query here, two points here:

Slightly OT, load testing CF Applications.

2004-10-11 Thread Craig Dudley
What do people you to test their CF Applications/Sites? Any advice on what to avoid/try? Thanks Craig Dudley Senior Developer Netstep Corporate Communications Ltd Direct Line: +44(0) 1422 319712 Phone: +44(0) 1422 200308 Fax: +44(0) 1422 200306 e-mail: [EMAIL PROTECTED] MS Messenger: [EMAIL PROT

Re: CF / PHP Forum ?

2004-10-11 Thread Jordan Michaels
Qasim Rasheed wrote: > if you have access to DRK, I remember there was a forum application in > some of it previous versions. > > On Mon, 11 Oct 2004 09:31:51 -0400, Daniel Farmer > <[EMAIL PROTECTED]> wrote: > > Looking to implement a public discussion forum... preferably free or low > > cost so

Access to and / listings

2004-10-11 Thread Burns, John D
Does anyone know of a way via the CF service factory or some other way to be able to list the scheduled tasks that CF has and the collections and indexes that have been created?  We're trying to lock down developer access to the CF Administrator and we've already created a tool using the service fa

RE: Array Question

2004-10-11 Thread Dave Watts
> If I just try to do the ArrayDeleteAt(Session.UserCart, 3) > within an ArrayLength of 4 I get the following message: > > The element at Position 1, of Dimension 2, of an array object > used as part of an _expression_, cannot be found. > > Before I tried to delete one of the items from the car

Re: query of query question

2004-10-11 Thread John mccosker
damn, I posted before I could get the rest in, I get this error, Error Executing Database Query.   Query Of Queries runtime error. Unsupported type comparison. Is this possible, or is there a work around, for example does hal helms query sim tag support this. [Todays Threads] [This Message]

Re: CF / PHP Forum ?

2004-10-11 Thread Qasim Rasheed
if you have access to DRK, I remember there was a forum application in some of it previous versions. On Mon, 11 Oct 2004 09:31:51 -0400, Daniel Farmer <[EMAIL PROTECTED]> wrote: > Looking to implement a public discussion forum... preferably free or low > cost solution to plug into a client's site.

RE: How to suppress the Header and Footer info when printing from a browser

2004-10-11 Thread Burns, John D
Nope, you got me. :-)  I am kinda stuck with the Microsoft solution due to my company using it.  I'll try to put a complaint in with Microsoft. John -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 10:41 AM To: CF-Talk Subject: Re: How

query of query question

2004-10-11 Thread John mccosker
Hi, I have a qoq like so, procedure="LEO4_ADMIN_DISTINCT_DAILY" datasource="#request.matrixDSN#" username="#request.matrix#" password="#request.neo#">    SELECT vehicleid    FROM q_distinctData    WHERE vehicleid in ('165','564') [Todays Threads] [This Message]

Re: Array Question

2004-10-11 Thread Graham Pearson
If I just try to do the ArrayDeleteAt(Session.UserCart, 3) within an ArrayLength of 4 I get the following message: The element at Position 1, of Dimension 2, of an array object used as part of an _expression_, cannot be found. Before I tried to delete one of the items from the cart, I had the

Re: How to suppress the Header and Footer info when printing from a browser

2004-10-11 Thread Jochem van Dieten
Burns, John D wrote: > > Ok, I understand.  Sorry about that.  I'll call my buddy Bill Gates this > afternoon and tell him to fix it :-) Please do. Microsoft may not fix bugs in their products because it is the right thing to do, but it is rumoured they do listen if enough customers complain.

IS this an MX issue???

2004-10-11 Thread Jeff Waris
I just started having this problem, and I am not sure why. Normally we do a onsubmit() for manually checking some form variables. This has always worked nicely along with cfform checking. Now it seems that my manual onsubmit is REPLACED with the CF generated onsubmit. Is there some new way to do th

RE: CF / PHP Forum ?

2004-10-11 Thread Graham Pearson
I have written one which is located at http://forums.niesc.k12.in.us/index.cfm I am always up for suggestions on how to make it better. At the present time, It is powered by MySQL. At 08:46 AM 10/11/2004, you wrote: >We've used PHPBB and YabbSE (now SMF).  All are PHP based.  I'd like to >find a

RE: How to suppress the Header and Footer info when printing from a browser

2004-10-11 Thread Burns, John D
Jochem, Ok, I understand.  Sorry about that.  I'll call my buddy Bill Gates this afternoon and tell him to fix it :-)  I wish it was that easy.  Sorry if it's causing problems for people.  I know that this is contrary to the RFC, but it surprises me that Gmail wouldn't handle the thread-id automat

Re: How to suppress the Header and Footer info when printing from a browser

2004-10-11 Thread Jochem van Dieten
Burns, John D wrote: > What'd I do wrong?  I'm just using Outlook 2003.  Is there something > non-RFC compliant about it? You are not sending a References or In-Reply-To header as defined in RFC 2822 section 3.6.4. And just to make my position on SHOULD vs. MUST clear before debate starts: MS

Re: Array Question

2004-10-11 Thread Deanna Schneider
I think you're trying to make it too hard. CF automatically "closes up" arrays if you delete. So, all you need to do is - Original Message - From: "Graham Pearson" > > I have been trying to learn array's and have a problem that I am unable to > solve. > > I have a 2 Dimension Array that

  1   2   >