CF runs as what user in linux

2003-02-11 Thread Brian Scandale
what user does coldfusion run as in linux? thanks, Brian ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: CF runs as what user in linux

2003-02-11 Thread Brian Scandale
Ahhh... the standard install has it running as apache. Thanks At 11:23 AM 2/11/03, you wrote: Depends what you install it as. ps -aux (as root) will give you list of the processes and which user they are running under. WG -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED

Re: MAIL SERVER

2002-12-20 Thread Brian Scandale
Any linux distro... has sendmail. At 11:28 AM 12/20/02, you wrote: Anyone know of a good MAIL server for cheap? I would like a Cold Fusion one but right now I just need one for my family email. Joy Joy Sherman Ever notice how much everyone wishes Joy during the holidays Too bad, I'm taken!

RE: Slightly OT: SQL VIEW gets out of sync??

2002-12-16 Thread Brian Scandale
I've noticed this too... Seems that the view is stored very specifically and changes to the underlying tables don't propagate to the view definitions. Reasons behind the design... I suspect it has to do with performance. At 11:52 AM 12/16/02, you wrote: : What DB? MS SQL Server 7

Re: about cfTransactions

2002-11-28 Thread Brian Scandale
Ouch! Actually I wasn't clear enough... I meant includes... not pages... and I think I worked out a way last night. At 01:45 AM 11/28/02, you wrote: Brian Scandale wrote: What are others doing to work across multiple pages in a runtime determined order. The only thing we can: redesign

Re: CFMX Server Crash #4 for the day..

2002-11-27 Thread Brian Scandale
Off the top of my head and perhaps worth just that... Could you have a deadlock condition going? ... Locking AB on one request and another near simultaneous request locking BA such that each are waiting on the other to finish and release the lock so that they can exert their second lock and

RE: CFMX Server Crash #4 for the day..

2002-11-27 Thread Brian Scandale
I think there are a couple of different ways to connect to the MSSQL engines... Socket connections for example and a few flavors of drivers I believe. If I am correct you might try them to see what effect it has. I am connected to SQL2000 via a socket driver I think it was called. for what its

Re: CFMX connector Bat files

