Newsgroup

2002-11-14 Thread Hugo Ahlenius
Dear all (especially the admin crew) I might have missed something, but is CF-talk mirrored on a nntp-server? If not, would it be possible to consider that? I am only reading a few mails here and there from the daily (actually mostly nightly) crop, and I get the feeling that a newsgroup would

Re: Newsgroup

2002-11-14 Thread Michael Dinowitz
fuseware.com has the NNTP mirror. You will still need to be subscribed to the lists in digest mode in order to post to them, but you can read everything from there with no problems. In addition, there are full archives of all the lists at www.houseoffusion.com/cf_lists. These archives are updated

RE: Query Column as an Array

2002-11-14 Thread Philip Arnold - ASP
Well - it's a little short - but not as short as it could be. You can do a ValueList() to turn any column into a List then use ListToArray() to get the array. It's not pretty, but it's only two functions and it works. ;^) Watch out for delimiters on this, if you use commas, then it'll make

Re: Creating datasources and mapipngs outside of CFADMIN

2002-11-14 Thread Jochem van Dieten
Rick Root wrote: I'm running CF 5 on Linux I'd like to be able to create mappings and new DSN's outside of the cold Fusion administrator, from a command line script... perl, bash, whatever. Create a template that uses cfregistry to enter the right settings in the registry (which is a

Re: Flash Com and CFUG meeting