2002-11-27 Thread Brian Scandale
Jeeze... I feel your guys pain!!! :-( At 06:58 PM 11/27/02, you wrote: When I try to run the IIS_connectors Bat file it says could not connect to any Jrun servers on the host localhost And it will not install the connectors. Jrun is running and so is the CFMX Service. Any ideas? Brook

about cfTransactions

2002-11-27 Thread Brian Scandale
A long winded question about Transactions - - the Question is embedded in the code below... -cfset commitIt = True -cftransaction action=BEGIN -cftry Database Inserts Go Here -- If Var=X I want to terminate this .cfm page without closing the transaction and continuing with the

-isDefined() finesse

2002-11-25 Thread Brian Scandale
I am trying to see if a particular dynamic variable is defined... but having trouble building the ifDefined argument. Form.SerNum1 Form.SerNum2 Form.SerNum3 ...etc. are built dynamically and then passed to an action form below like below. -cfloop index=i from=1 to=#theSerNums.RecordCount#

Re: -isDefined() finesse

2002-11-25 Thread Brian Scandale
Sorry, just worked it out... -cfif isDefined(Form.SerNum#i#) At 01:11 PM 11/25/02, you wrote: I am trying to see if a particular dynamic variable is defined... but having trouble building the ifDefined argument. Form.SerNum1 Form.SerNum2 Form.SerNum3 ...etc. are built dynamically and then

RE: temp variable storage?

2002-11-25 Thread Brian Scandale
the pages until I need them again. Structures??? perhaps? At 10:21 AM 11/23/02, you wrote: What dictates that the first form can't be written to the DB as soon as they submit it? Ken -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 1:02 PM

isDefined() finesse

2002-11-25 Thread Brian Scandale
I am trying to see if a particular dynamic variable is defined... but having trouble building the ifDefined argument. Form.SerNum1 Form.SerNum2 Form.SerNum3 ...etc. are built dynamically and then passed to an action form below like below. cfloop index=i from=1 to=#theSerNums.RecordCount#

temp variable storage?

2002-11-23 Thread Brian Scandale
I have a large form (around 100 text boxes and check boxes etc...). Once the user submits it they still need to navigate about 6 more forms before the data can be written to a database. How do I go about storing the form data temporarily until I can write it to disk? I suspect there are more

Re: temp variable storage?

2002-11-23 Thread Brian Scandale
cookies or secure your temp info- by writing to db each step you;ll probably save alot of time for yourself jay Ken Wilson wrote: What dictates that the first form can't be written to the DB as soon as they submit it? Ken -Original Message- From: Brian Scandale [mailto:[EMAIL

Re: temp variable storage?

2002-11-23 Thread Brian Scandale
I think I know what I want to do now... 1. - Store the Form.Variables into a Structure. -cfscript tmpStruct = StructNew(); SomeArrayformNames = ListToArray(form.fieldnames); for(i=1; i LT ListLen(form.fieldnames)+1; i=i+1){

RE: temp variable storage?

2002-11-23 Thread Brian Scandale
- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 11:58 AM To: CF-Talk Subject: Re: temp variable storage? No, no and no. MUST STORE form.variable data while user navigates 6 other forms... Then the form.variable data has value and can be written

Re: CFMX Doesn't like to load on startup

2002-11-20 Thread Brian Scandale
Stace, If you go to: -Start -Programs -Admin Tools -Services cfmx will show up in the list... mark them... or it automatic start... then it should. hth Brian At 08:44 AM 11/20/02, you wrote: Odd. For the past few days CFMX on win2k pro has decided on it's own that it doesn't want

Re: Looking for a tag such as CFSLEEP

2002-11-08 Thread Brian Scandale
Well, even a sleep routine would have to have some code running checking if it is time to wake up yet... even if it is optimized within CF itself. Perhaps just write a do while routine... Check the time... set a variable. Loop through checking the time again and again until the desired time

CFLOCK and data integrity question

2002-11-07 Thread Brian Scandale
I just saw this code on this list and it made me think... Are we supposed to be locking insert/update statements to get multi-user data integrity? I have been thinking the database backend was doing this for us. SQL server / PostgreSQL / Oracle etc. I guess it is important for writing a

Re: SOT: Porting executable app to web based

2002-11-07 Thread Brian Scandale
If you don't have the source code you will have to reverse engineer it... then build the functionality into an applet or coldfusion app. I suspect you might be asking a different question since my answer is too obvious. At 09:39 AM 11/7/02, you wrote: I currently have an application that was

webConference software

2002-11-07 Thread Brian Scandale
Looking to find some cheap or even free Web Based conferenceing software that I can use to demo a CF WEB based application with. That is... when I enter data and post getting a result set from the CF Server... the prospect also gets that data sent to his browser to render. Not really looking

Re: sql help -- joining 4 tables

2002-11-06 Thread Brian Scandale
SELECT * FROM Table1 INNER JOIN Table2 ON Table1.FieldX = Table2.FieldX INNER JOIN Table3 ON Table1.FieldX = Table3.FieldX INNER JOIN Table4 ON Table1.FieldX = Table4.FieldX WHERE Table1.FieldY = SomeValueOfInterst Try a Google Search for SQL Tutor At 11:45 PM 11/5/02, you wrote: good evening

Re: Server Hanging

2002-10-31 Thread Brian Scandale
Rob, Read the Logs available from the CFAdmin see if something there give you a clue as to what might be wrong. Good luck, At 12:27 PM 10/31/02, you wrote: Hi, Does anyone know if there is a Macromedia document that outlines best practices for the CF Administrator - like actual setting

Re: OT RAGE

2002-10-31 Thread Brian Scandale
Michael, Why not add a Click Here to kill this thread. If X number of people vote to kill it... It's killed programmatically. X=25? 30? 35? 50? ... 35% of the last weeks posters??? Ten or more different ways to kill it... be creative. Then it becomes a user moderated list... the users can

Re: OT cheap SSL

2002-10-25 Thread Brian Scandale
And don't forget, just because Verisign says that they are truly who they are does not make them safe. Lots of bad actors acting with impunity outside the jurisdiction of the Western justice system. At 02:22 AM 10/25/02, you wrote: Chris Kief wrote: These guys are fantastic. A variety of

Re: SQL OT: selecting bottom most 10 records

2002-10-25 Thread Brian Scandale
Why not use SELECT BOTTOM 10 Order by ID ASC ??? At 07:08 PM 10/25/02, you wrote: brain fartagenever had to make this work... i only want to select the bottom most ten records based on a primary key ID field. cfquery name=getWriter datasource=survivorsmiles select TOP 10

RE: SQL OT: selecting bottom most 10 records

2002-10-25 Thread Brian Scandale
jeeze... trying is WAY faster than asking ;-) At 08:04 PM 10/25/02, you wrote: is bottom a keyword that i can use? i guess so, or else you wouldnt have suggested it right :) tw -Original Message- From: Brian Scandale [mailto:Brrrian;Excite.com] Sent: Friday, October 25, 2002 11:02 PM

Re: OT: Dreamweaver MX saves slowwwly

2002-10-24 Thread Brian Scandale
Sounds very much like a network configuration issue to me. Either the network config or workstation config could be responsible. At 11:18 AM 10/24/02, you wrote: Anybody else encounter this? When saving an open document in Dreamweaver MX, it hangs for a few annoying seconds before it finally

Re: SQL Statement check please

2002-10-16 Thread Brian Scandale
You might want to consider the effects of the # character in the data stream you are trying to save to disk. It might trigger CF to evaluate it... At 03:28 PM 10/16/02, you wrote: INSERT INTO Master (ItemSubCategory, ItemCategory, ItemName, ItemNumber, VendorName, VendorItemNumber) Values(

Input type=File troubles

2002-10-02 Thread Brian Scandale
Using the type=file attribute on an input to a form I browse to this: \\YREKA\yreka.root\var\www\html\af\images\explode.gif When I submit the form it ends up saving the Forminput string to the database like this: \YREKAyreka.rootvarwwwhtmlafimagesexplode.gif It strips out all the \ except for

Re: Input type=File troubles

2002-10-02 Thread Brian Scandale
Adding cfqueryparam to the insert statement solved my problem for me. CFQUERYPARAM value=#theFileName# cfsqltype=CF_SQL_CHAR Now... I'm off to figure out the rest of cffile ... Thanks Brook... you got me looking deeper. At 05:45 PM 10/2/02, you wrote: Sorry, re read this and I don't think

RE: SQL Text question from a beginner

2002-10-01 Thread Brian Scandale
Don't forget that there are limitations on how much text a user can cut and paste into a textbox or textarea field in a form. I believe that the limitations are browser dependant... around 8K for IE5+ I seem to remember. At 11:47 PM 9/30/02, you wrote: The TEXT datatype should be as easy to

RE: SQL Text question from a beginner

2002-10-01 Thread Brian Scandale
No... but scanning is second nature to me... ;-) At 12:08 AM 10/1/02, you wrote: Thanks, you are a mind reader! -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:09 AM To: CF-Talk Subject: RE: SQL Text question from a beginner