2002-11-14 Thread Jochem van Dieten
samcfug wrote: I also watched As more people logged in - the worse it got - giving me the impression that it was a bandwidth issue. How many people logged in (I haven't quite figured out how to log everything on the server)? After all, the server is in the Netherlands, the meeting was in

Re: Flash Com and CFUG meeting

2002-11-14 Thread Dick Applebaum
Whenever I looked, there were 10-20 people. This was less than at DevCon's busiest. Also, at DevCon, there were 2, often 3, AV windows running -- only briefly 2 at NYCFUG. Also, I thought Michael said that he was using a modem 48k HTH Dick On Thursday, November 14, 2002, at 03:44 AM,

Error Handler not working

2002-11-14 Thread Rick Root
So, I've got this really strange issue on one of the CF servers I work on.. it's Windows 2k running CF 4.51 SP2 And anytime there is a template compilation error, such as a missing CFIF, or a missing #, etc... I get this completely generic error:

Re: Flash Com and CFUG meeting

2002-11-14 Thread samcfug
At the beginning of the meeting, when Michael was in front of the camera (waving his arms wildly) There were only 5 logged in, and the Audio and video was crystal clear. As the meeting progressed into Tobe's presentation, more and more came online, and while this may be coincidental, as more

Intermittent 500 Internal Server Error

2002-11-14 Thread Seth Petry-Johnson
I just removed and re-installed IIS and CFMX on a Win2k Professional development box. Everything seems to work fine, EXCEPT that certain files will intermittently throw up the HTTP 500 Internal Server Error message when I access them through the browser. I have a file called _actions_cart.cfm

CFX tags

2002-11-14 Thread Mark Leder
Hi All, Can CFX tags installed on one CFServer be called from a second server / site which doesn't have the tags installed on its CFServer? Thanks, Mark ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: CFX tags

2002-11-14 Thread Stephen Moretti
Hi All, Can CFX tags installed on one CFServer be called from a second server / site which doesn't have the tags installed on its CFServer? No. Well Not unless you start messing about with writing CFC wrappers for the CFX tag to handle the data passed in and passing back the results ,

RE: CFX tags

2002-11-14 Thread Jason Lees (National Express)
Mark, To the best of my knowledge you need to define the CFX tag on the local server, and have a local copy or a mapped drive to the location of the CFX tags on the other server. Jason Lees Systems Developer National Express Coaches Ltd. -Original Message- From: Mark Leder

True is False

2002-11-14 Thread Jeffry Houser
I must be missing something really obvious. This is the code ( In the application.cfm ): cfset variables.LoadNewSession = false cfoutputLoad New Session: #variables.LoadNewSession#/cfoutputbr cfset variables.LoadNewSesssion = true cfoutputLoad New Session: #variables.LoadNewSession#/cfoutputbr

RE: True is False

2002-11-14 Thread John Lucas
There's sss in the second cfset. Maybe? -Original Message- From: Jeffry Houser [mailto:jeff;farcryfly.com] Sent: Thursday, November 14, 2002 8:19 AM To: CF-Talk Subject: True is False I must be missing something really obvious. This is the code ( In the application.cfm ): cfset

RE: True is False

2002-11-14 Thread Mike Townend
cfset variables.LoadNewSesssion = true This has got 3 s's instead of 2... HTH -Original Message- From: Jeffry Houser [mailto:jeff;farcryfly.com] Sent: Thursday, November 14, 2002 14:19 To: CF-Talk Subject: True is False I must be missing something really obvious. This is the code

RE: True is False

2002-11-14 Thread A.Little
You've got an extra 's' in LoadNewSession on the 3rd line of code. Alex -Original Message- From: Jeffry Houser [mailto:jeff;farcryfly.com] Sent: 14 November 2002 14:19 To: CF-Talk Subject: True is False I must be missing something really obvious. This is the code ( In the

RE: True is False

2002-11-14 Thread Raymond Camden
Typo. Your second cfset has mispelled session as sesssion. Notice the 3 s chars? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My

Re: True is False

2002-11-14 Thread Rick Root
John Lucas wrote: There's sss in the second cfset. Maybe? Oh the glory of typos! Sometimes, when I'm programming in CF, I wish there was something like use strict; in Perl that warns about variables that are defined but never referenced. - Rick

RE: True is False

2002-11-14 Thread Robertson-Ravo, Neil (REC)
its cause you have the work 'Session' in the variable name. -Original Message- From: John Lucas [mailto:cftalk;fastestisp.com] Sent: 14 November 2002 14:25 To: CF-Talk Subject: RE: True is False There's sss in the second cfset. Maybe? -Original Message- From: Jeffry Houser

RE: True is False

2002-11-14 Thread Robertson-Ravo, Neil (REC)
oh yeah!, forget that! I just copied and pasted...didnt even notice the 3 ss's uurgh...home time. -Original Message- From: Mike Townend [mailto:mike;cfnews.co.uk] Sent: 14 November 2002 14:24 To: CF-Talk Subject: RE: True is False cfset variables.LoadNewSesssion = true This has got

RE: True is False

2002-11-14 Thread Jeffry Houser
Excuse me while I pound my head on the desk. Thanks everyone. At 09:26 AM 11/14/2002 -0500, you wrote: Typo. Your second cfset has mispelled session as sesssion. Notice the 3 s chars? === Raymond Camden, ColdFusion Jedi

RE: True is False

2002-11-14 Thread Adam Reynolds
I think we need to see: DOH! -Original Message- From: A.Little [mailto:A.Little;open.ac.uk] Sent: 14 November 2002 14:26 To: CF-Talk Subject: RE: True is False You've got an extra 's' in LoadNewSession on the 3rd line of code. Alex -Original Message- From: Jeffry

Re: True is False

2002-11-14 Thread Stephen Moretti
I'll not repeat what everyone has already told you, but just mention that you don't need quotes on True and False. ;o) (Unless its changed in CFMX) Regards Stephen - Original Message - From: Jeffry Houser [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 14, 2002

Re: True is False

2002-11-14 Thread Jeffry Houser
;) I originally didn't have quotes. That got changed trying to make it work. But, thank you! The amount of time I spent on this is embarrassing, but we all have our off days. At 02:41 PM 11/14/2002 +, you wrote: I'll not repeat what everyone has already told you, but just mention

OT: IE 6 SP1 woes . . .

2002-11-14 Thread David Hannum
Sorry for the OT, but I've not found help anywhere on this: When I started up my computer yesterday, and I opened up my IE 6 SP1 on Win2K Pro, I noticed something strange. When I open the browser up and maximize the window, the top is about a half inch below the top of my desktop, and the

RE: True is False

2002-11-14 Thread Jim Campbell
Heh, I've always found that I can write complex application components fairly well, but it seems to always be that single typo or two that takes another person .00023 seconds to find that always trips me up in the end. You can never discount the value of a second (or third) pair of eyes... well,

Dynamic Arrays

2002-11-14 Thread Mark Kecko
Can anybody tell me why this set to a dyanamically named array won't work, is there a workaround? I've tried ArraySet with the same results. IsArray and ArrayLen recognize it, but I can not Append or Insert items. Any suggestions would be grand, thanks. cfset tentativeId = 123 cfloop

RE: Dynamic Arrays

2002-11-14 Thread Raymond Camden
Why not simply use bracket notation? cfset request[arrayOfIds_#theIndex#] = arraynew(1) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM :

RE: Dynamic Arrays

2002-11-14 Thread Mark Kecko
Creating the array isn't the problem, adding items to it is. Am I misunderstanding your advice. I changed my line that sets up the array to bracket notation, still can't add to it. _mark -Original Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: Thursday, November

Re: Dynamic Arrays

2002-11-14 Thread Stephen Moretti
Why not simply use bracket notation? cfset request[arrayOfIds_#theIndex#] = arraynew(1) Heh heh... I've started so I'll finish. Your code works fine like this cfset tentativeId = 123 cfloop list=a,b,c index=theIndex cfoutput cfset Request[arrayOfIds_theIndex] = ArrayNew(1)

RE: Dynamic Arrays

2002-11-14 Thread Raymond Camden
You mean you can't do: cfset request[arrayOfIds_#theIndex#][1] = foo ? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is

HELP! Preferences page

2002-11-14 Thread FlashGuy
Hi, I have a preferences page that lists directories with check boxes. This is displaying by querying my database. It looks something like this: Preferences: (Click to omit directories from listing) [ ] dir1 [ ] dir2 [ ] dir3 [ ] dir4 [ ] dir5 [ UPDATE ] Preferences: (Click to add

RE: True is False

2002-11-14 Thread warpmedia
Greets, I'm new here =) Xtra eyes help (we've all been there), but good keyword/syntax highlight from your editor can't hurt! One of the best features I like about UltraEdit32. At 09:58 AM 11/14/2002, Jim Campbell wrote: Heh, I've always found that I can write complex application

RE: IE 6 SP1 woes . . .

2002-11-14 Thread Mark Leder
Hi Dave, You might want to roll back a Hot Fix or two. I found compatibility problems with WS-FTP 7.61 and a Win 2K The hot fix I removed was Q329834, and WS-FTP no longer triggered BSOD's. The one previous to that was Q327696: Internet Information Services Security Roll-up Package HTH Thanks,

RE: Dynamic Arrays

2002-11-14 Thread Mark Kecko
Raymond, Stephen, I can't thank you enough!! _mark -Original Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: Thursday, November 14, 2002 10:13 AM To: CF-Talk Subject: RE: Dynamic Arrays You mean you can't do: cfset request[arrayOfIds_#theIndex#][1] = foo ?

cfmx/cfquery/writing csv files

2002-11-14 Thread Tony Weeg
hi list. I have a question about writing csv files, record sets and which way would be the best to handle something like this A user makes a request for approximately 200 lines from an 11 million record database. that request is then written to a csv file, and emailed to the client. I am

Re: Mass email marketing

2002-11-14 Thread warpmedia
UBE = Unsolicited Bulk Email AKA SPAM. No, because smart people rightly don't trust them to remove and in fact consider them honey pots for collecting/validating emails to be used for other mass mailings. No honor among thieves! End users call me all the time about Does this sound legit for

RE: Newsgroup

2002-11-14 Thread Cantrell, Adam
Hugo, I may be wrong, but I don't think cf-talk is mirrored on an nntp group. I do know that it's mirrored in the archives at houseoffusion.com. I think you can also post to the list from the archives as well, although I haven't used it yet. You also used to be able to view it at fusetalk.com

Re: Mass email marketing

2002-11-14 Thread warpmedia
When you get 50+ a day, it get's a bit old weeding through good mail and deleting the bad. At 12:53 PM 11/13/2002, William Wheatley wrote: like is said the anti spam fanatics ;) who blow off more hot steam complaining then it takes to hit delete lol Joshua MacCraw [EMAIL PROTECTED]

Re: HELP! Preferences page

2002-11-14 Thread John Morgan
Assuming that your query is returning a boolean field that indicates the include state, you could order on this field and use the GROUP option of the CFOUTPUT tag and some conditional logic to control formatting the output. Pseudo-example Code: cfoutput query=myquery cfif

RE: Mass email marketing

2002-11-14 Thread Turetsky, Seth
it gets even older, when someone starts up a thread that ended yesterday and even after Michael said not to post on this anymore. did people stop reading full threads before posting? please sort by subject before you reply to something. same goes for the newsgroup thread. sorry, had to say

CFMX / CFMAIL multipart messages

2002-11-14 Thread Brook Davies
Has any one been able to get CFMAIL to send mult-part messages with CFMX? MY script was working fine prior to mx, but no more. I've tried the following code and neither version works. I end up a jumbled mess in my email box with the second script and the mime boundary, text and html message

RE: Need to reset the page if someone clicks back

2002-11-14 Thread Adrocknaphobia Jones
Troy, It works for me. I've tested Mac-PC, Mozilla, IE5 and NS6. If the onLoad function isn't being called, just drop it on the page without a function. script language=javascript document.yourFormName.reset(); /script Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg

Re: HELP! Preferences page

2002-11-14 Thread FlashGuy
Maybe I should explain it differently. When I query my database... action.cfm cfquery name=ListElement datasource=profiles dbtype=ODBC SELECT * FROMprofiles WHERE strUsername = '#auth#' /cfquery I then display, with check boxes the results

RE: Flash Com and CFUG meeting

2002-11-14 Thread Mike Chambers
i suggest that you post your issues to the flashcomm list here: http://chattyfig.figleaf.com it is pretty active and someone should be able to help you... mike chambers [EMAIL PROTECTED] -Original Message- From: samcfug [mailto:doug;samcfug.org] Sent: Thursday, November 14, 2002

cfhttp does it make a HTTP request different than web browser?

2002-11-14 Thread David Adams
I am using CFHTTP to request a page on a web server behind a proxy server and it is resulting in a CONNECTION FAILURE. This seems odd because if I configure the web browser with the proxy IP address and Port, the web browser will successfully connect to the target page. But if I apply these

RE: Mass email marketing

2002-11-14 Thread warpmedia
Well excuse the hell out me no I don't always read every thread to it's end before reacting to an individual statement/argument. At 11:13 AM 11/14/2002, Trotsky, Seth wrote: it gets even older, when someone starts up a thread that ended yesterday and even after Michael said not to post on

OT: SQL vs PL/SQL

2002-11-14 Thread Casey C Cook
If someone came to you and said we need someone to work with Oracle and PL/SQL to write some queries, but all you knew was SQL, how much of PL/SQL would you say you already knew, knowing there are some syntax differences between the two query writing languages? Im just trying to gauge how much

RE: SQL vs PL/SQL

2002-11-14 Thread Andy Ewings
Do not underestimate it! - I've been using T-SQL for 5 years and know it pretty well. Got a job which was an oracle back end and tried to build the equivalent in Oracle and had a nightmare - however if you are just using SQL code in your CF using CFQueries then there wouldn't be much prob and you

RE: cfhttp does it make a HTTP request different than web brows er?

2002-11-14 Thread Lofback, Chris
One difference might be the UserAgent parameter in CFHTTP. As I understand it, that value is passed as an HTTP request header that indicates the browser type that is making the request. Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com

Re: OT: SQL vs PL/SQL

2002-11-14 Thread Jochem van Dieten
Casey C Cook wrote: If someone came to you and said we need someone to work with Oracle and PL/SQL to write some queries, but all you knew was SQL, how much of PL/SQL would you say you already knew, knowing there are some syntax differences between the two query writing languages? Im just

RE: SQL vs PL/SQL

2002-11-14 Thread Lincoln Milner
If it is SQL in ColdFusion, don't worry. An understanding of SELECT, INSERT, UPDATE, etc. will serve you well. If you have to program a complex report mining data out of Oracle and published via the PL/SQL web toolkit over the WWW, may Fate smile upon you. Your best bet is to search for

Authors/Reviewers needed for glasshaus CF MX case study

2002-11-14 Thread Chris Mills
Hello there, My name is Chris Mills, and I'm a Commissioning Editor here at glasshaus (see http://www.glasshaus.com http://www.glasshaus.com for more details.) I'm currently developing a book on Dreamweaver MX, and one of the chapters I'm going to include is to be a case study on developing a

RE: cfmx/cfquery/writing csv files

2002-11-14 Thread Douglas.Knudsen
From my experience, this is not CF that is really the issue, it is your DB. We have a huge table like yours that we create csv files on the fly and dump them to the client via CFCONTENT/CFHEADER so Excel opens on the client machine. The SQL is what causes our timeout issues. Some suggestions:

Requery of a query in CF 4.5?

2002-11-14 Thread Shawn Regan
Hello, Can you requery a query in Cf 4.5? I can't seem to find anything in the Docs about it. Any help would be great :) TIA Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m

Re: Requery of a query in CF 4.5?

2002-11-14 Thread Stephen Moretti
Query of Queries is in CF5 What are you actually trying to do? If the information is in one datasource, then you will be able to sort this out with a single SQL query. Regards Stephen - Original Message - From: Shawn Regan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: Requery of a query in CF 4.5?

2002-11-14 Thread Critter
oi Shawn!! nope. 5.0 above.. -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog = http://blog.ctzc.com; Thursday, November 14, 2002, 12:09:08 PM, you wrote: SR Hello, SR Can you

RE: SQL vs PL/SQL

2002-11-14 Thread Jim Campbell
Also, there's a gigantic heavy book that not only impresses people walking past your cubicle (and has its own gravitational field) but also is one of the most indespensable books in my programming reference library. Oracle 8i: The Complete Reference by Loney and Koch

Linux CFMX - performance issues jvm question

2002-11-14 Thread RBickham
We've got redhat 7.2 installed on Apache 1.3.22 and have having some performance issues with Cold Fusion MX (as soon and we get more than 3-4 users, everything tanks it. - 30 page render times) . Is anyone else having some of the same issues? Looking at the boxes, we have about 70 threads opened

RE: Linux CFMX - performance issues jvm question

2002-11-14 Thread Stacy Young
I think there's issues with the CFMX apache connector on 1.3.x , can u try Apache 2? Stace -Original Message- From: [EMAIL PROTECTED] [mailto:RBickham;simplot.com] Sent: Thursday, November 14, 2002 1:03 PM To: CF-Talk Subject: Linux CFMX - performance issues jvm question We've got

RE: SQL vs PL/SQL

2002-11-14 Thread Lofback, Chris
Here's a small tip. I moved to PL/SQL from plain vanilla SQL (basically using MS Access) and I quickly found there are two critical PL/SQL functions that you must know: NVL() and DECODE() Make sure you learn 'em and use 'em. Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste.

OT: Seattle CF developer wanted

2002-11-14 Thread Ian Lurie
I posted this to CF-Jobs but that list is pretty quiet, so here it is again: We're looking for a ColdFusion 5.0 developer with reasonable MSSQL 2000 experience (you need to know what a stored proc is!). Position is a one-month, full-time contract starting asap. We're located in Seattle, WA near

CFCHART looooong loads on Mac IE

2002-11-14 Thread Joshua Miller
Has anyone else seen this behavior? I've got a page with a pie chart being built using CFGRAPH. On Windows XP and 2000 IE 5-6 it loads fine, no performance issues, etc. On Mac OS 8.6 and OS X 10.2 Internet Explorer 5.2 the graphs take forever to load and sometimes crash IE altogether. One in

RE: IE 6 SP1 woes . . .

2002-11-14 Thread Joshua Miller
Have you tired dragging your Windows START bar around a little ... Try moving it to the top and then maximize and then move it back wherever you like it. Maybe it's just a glitch. Joshua Miller [EMAIL PROTECTED] -Original Message- From: Mark Leder [mailto:mel;markleder.com] Sent:

RE: Requery of a query in CF 4.5?

2002-11-14 Thread Shawn Regan
I have a query that I run which is dumping out in a grouped query. But I have one group that I need to only display the most recent recordset, but the other two groups need to display all recordsets. SO I cannot apply my logic in the SQL because it would affect all three groups. Shawn Regan

Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Phil Costa
Hello. I'd like to ask a favor of the people on this list. To help us plan future releases of Macromedia ColdFusion, we'd like you to answer a few questions about your projects, organization, and your use of ColdFusion. Follow the link below and you can help shape the future of ColdFusion.

RE: Requery of a query in CF 4.5?

2002-11-14 Thread Shawn Regan
I guess I could dump the recordset into a structure and then pull out only the lastest recordset that way. Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m -Original Message- From: Stephen Moretti

Re: Requery of a query in CF 4.5?

2002-11-14 Thread Rick Root
Shawn Regan wrote: I have a query that I run which is dumping out in a grouped query. But I have one group that I need to only display the most recent recordset, but the other two groups need to display all recordsets. SO I cannot apply my logic in the SQL because it would affect all three

RE: [CFGRAPH - Oops] CFCHART looooong loads on Mac IE

2002-11-14 Thread Joshua Miller
Sorry, CFGRAPH that is ... Joshua Miller [EMAIL PROTECTED] -Original Message- From: Joshua Miller [mailto:josh;joshuasmiller.com] Sent: Thursday, November 14, 2002 1:35 PM To: CF-Talk Subject: CFCHART long loads on Mac IE Has anyone else seen this behavior? I've got a page with

RE: Linux CFMX - performance issues jvm question

2002-11-14 Thread Christine Lawson
We just published this technote about CFMX Linux, take a look: http://www.macromedia.com/v1/Handlers/index.cfm?ID=23524Method=Full Christine -Original Message- From: Stacy Young [mailto:Stacy.Young;sfcommerce.com] Sent: Thursday, November 14, 2002 1:09 PM To: CF-Talk Subject: RE:

RE: Requery of a query in CF 4.5?

2002-11-14 Thread Shawn Regan
Yes, thanks I did one more group output and used maxrows and it worked fine. Thanks Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent:

UNC path or Web Service w 2 CFC's

2002-11-14 Thread Brook Davies
Which would be better to use with a CFC located on the same network? a) A mapped UNC path in the CFAdministrator, Called as a component or b) Called as a webservice. ~| Archives:

RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Jim Davis
Hello. I'd like to ask a favor of the people on this list. To help us plan future releases of Macromedia ColdFusion, we'd like you to answer a few questions about your projects, organization, and your use of ColdFusion. Follow the link below and you can help shape the future of

Re: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Frank Mamone
Yet another sweepstakes excluding Quebec:( - Original Message - From: Jim Davis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 14, 2002 2:56 PM Subject: RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com Hello. I'd like to ask a favor of

CF Error

2002-11-14 Thread UXBinfo
We have just started seeing this error once in a while in the application log on our CF4.01 server running NT4 SP5 - Dual 500Mhz PII / 1gb memory. Cannot create synchronization object for CFLock The error occurred while processing an element with a general identifier of (CFLOCK),... Can anyone

RE: UNC path or Web Service w 2 CFC's

2002-11-14 Thread Rob Rohan
I guess it would depened on if you think you'll ever wanted to call the function outside of the applicaion. That is a cool question. -Original Message- From: Brook Davies [mailto:brook;maracasmedia.com] Sent: Thursday, November 14, 2002 11:55 AM To: CF-Talk Subject: UNC path or Web

A CFC, then another CFC and another...

2002-11-14 Thread Brook Davies
Here's an interesting question. I have two remote CFMX servers. They want to play together. So, Web Service one contacts Web Service two and sends it some Data. Web Service 2 looks at the data and then asks Web Service one for some additional Data. This happens a couple of times, until Web

RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Rob Rohan
Lol, Governor -Original Message- From: Jim Davis [mailto:jim;depressedpress.com] Sent: Thursday, November 14, 2002 11:57 AM To: CF-Talk Subject: RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com Hello. I'd like to ask a favor of the people on this list. To help us

RE: A CFC, then another CFC and another...

2002-11-14 Thread Simon Horwith
it makes more sense to hand off all data in one call - if it's a safe assumption that you always (or almost always) need that data. If 50% of the time, call-backs are not going to take place, then you may want this behavior. It should be simple enough to implement both and do a quick performance

RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Miller, Kevin
Drive to Toronto, take it from there. ;) Kevin -Original Message- From: Frank Mamone [mailto:fmamone;videotron.ca] Sent: Thursday, November 14, 2002 12:04 PM To: CF-Talk Subject: Re: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com Yet another sweepstakes excluding

cfexecute under Unix?

2002-11-14 Thread Chris Norloff
I can't get cfexecute to run under Unix. I can get it to not error but I can't get any output. The commands work okay when I su to userid nobody, and permissions are okay on the directories. Any ideas? thanks, Chris Norloff cfexecute name=/opt/coldfusion/bin/cfstat

perf_mon works under Unix !?

2002-11-14 Thread Chris Norloff
Even though perf_mon is for WindowsNT, it appears I'm getting good numbers running it under Solaris (CF 4.5 SP2). cfset temp = getmetricdata(perf_monitor) Is this robust, anybody know? thanks, Chris Norloff ~| Archives:

Re: cfexecute under Unix?

2002-11-14 Thread William Wheatley
what output are you trying to get? you dont get any output from it on the screen but are you saying you're not getting the output into the cfstat.txt file? What are you expecting to see? What do you see when you go in from the command prompt - Original Message - From: Chris Norloff

Verity index of a query

2002-11-14 Thread Dowdell, Jason G
Does anyone know how/where a Verity index of a query is stored on the box? I'm wondering if the server is restarted whether or not the indexed query will remain or if it's stored in the CFServer's memory until that box shuts down... At which point the index would need to be recreated. Points to

Re: [CFGRAPH - Oops] CFCHART looooong loads on Mac IE

2002-11-14 Thread Dick Applebaum
Joshua, got a URL? Dick On Thursday, November 14, 2002, at 10:50 AM, Joshua Miller wrote: Sorry, CFGRAPH that is ... Joshua Miller [EMAIL PROTECTED] -Original Message- From: Joshua Miller [mailto:josh;joshuasmiller.com] Sent: Thursday, November 14, 2002 1:35 PM To: CF-Talk

RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Stacy Young
Ack! Really? Dammit I just finished the survey lol...but I do have a mailing address in Ontario. :-) Stace -Original Message- From: Frank Mamone [mailto:fmamone;videotron.ca] Sent: Thursday, November 14, 2002 3:04 PM To: CF-Talk Subject: Re: Take the ColdFusion User Survey, Maybe Win