Searching with ListFind

2002-10-01 Thread Brian Scandale
I have a query that will return one column perhaps with 3 or four rows. I want to check the column for the existence of a specific test value. I do NOT want to loop over the query checking each value to see if it matches the test value because I need to do this on every row output from

RE: Searching with ListFind

2002-10-01 Thread Brian Scandale
(ValueList(query.colum),value)Do Something Here If test value Exists/cfif -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 2:40 PM To: CF-Talk Subject: Searching with ListFind I have a query that will return one column perhaps with 3 or four

RE: CFMX / MSSQL

2002-09-30 Thread Brian Scandale
FYI there is a virus going around that targets MSSQL machines with account sa set with no password... More Info here: http://vil.nai.com/vil/content/v_99499.htm At 05:48 PM 9/30/02, you wrote: I am using the local dbo account of sa no password. It will not authenicate in CF MX Admin. The

Re: CFMX Developer - External IP Address

2002-09-29 Thread Brian Scandale
You sure it's not stored in memory??? At 11:19 AM 9/29/02, you wrote: What's the path/filename of the file you need to edit to change the one external IP address allowed by CFMX? TIA Dick __ Signup for the Fusion Authority

Re: Time calculation

2002-09-29 Thread Brian Scandale
At 01:45 PM 9/26/02, you wrote: I have two date and time fields, start and end. I want find the difference and i want to display the difference as days:hrs:mins:secs what is the best way to do that... ? Right now i use hour minute and second (built in functions) and those work find for