RE: perf_mon works under Unix !?

2002-11-14 Thread Stacy Young
I experimented briefly with it...I can't tell u much more than that except that I did get results. *shrugs Stace -Original Message- From: Chris Norloff [mailto:cnorloff;norloff.com] Sent: Thursday, November 14, 2002 3:23 PM To: CF-Talk Subject: perf_mon works under Unix !? Even though

RE: Verity index of a query

2002-11-14 Thread Angel Stewart
I believe it is stored in coldfusion/verity/collections on the server. I don't think you are required to re-index a database verity collection everytime you reboot your server... -Gel -Original Message- From: Dowdell, Jason G [mailto:DowdelJG;usano.ksc.nasa.gov] Does anyone know

CF 5.0 certification

2002-11-14 Thread Andres
Hello Everyone, I recently took the MM CF5.0 certification exam, and to my huge amazement, actually passed the thing :) To my even greater surprise, they actually told me i scored enough to be advanced... guess my $50 bill under the table actually worked :) just kidding... it was only $23.95

CFMX: 404-Type Error Redirection?

2002-11-14 Thread Lee Fuller
I know we've discussed this before, but with IIS5 and CFMX, has anyone come up with a way to define custom error pages for .CFM 404s, and the like? Of course, making adjustments to the Custom Error Pages within IIS will work for not found or incorrect .HTM pages... But not for .CFM pages. Has

Re: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com

2002-11-14 Thread Frank Mamone
Did you use that one? - Original Message - From: Stacy Young [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 14, 2002 3:34 PM Subject: RE: Take the ColdFusion User Survey, Maybe Win $100 at Amazon.com Ack! Really? Dammit I just finished the survey lol...but I

Re: cfexecute under Unix?

2002-11-14 Thread Chris Norloff
This is what cfstat outputs. The call with cfexecute is not even writing the cfstat.txt file, so something basic must be wrong. I even tried just to get the machine to ping an IP address ... no joy. I think this might be related to shells, of which I know very little. thanks, Chris Norloff

RE: CF 5.0 certification

2002-11-14 Thread Jim Davis
Hello Everyone, I recently took the MM CF5.0 certification exam, and to my huge amazement, actually passed the thing :) To my even greater surprise, they actually told me i scored enough to be advanced... guess my $50 bill under the table actually worked :) just kidding... it was only

Re: CFMX: 404-Type Error Redirection?

2002-11-14 Thread Rick Root
Lee Fuller wrote: I know we've discussed this before, but with IIS5 and CFMX, has anyone come up with a way to define custom error pages for .CFM 404s, and the like? boy I hope someone comes up with a decent solution. You can't have custom 404 pages for .cfm files in Apache either. And on