HTML tool-tip style question

2002-09-28 Thread Brian Scandale
Using IE as a browser, the ALT= property of a href= tags and img tags etc show up as tool tips when the mouse hovers over it. How does one assign styles to that tool tip text box that pops up for a few seconds? thanks, __

Re: JAVA Script that adds

2002-09-28 Thread Brian Scandale
I learned by example to do this by finding a site that had forms and addition of numbers going on and then viewing the source and figuring out how it was done. Then I modified it for my specific needs. Since your result will be very dependant on your needs I suggest as a start:

RE: JAVA Script that adds

2002-09-28 Thread Brian Scandale
if this question was OT. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 28, 2002 1:43 PM To: CF-Talk Subject: Re: JAVA Script that adds I learned by example to do this by finding a site that had forms and addition of numbers going

Execution Speed...?

2002-09-27 Thread Brian Scandale
I'm needing to do lots of testing repeatedly and I was wondering if anyone knows off the top of their head... Which evaluates faster? cfif isDefined(Client.Variable)/cfif OR cfif SomeVariable/cfif Thanks, Brian __

Re: Execution Speed...?

2002-09-27 Thread Brian Scandale
Turns out that the latter expression is 12% faster (43sec/38sec), when iterated over a million loops. And I guess that makes sense too. It has to first locate the variable... then it has to evaluate it, while in the second it just has to evaluate it, (throwing a runtime error if it does not

Re: OT: Forging a web page

2002-09-25 Thread Brian Scandale
Sounds like cheating... that should be an expellable offense... to put some balance back into the training of our future corporate execs. At 07:47 AM 9/24/02, you wrote: Are there any tools that allow users change data in a cfm/html page? A fax of one of my web sites' pages made it to my

RE: client variables issue

2002-09-24 Thread Brian Scandale
At 10:41 AM 9/24/02, you wrote: cfapplication name=NavtrakReports sessionmanagement=Yes clientmanagement=Yes sessiontimeout=#CreateTimeSpan(0,0,60,0)# clientstorage=clientStorage perhaps... clientStorage is NOT the database name of your clientStorage location? just a thought...

Re: Muliple Environments

2002-09-24 Thread Brian Scandale
Short version: Copy the current application files into a new Directory Structure... change any cfapplication tags to reference the new development application... change any dns settings/attributes to point to a development database, (a copy of the current site I would expect), and you should

Re: SOT Dynamic DNS

2002-09-24 Thread Brian Scandale
Since my first experience with them in Feb 2002 I have not noticed an outage... I can't speak to times previous. Seems like a great service to me... but then they are also my only experience at working around dynamic ip addressing problems. I'm using a very minimal overhead client... DeeEnEs

Add Column to Query...

2002-09-23 Thread Brian Scandale
How do I go about adding a column to a query dataset? For example I want to concatenate two columns together as a third column and then group output by that third column... with cfoutput query=SomeQuery Group=third column I know I can do this with the proper SQL SELECT statement, However, I

Re: Add Column to Query...

2002-09-23 Thread Brian Scandale
That looks very promising! and jeeze... right under my nose the whole time. That's embarrassing. Thanks Jochem At 01:53 AM 9/23/02, you wrote: Brian Scandale wrote: How do I go about adding a column to a query dataset? QueryAddColumn()? Jochem

Re-Sort a Query...

2002-09-23 Thread Brian Scandale
/02, you wrote: That looks very promising! and jeeze... right under my nose the whole time. That's embarrassing. Thanks Jochem At 01:53 AM 9/23/02, you wrote: Brian Scandale wrote: How do I go about adding a column to a query dataset? QueryAddColumn()? Jochem

RE: Re-Sort a Query...

2002-09-23 Thread Brian Scandale
it is. - Yoda -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 3:33 PM To: CF-Talk Subject: Re-Sort a Query... I want to Re-Sort a Query that I have added several columns of data to... It is the new columns that I would like

Re: Las record

2002-09-18 Thread Brian Scandale
Explore the custom tag cf_maxID That should do it for you. At 02:48 PM 9/18/02, you wrote: How do I get the Unique ID from the last field I inserted? __ Your ad could be here. Monies from ads go to support these lists and

RE: Developer Platform suggestions was Re: Nice

2002-09-10 Thread Brian Scandale
Too Funny! I thought a MM guy would be trying to help not hinder! I know, you just couldn't resist! ;-) At 10:57 AM 9/10/02, you wrote: I would highly recommend OS2/Warp 4 Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy But I ned tacos! I need them

Re: CF encrypt() and SQL

2002-09-10 Thread Brian Scandale
I don't remember where I got this... some generous person on this list perhaps, but I have been using it with much success. ENCRYPT: cfset encrypted=encrypt(form.pwd,key) cfset encrypted=tobase64(encrypted) store in database DECRYPT: query

Re: CFMX - Slow, why?

2002-09-09 Thread Brian Scandale
At 01:46 PM 9/9/02, you wrote: I have just finished upgrading my dev box to CFMX. After going through a number of issues (search engine friendly URLs, problems with the installer), I finally have working sites again - but the debug execution times are simply unacceptable. I have 20 apps on

Re: Arguments for the CF Compiler?

2002-09-07 Thread Brian Scandale
Sometimes just browsing the compiler or other executable file with a good text editor or text browser will reveal the argument list and the errors messages etc... just a wild thought. Brian At 10:52 AM 9/7/02, you wrote: Wondering if anyone knows all the available arguments for

cffile format

2002-09-06 Thread Brian Scandale
I am writing a log file to disk with one line per request via application.cfm My cfservers are both linux and windows machines... My workstation is a windows machine. Is there a way so specify textfile type or something so that the resulting text file written on the linux boxes are easily

Re: RE-sorting records in a database via the browser

2002-09-06 Thread Brian Scandale
I suspect you mean that you know how to use java script to change the display of the list when the user clicks the Up or Down arrow at the right hand side next to an item in your list. If it were my list I would have the arrow post to the server and update the database and repopulate the

Re: Tool that uses cfusion_encrypt?

2002-09-06 Thread Brian Scandale
I believe that the encryption you mention is readily broken via tools published several years earlier. Search google first. At 06:52 PM 9/6/02, you wrote: I need a tool to encrypt a website, as strongly as possable, but leaving the files in working condition. I've found a few, but none use the

Re: Getting a business off the ground

2002-09-05 Thread Brian Scandale
I VOTE to move this thread to cf-community. Anyone want to second that? At 07:25 PM 9/5/02, you wrote: I don't recommend it - but I quit with nothing coming in - it was after a car accident - I said - now or never. I used to run to my mailbox every day hoping for even small $35 ro $50 checks

Re: CF-Postgresql experiences

2002-09-05 Thread Brian Scandale
I can heartily recommend the combination on a Linux Box... RedHat/CFMX/PostgreSQL. Never tried PostgreSQL on Windows. At 07:07 PM 9/5/02, you wrote: I'm wondering if anyone mind sharing their experiences in connecting CF and Postgresql(cygwin) on Windows platform. Stability, speed and

Re: Still dead? - Mandarin versions...???

2002-09-01 Thread Brian Scandale
Cool... UnDead... now I have a question... I've been saving it for two days. I have an application... quite large actually. A potential customer asks me, do you have it in Mandarin? ...but of course I say. Now what the hell have I gotten myself into? Please... some direction on where to

Re: test

2002-08-30 Thread Brian Scandale
Reply No.1 at 12:01 am PDT At 11:58 PM 8/29/02, you wrote: Anyone who is on right now and wants to reply to this test post, please do so. Please DO NOT post to this thread past 5am. Thank you. test 2 Michael Dinowitz Master of the House of Fusion http://www.houseoffusion.com -

RE: (Admin) OT Threads

2002-08-30 Thread Brian Scandale
Brilliant! At 03:02 PM 8/29/02, you wrote: Michael, First off, thanks for all of the time and work you put into this list. Second, what about a vote OT link at the bottom of each message? After about 20 or so votes a message would moved to CF-Community? Sort of a way that we can help you

Accounting Package

2002-08-29 Thread Brian Scandale
I am looking for an accounting package written in CF that I can integrate with my own CF application... any leads? Thanks, Brian __ Your ad could be here. Monies from ads go to support these lists and provide more resources

RE: programmer vs. developer

2002-08-29 Thread Brian Scandale
How appropriate that you write this at 3:42 am EST ;-) At 3:42 AM 8/29/02, you wrote: Finally, I think this expectation that most of us have about being a programmer 24/7 demonstrates the relative immaturity of our field; after all, it really should be just like any other job, instead of being a