RE: Verity index of a query

2002-11-14 Thread Everett, Al
Heck no. We reindex a database of 290,000 products weekly. The collection is stored on disk. -Original Message- From: Angel Stewart [mailto:gel;silkcotton.com] Sent: Thursday, November 14, 2002 3:39 PM To: CF-Talk Subject: RE: Verity index of a query I believe it is stored in

RE: CF 5.0 certification

2002-11-14 Thread Simon Horwith
last I heard, they weren't going to upgrade the CF 5 people to MX... you'll have to take the MX test to be MX certified. Personally, I think it'd be a huge mistake grandfathering people to MX. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer

Re: CF 5.0 certification

2002-11-14 Thread Jeffry Houser
Yes, the certification will expire, you probably should have taken the CFMX exam. It is frustrating that the certification will expire, but that is the case. Has CF5 changed? No, it hasn't. Why should my certification expire? Beats me, but that is what is happening. All the CF5 names

RE: CF 5.0 certification

2002-11-14 Thread Ken Wilson
...will i still be certifiable after the exam I believe that would be between you and your psychiatrist to determine. :) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CF 5.0 certification

2002-11-14 Thread Thane Sherrington
At 03:42 PM 11/14/02 -0500, Andres wrote: I recently took the MM CF5.0 certification exam, and to my huge amazement, actually passed the thing :) To my even greater surprise, they actually told me i scored enough to be advanced... guess my $50 bill under the table actually worked :) just

RE: cfexecute under Unix?

2002-11-14 Thread Rob Rohan
I don't have access to a unix box at work so this is just a guess, but you could make a script file: +===+ #!/bin/sh cfstat output.txt 21 +===+ save it in the /opt/coldfusion/bin directory $chmod u+x [filename] then in cf load in the output

  1   2   >