Re: Accounting Package

2002-08-29 Thread Brian Scandale
, you wrote: ..more... how intense an application? offline/online curious. eric From: Brian Scandale [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Accounting Package Date: Thu, 29 Aug 2002 00:48:14 -0700 I am looking for an accounting package written in CF

RE: Women programmers

2002-08-29 Thread Brian Scandale
To tell ya the truth... I look forward to that perspective and I tap into it wherever I can find it... because my apps are just damned U G L Y without it. I love the sisters! At 10:04 AM 8/29/02, you wrote: Amen goes there, sister! Susan H. Allen Pfinsten Publishing, L.L.C. Cleveland, Ohio I

[OT] Re: Women programmers (OT Threads)

2002-08-29 Thread Brian Scandale
I agree... and I apologize for contributing to the noise in my earlier post. The list is dumbing down via this off topic chatter... Really should be chatting in the cf-community lists. Pity the poor chap who is getting lost in the noise just trying to get a little help. At 11:22 AM 8/29/02,

[OT] Re: Women programmers (OT Threads)

2002-08-29 Thread Brian Scandale
I agree... and I apologize for contributing to the noise with my earlier post. This list gets dumbed down with all the chatter... best left for cf-talk. Pity the poor soul who's question is lost in the chatter. At 11:22 AM 8/29/02, you wrote: I love a few valuable OT threads as much as anyone

RE: thanks and sharing the bubbly

2002-08-19 Thread Brian Scandale
The email address says it all. [EMAIL PROTECTED] That's the little blue pill company. It must be the Viagra users web site ;-) At 11:26 AM 8/19/02, you wrote: Can you tell us about what it does? -Original Message- From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]] Sent: Monday,

Amber Alert Canceled... Jessica Cortez found

2002-08-14 Thread Brian Scandale
LA Times reports Jessica Cortez found alive at 4:30pm Tuesday in Los Angeles. Woman who abducted her arrested. Please Don't Respond to this post. __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: Forms and that darned browser BACK button...

2002-08-14 Thread Brian Scandale
I handle this by checking wether the Insert is going to overwrite and throw an error... if the userID is the same however I branch to an update statement instead of an insert statement. At 06:42 AM 8/14/02, you wrote: : Here's a method I use: instead of writing to the database on every new :

Re: IE only half rendering CSS

2002-08-14 Thread Brian Scandale
Jochem, I have a similar problem and only with IE6 I might ad... IE5 and 5.5 do not display this problem. http://www2.wiptrac.com:2080/af/IE6FormDisplayproblem.html In my case text that is written is sometimes colored over by the form color in which the text sits. Scrolling SLOWLY reveals

OT: Burning Man

2002-08-12 Thread Brian Scandale
Anyone headed to BlackRock City this Labor Day for Burning Man? My posse broke up and I'm the only one left going so now I'm trying to find a group to burn with. This list seemed like a... well let's just say I'm curious. If so we can hook up perhaps... I'm in Los Angeles and leaving perhaps

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Please Define Largish... At 10:03 AM 8/9/02, you wrote: I reported the other day that I am receiving a lot of datasource errors when using largish client variables and a MSSQL7.0 variable repository under CFMX. No issues with the EXACT same config under CF4.5. If some one running MX could try

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Ahhh... so that is largish. An idea... set up a datasource for the repository as ODBC Socket... instead of as SQL Server. I have had problems using the SQLserver JDBC driver. Let me know how this test goes. Very curious as I am suddenly facing spurious Client.Variable losses after switching

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Hey Brook, Had no problem with a 28K file... set the Client variable and then displayed it much later down the page. I'm running CFMX Win2K SQLServer2K and using ODBC socket connection to the ClientVariable store. try ODBC socket and let me know how it goes... I also am chasing some client

Re: Javascript woes...

2002-08-09 Thread Brian Scandale
I use this script to put the cursor into the First Form Window... I suspect you can modify it to suit your needs. !--- USED TO PLACE FOCUS INTO FIRST FORM WINDOW --- script language='JavaScript' type='text/javascript' !-- function firstFocus() { if (document.forms.length 0) { for

RE: cf-talk quiz ...

2002-08-09 Thread Brian Scandale
I think I'll just find a joint... At 04:06 PM 8/9/02, you wrote: I can tell I am not too sophisticated, I am going to find a joint that has some bloody good beers, hope everyone has a great weekend. Kind Regards - Mike Brunt, CTO Webapper http://www.webapper.com Downey CA Office 562.243.6255

RE: cf-talk quiz ...

2002-08-09 Thread Brian Scandale
I'll second that. At 06:02 PM 8/9/02, you wrote: that's why you should use www.tightvnc.com. :) -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 7:27 PM To: CF-Talk Subject: RE: cf-talk quiz ... Your kidding me, its Friday?!* I had no

JDBC error

2002-07-29 Thread Brian Scandale
Setting up a datasource using CFADMIN as SQLServer using the JDBC Driver(I assume), I get the error below ...However, using ODBC Socket on the same database I don't. I also assume, (from comments on this list), that JDBC is a faster more efficient way to go so I'd like to resolve the error.

Re: CFMX SQL - simple query with weird error message

2002-07-29 Thread Brian Scandale
Ye, I am getting a VERY similar error. Did you ever get resolution on this issue? I can solve my problem by setting up the DataSource in the CFAdmin as ODBC Socket connection instead of SQLServer... however I was thinking that JDBC is more efficient... faster etc. Brian At 10:53 AM

MM Forums...

2002-07-29 Thread Brian Scandale
Anyone else having troubles day after day trying to use the MM CF forums? It seems that requests take... forever... frequently timing out... to return results... it seems the problem has been getting worse week by week for the last 3 weeks or so... Is it me?

RE: GEOFENCING --(rediculous OT reply inside)

2002-07-29 Thread Brian Scandale
Or maybe to separate the GEO-Catholics and Protestants? At 11:40 AM 7/29/02, you wrote: to constrain the GEO-cows? (my apologies - couldn't hold back) -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 2:31 PM To: CF-Talk Subject: Re:

Re: CFMX + Linux + Apache Segmentation Fault

2002-07-29 Thread Brian Scandale
Matt, For what it's worth... a CFMX install on top of a stock RedHat 7.3 download with apache 1.3.23-11 that came included with RH has been VERY stable. I always get the load error about recompiling for EAPI but as of yet it has not created any problems... Up since 7/15 with no restarts.

Re: SQL ? Select TOP?

2002-07-29 Thread Brian Scandale
SELECT TOP 5 * FROM someTable Where blah blah blah ORDER BY SomeIncreasingValue DESC That works in SQL SERVER This works in ANSI Compliant SQL like postgreSQL SELECT * FROM someTable Where Blah blah blah ORDER BY SomeIncreasingValue DESC LIMIT 5 At 10:00 PM 7/29/02, you wrote: Brain shorting

Re: dynamic body #DynamicContent#

2002-07-26 Thread Brian Scandale
Sorry, I was too terse with my question... I'll be a bit more verbose here. cfheader is used to put dynamic info into the head/head section of the html returned by CF to a browser making a request. I use it all the time to put in clientside javascript. My issue is how to do this to a body

dynamic body #DynamicContent#

2002-07-26 Thread Brian Scandale
How does one go about putting dynamic content into the body tag? you know... perhaps something like: body onload=#DynamicContentVariable# thanks Brian __ Structure your ColdFusion code with Fusebox. Get the official book at

Re: ListSort()

2002-07-26 Thread Brian Scandale
Seems just plain wrong to me... a bug? At 02:15 PM 7/26/02, you wrote: Well, it appears to be putting them in that order on purpose. My previous example was the AFTER sort list. PRE sort was completely jumbled. I would have figured that it would sort like so (first and shortest): A AB AC ACE

Re: ListSort() - SOLVED

2002-07-26 Thread Brian Scandale
Gotta love them train rides ;-) At 03:20 PM 7/26/02, you wrote: Nope. cf_blush It turns out to be caused by low blood sugar. /cf_blush (I figured it out while on the train home) There was a . (period) at the end of each line, stripped off at display time. The text evaluates less than ., so

Re: cfusion_verifymail error in CFMX

2002-07-25 Thread Brian Scandale
Thanks a zillion Worked Great! At 12:01 AM 7/9/02, you wrote: Brian, i believe this CFusion_VerifyMail undocumented function no longer exist in CFMX. Here's my code to replace it: cfobject action=CREATE type=JAVA class=coldfusion.server.ServiceFactory name=factory cfscript function

RE: CFMX CFM/JSP/Servlets/Beans Compile?

2002-07-25 Thread Brian Scandale
or some. something like cfexecute name=C:\Compile\*.bat outputFile = F:\Temp\output.txt /cfexecute Joe -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 1:47 AM To: CF-Talk Subject: Re: CFMX CFM/JSP/Servlets/Beans Compile? You can find

RE: cfmx and browser cache issue

2002-07-24 Thread Brian Scandale
META HTTP-EQUIV=Cache-Control CONTENT=0 CFHEADER NAME=Expires VALUE=Mon, 06 Jan 1990 00:00:01 GMT CFHEADER NAME=Pragma VALUE=no-cache CFHEADER NAME=cache-control VALUE=no-cache Joe Certified Advanced ColdFusion Developer [EMAIL PROTECTED] -Original Message- From: Brian Scandale [mailto

RE: cfmx and browser cache issue

2002-07-24 Thread Brian Scandale
of secure and non-secure items. Chris Norloff -- Original Message -- from: Brian Scandale [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Tue, 23 Jul 2002 23:24:03 -0700 Nope, just scoured the source again... not a one... nothing. At 06:58 PM 7/23/02, you

Re: FW: Error Diagnostic Information CF_POOF?

2002-07-23 Thread Brian Scandale
If I remember correctly... I would get these from time to time when my cfml was causing the CFserver to Restart. Usually associated with a query that was upsetting in some way. And always baffling until I tried the queries by pasting into another query tool or some such... Perhaps cf is

RE: OT javascript addition

2002-07-23 Thread Brian Scandale
Tim, Below is a cut and paste of some javascript that I use to process numeric fields and push calculated results into other fields on the page. It's pretty well documented so that you can see what and how it does it... You can easily modify it to do whatever math you might need. Notice how

Re: OT: Charting Software

2002-07-23 Thread Brian Scandale
Speaking only about line graphs and charts... my experience has shown: CF5 does NOT have charting capabilities... the cfgraph tag is nearly useless except in a few very limited instances. CFMX has cfchart... an upgrade to cfgraph but it also has some pretty severe limitations on presentation.

Re: OT: Charting Software

2002-07-23 Thread Brian Scandale
Can you use it with cf to dynamically generate flash charts? At 05:02 PM 7/23/02, you wrote: We are actually using that some where I work. Very slick product! Jeff Garza - Original Message - From: Kwang Suh [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 23, 2002

  1   2   3   >