RE: More OT Javascript: Dual Submit Buttons on One Form.

2001-11-14 Thread Craig Dudley
Gel, just change the input type to button as follows. input type=button value=delete onclick=javascript:document.Timeentry_billable.action='timeentry_deletechar geinfo. cfm';document.Timeentry_billable.submit(); class=buttons That should do the trick. Cheers, Craig. -Original

Re: (ot) Access, SQL Server and Replication

2001-11-14 Thread Richard Meredith-Hardy
no. You need only install the wddx com object available in the WDDX sdk to serialize the data. http://www.wddx.org and then send wddx packets via something like AspTear (also in wddx sdk) directly to a CF page on your web server. Of course it needs a little bit of programming in VBA.

csv file problem (help!?)

2001-11-14 Thread list peters
Hi, i have a csv file. Here is an example. (it is taken from messages stored on a phone). 1,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status ,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status here are the csv rules. 1. comma is

RE: csv file problem (help!?)

2001-11-14 Thread Philip Arnold - ASP
i have a csv file. Here is an example. (it is taken from messages stored on a phone). 1,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status ,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status here are the csv rules. 1. comma

Re: csv file problem (help!?)

2001-11-14 Thread list peters
Have you tried using the Text ODBC driver? It usually opens the files as normal CSVs and you don't have to worry about using CFFile (or CSX_ tags) as you can use it as a datasource hi, i have tried, but i couldnt figure out how to use it. it has to be all automatic, so i thought about using

RE: SQL INSERT

2001-11-14 Thread Bill Grover
One way I've dealt with this is to create 2 variables lcInsertList and lcInsertValues. Basically my code looks like: cfset lcInsertList = cfset lcInsertValues = cfif LEN(TRIM(form.Var1)) NEQ 0 cfset lcInsertList = lcInsertList FILENAME, cfset lcInsertValues = lcInsertValues '

RE: SQL INSERT

2001-11-14 Thread jm12345
Maybe you could defined defaults in the Database. That might help. So such luck. Since the form is defining the var to the cfparam ... default=0 is not taking effect. Guess i will just have to write the CFIF logic that Bryan was talking about. This sucks since i have about 30 inputs

RE: SQL INSERT

2001-11-14 Thread Sima Lee
Hi, Can you use a loop to do that? It will save lots of typing. Sima -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 13, 2001 7:19 PM To: CF-Talk Subject: RE: SQL INSERT So such luck. Since the form is defining the var to the cfparam ...

RE: Having major problems with session variables

2001-11-14 Thread Daye, Marianne
Just a shot in the dark, but are you by any chance using the Duplicate() function to copy complex session scoped variables to local variables? In CF 4.5 and earlier, the Duplicate() function can cause some really strange memory corruptions, and even reach outside the current session and

Re: csv file problem (help!?)

2001-11-14 Thread Stephen Moretti
Chad, i have a csv file. Here is an example. (it is taken from messages stored on a phone). 1,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status ,status,,[EMAIL PROTECTED],here is a messagemessage, 2001/10/16 (Tue) 19:34,status anyhelp would

RE: Having major problems with session variables

2001-11-14 Thread Chris Bohill
Not a whisper of the Duplicate() function in the application, but thanks for the help anyway. Chris. -Original Message- From: Daye, Marianne [mailto:[EMAIL PROTECTED]] Sent: 14 November 2001 13:05 To: CF-Talk Subject: RE: Having major problems with session variables Just a shot in the

RE: csv file problem (help!?)

2001-11-14 Thread Philip Arnold - ASP
Have you tried using the Text ODBC driver? It usually opens the files as normal CSVs and you don't have to worry about using CFFile (or CSX_ tags) as you can use it as a datasource Ewww.. Phil! You sick puppy! ;o) Hey, I like the CSV drivers for simple things - they make some things

Re: Opening file from link

2001-11-14 Thread phumes1
Hi, Yes...me again! I'm using the following code to open a file in UltraEdit. It's working except for the file path specified in the editor when the file gets opened. cfset FileName = ListLast(url.filename, \) cfset DirPath = Left(url.filename, Evaluate(Len(url.filename) - len(FileName) -

Val() vs. IsNumeric

2001-11-14 Thread Chris Norloff
I need to protect our database from user-inputted data in FORM URL variables. This involves retrofitting some code, too. The question is whether to use Val() or IsNumeric to prevent non-numeric characters from being inserted/updated to the database. I know this is an individual choice

Flash Kit problems

2001-11-14 Thread Robert Everland
Who do I talk to about having problems with the Flash Kit? Robert Everland III Dixon Ticonderoga ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Flash Kit problems

2001-11-14 Thread Chuck Hergenroeder
What problem are you having? -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 8:32 AM To: CF-Talk Subject: Flash Kit problems Who do I talk to about having problems with the Flash Kit? Robert Everland III Dixon Ticonderoga

Re: CFCookie and the old switcharoo - help!

2001-11-14 Thread Chris Norloff
I note that some of your cookies don't have expires times when they're being set. This makes them session cookies (also called non-persistent or per-session cookies) - these are stored in browser memory and are not written to the hard drive. So I would include closing ALL browser windows to

Re: Val() vs. IsNumeric

2001-11-14 Thread jm12345
The cfqueryparam Tag suits your needs here the best I would believe. Greetings. I need to protect our database from user-inputted data in FORM URL variables. This involves retrofitting some code, too. The question is whether to use Val() or IsNumeric to prevent non-numeric characters

Re: StructClear(session) again...

2001-11-14 Thread Chris Norloff
Using StructClear(session) clears out the entire session scope, including sessionID, CFID CFTOKEN - if this is what you want, great. It's important to use StructClear(session.structName) if you want to clear only a single structure in the session scope. Chris Norloff -- Original

RE: Flash Kit problems

2001-11-14 Thread Robert Everland
When I try to open the calendar app this is what I get, I get this in the sample application. Does the flashkit work well cross broswer? The reason I ask is because Netscapes were mutilating the way it looked. Well any help would be appreciated. Line:11 Char:2 Error: 'document.all.obj' is null

SQL - CFHTTP - SQL

2001-11-14 Thread Diana Nichols
I have a more complicated solution (VB progamming) - but am wondering if this CF solution will work. The scenario - I have a SQL table that needs to be replicated (changed data only) to a remote client's db every 5 minutes. (The data is credit applications.) At the same time, I need to check to

Studio exception error

2001-11-14 Thread davida51
Hi All - Background: I have a new lap top. Win 98 SE. I installed PWS, then ColdFusion Server 4.5.1.0. Then CF Studio 4.5. My mappings are C:INETPUB\WWWROOT\ and c:\Inetpub\wwwroot\ and c:\Inetpub\wwwroot\trialFolder\. I made a directory trialFolder in wwwroot and made a trial.htm and trial.cfm

Re: SQL - CFHTTP - SQL

2001-11-14 Thread jm12345
Hi, if I'm not mistaking then it is useless for the Server which has the SSL certificate installed to open a browser, so there is no need for your client to open a browser on their server. Perhaps the scheduler could be of assitance here. There shouldn't be any problems posting and getting

Custom Tags in CF5

2001-11-14 Thread Terry Troxel
I just installed CF5 on a Win2000 box with IIS and I have an application that uses a cftag from the developer's forum called CF_Autopopulate. It worked flawlessly in CF4 and will not work in CF5. Am I missing something in setup or something? Am I going to have these problems regarding tags?

Re: Custom Tags in CF5

2001-11-14 Thread Howie Hamlin
We upgraded to cf5 without a hitch. What do you mean by doesn't work? It would be helpful if you'd elaborate a bit. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail

Re: SQL - CFHTTP - SQL

2001-11-14 Thread Dick Applebaum
Diana Will the remote client allow you to place a program on their server? If do you can: initiate a scheduled task every 5 minutes on your server query your local database for changes (last 5 min) build the SQL commands data to update the remote DB optionally encrypt the data

CFAbort in 5.0

2001-11-14 Thread Jeff Beer
Is anyone else havving problems with CFAbort in CF 5.0? Pretty simple code - I have a custom tag that checks for required attributes. if the attribute is an empty string or is not present, a text message is shown then it hits a CFABORT tag: cfif (NOT IsDefined('attribute.color')) OR (NOT

CFAbort in 5.0

2001-11-14 Thread Jeff Beer
That's a typo - should be 'attributeS.color' - just banged out the previous message quickly, the typo isn't in the real code.. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

SQL 2000

2001-11-14 Thread Andy Ewings
Anyone here upgraded to SQL 2000 and found that when you try to release an SP that uses double quotes to build a string it complains, wheras it was fine in SQL 7? Is there a server or console setting that gets around this? --

RE: CFAbort in 5.0

2001-11-14 Thread Steven Dworman
I think you're supposed to use cfexit in custom tags. Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com phone: 248.647.8841 cell: 734.972.9676

RE: CFAbort in 5.0

2001-11-14 Thread Raymond Camden
No, you can use cfabort if you want to. It just depends on how you want to handle error conditions. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My

Re: Val() vs. IsNumeric

2001-11-14 Thread BILLY CRAVENS
What if you want to handle things gracefully without throwing exceptions? Use IsNumeric() - Val(123abc) will evaluate to 123, which you don't want - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 7:46 AM Subject: Re: Val() vs.

RE: CFAbort in 5.0

2001-11-14 Thread jm12345
Hi, cfexit only exits the customtag and passes control back to the calling template which is then processed. Generally speaking it might be better using cfthrow or cfrethrow to pass the error message back to the calling template and let it worry about the error. But that doesn't explain why

Table / pre problems.

2001-11-14 Thread Neil H.
I need to use pre tags to format HTML that is stored in a database. The only problem is that it is wider than my 100% width table, thus forcing my table to be big, fat, and ugly. Not the fat is ugly :) Anyway are there any suggestion on having my caking and eating it too? Thanks, Neil

CFID CFTOKEN

2001-11-14 Thread Ryan Edgar
I have two questions that are slightly related: 1) I have an application with lots of different user profiles. If I log in as one user, and a colleague logs in as another user and changes his CFID and CFTOKEN to be the same as mine (for testing purposes), he is instantly given full access to my

RE: Val() vs. IsNumeric

2001-11-14 Thread Philip Arnold - ASP
I need to protect our database from user-inputted data in FORM URL variables. This involves retrofitting some code, too. The question is whether to use Val() or IsNumeric to prevent non-numeric characters from being inserted/updated to the database. I know this is an individual choice

RE: CFID CFTOKEN

2001-11-14 Thread Dave Watts
1) I have an application with lots of different user profiles. If I log in as one user, and a colleague logs in as another user and changes his CFID and CFTOKEN to be the same as mine (for testing purposes), he is instantly given full access to my session. Is there any way I can stop this

binary stream (image) output to the browser

2001-11-14 Thread Franke, Ir. G.J.
Hello there... does anyone know if it is possible to write an image stored in a variable, directly to the browser without writing it to the HDD first? cfif server.os.name eq Windows NT cfobject type=COM action=Create class=top10.genmap name=Bitmapper cfset picture =

RE: binary stream (image) output to the browser

2001-11-14 Thread Carlisle, Eric
I'd like to know this as well. I've tried a few approaches using CFContent, but always had to write the file to the disk. EC -Original Message- From: Franke, Ir. G.J. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 10:53 AM To: CF-Talk Subject: binary stream

RE: CFAbort in 5.0

2001-11-14 Thread Jeff Beer
Good suggestion - I'll give that a try today. Thanks to all who replied - I'll look into this further and let you all know if I find anything substantial or if it's an error I introduced and haven't found yet :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

RE: binary stream (image) output to the browser

2001-11-14 Thread Sicular, Alexander
not possible. i had many a long talk with many people at devcon about this very issue. unfortunately cf's binary handling is not the best. i use php on linux to do all my image/binary stuff. to use cf, you need to write to the hd. also uploading images to the db is done in base64, you need to

RE: binary stream (image) output to the browser

2001-11-14 Thread Franke, Ir. G.J.
Thanx! perhaps an new feature for CF 6 or Neo? cheers, Jappe -Original Message- From: Sicular, Alexander [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 17:02 To: CF-Talk Subject: RE: binary stream (image) output to the browser not possible. i had many a long talk

Re: CFID CFTOKEN

2001-11-14 Thread tom muck
You can put some code in your Application.cfm to automatically log out a user if they close a browser: cflock scope = Session timeout = 30 type = readonly CFCOOKIE NAME=CFID VALUE=#SESSION.CFID# CFCOOKIE NAME=CFTOKEN VALUE=#SESSION.CFTOKEN# /cflock tom www.basic-ultradev.com 2)

ODBC error

2001-11-14 Thread David Brown
The below is an output of what is in the query. INSERT INTO tbl_user_profiles (username,password,FirstName,LastName,Email,Phone,CreateDate) Values ('dbrown','karen1','David','Brown','[EMAIL PROTECTED]','803- 434-4703',{ts '2001-11-14 10:55:47'}) Below is the error I get. Any idea?

Re: CFID CFTOKEN

2001-11-14 Thread Stephen Moretti
Ryan, I have two questions that are slightly related: 1) I have an application with lots of different user profiles. If I log in as one user, and a colleague logs in as another user and changes his CFID and CFTOKEN to be the same as mine (for testing purposes), he is instantly given full

Re: CFID CFTOKEN

2001-11-14 Thread Douglas L. Brown
It really is not much of a security issue, with CF using both the CFTOKEN CFID it would be a far fetched occurence that someone can guess the right sequence of numbers to use. If it were possible then all these e-commerce sites would be in dire jeopardy. DB - Original Message - From:

OT Browser time zone detection?

2001-11-14 Thread Kevin Gilchrist
Hi, I was wondering if anyone know how I can detect what time zone a browser client is in? I'd like to return times from a query in the client's own time zone... I didn't find any cgi variables that would help. I guess it would some embedded JavaScript in the page and would send that back to

RE: CFID CFTOKEN

2001-11-14 Thread Rich Wild
I seem to remember that there is a way of forcing CF to create the CFID (or was it CFTOKEN) as a UUID.. that should stop people guessing... or at the very least make it harder. -Original Message- From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] Sent: 14 November 2001 16:27 To:

RE: CFID CFTOKEN

2001-11-14 Thread Dave Wilson
Hi Ryan, All you need do is run a few lines of code at the top of each page (or even in the application.cfm) to check and see if the cfid and cftoken values passed via the url are in fact the same as the session.cfid and session.cftoken variables. If different, then relocate to a logout script.

RE: ODBC error

2001-11-14 Thread Pascal Peters
Im I correct in thinking this SQL Is in a variable? cfquery ... #PreserveSingleQuotes(myvar)# /cfquery Pascal -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: woensdag 14 november 2001 17:17 To: CF-Talk Subject: ODBC error The below is an output of what is in the

Verity k2 server problem

2001-11-14 Thread Matthew Fusfield
I've setup Verity k2 server packaged with cf5 and created a collection using the mkvdk utility that comes with it. I believe K2 is setup correctly as I see the collection I created under Server Managed Collections in the ColdFusion administrator, but when I attempt to index data, I get a

Re: ODBC error

2001-11-14 Thread David Brown
Yes, the SQL is in variables. That is why I had it output the SQL statement at the top. To make sure I was sending the write string. Here is the CFquery line. This code has worked in the past. !--- Int Fields with default --- cfparam name=FieldNameValue default= cfparam name=ColumnNames

RE: binary stream (image) output to the browser

2001-11-14 Thread Sicular, Alexander
All these problems will go away with neo... Because java does not share cf's weaknesses. Needless to say java's support of binary objects is far greater then cf's. Btw, my cf and php applications work quite nicely together. Alexander Sicular Chief Technology Architect Neurological Institute of

Re: ODBC error

2001-11-14 Thread David Brown
cfquery ... #PreserveSingleQuotes(myvar)# /cfquery that fixed it thanks. - Original Message - From: David Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 11:46 AM Subject: Re: ODBC error Yes, the SQL is in variables. That is why I had

RE: binary stream (image) output to the browser

2001-11-14 Thread Rich Wild
All these problems will go away with neo... Because java does not share cf's weaknesses. Hmmm, neo will *still* be cfml, even if it is java based. Therefore it doesn't necessarily follow that binary output problems will disappear in the next release. -Original Message- From:

RE: Verity k2 server problem

2001-11-14 Thread Garza, Jeff
Actually, I just gave a presentation about this last night. What you'll need to do is create your collection using the standard ColdFusion Admin panel. Index your documents using the Administrative Control panel. Then add the Collection to your k2Server.ini file using an alias (So if you name

RE: binary stream (image) output to the browser

2001-11-14 Thread jm12345
It seems to me that after reading through the neo white paper that ColdFusion itself will be a J2EE app deployed in any Complient J2EE app server, therefore all your coldFusion code will be parsed by this J2EE app called ColdFusion, and underneath is Java, and therefore this problem will be gone.

Re: OT Browser time zone detection?

2001-11-14 Thread Jacob
Use the systemclock function. At 11:22 AM 11/14/2001 -0500, you wrote: Hi, I was wondering if anyone know how I can detect what time zone a browser client is in? I'd like to return times from a query in the client's own time zone... I didn't find any cgi variables that would help. I guess it

RE: binary stream (image) output to the browser

2001-11-14 Thread Rich Wild
It seems to me that after reading through the neo white paper that ColdFusion itself will be a J2EE app deployed in any Complient J2EE app server, No, they're currently only talking about compatibility specifically with IBM WebSphere, BEA WebLogic, and Macromedia JRun. and underneath is

QofQ question...

2001-11-14 Thread Tyler Silcox
Can you concatenate fields in a query of queries select statement? cfquery name=makeFriendly dbtype=query SELECT Name + ' ' + Email + '' AS Friendly FROM getEmails /cfquery ..it's only returning the Name and not Name [EMAIL PROTECTED] in the Friendly column. I know I should (and I am

RE: Verity k2 server problem

2001-11-14 Thread Matthew Fusfield
Jeff, Thanks - can I assume the following then? K2 server is only used for searching, not for indexing? (all indexing must be done against the vdk mode collection?) K2 server can only search files and not the results of a database query? (ie, cfindex type=custom?) Thanks, Matt -Original

RE: QofQ question...

2001-11-14 Thread Mike Townend
Are you sure that its only returning name as if you are looking at it in your browser the browser will think that the section is a tag... Ensure that you wrap the output with HTMLEditFormat Ie cfoutput #HTMLEditFormat(makeFriendly.Friendly)# /cfoutput HTH -Original Message-

RE: binary stream (image) output to the browser

2001-11-14 Thread jm12345
It seems to me that after reading through the neo white paper that ColdFusion itself will be a J2EE app deployed in any Complient J2EE app server, No, they're currently only talking about compatibility specifically with IBM WebSphere, BEA WebLogic, and Macromedia JRun. Those are the

Fax into database

2001-11-14 Thread Tracy Bost
I may be trying to reach too far here, but I'm wondering if anyone has attempted to parse a fax to a pc insert into database as to eliminate all the data entry, or if even i its possible. If anyone has any ideas,suggestions, please let me know.

RE: Fax into database

2001-11-14 Thread Ben Forta
Tracy, Actually, I did this a while back, using OCR software. I used TeleForm from Cardiff Software (www.cardiff.com) - you need a PC with a fax card, faxes arrive, it processes them, and then can dump the data into a database (via ODBC). I had it dump the data into a SQL Server table, and then

Re: More OT Javascript: Dual Submit Buttons on One Form.

2001-11-14 Thread Craig
Make sure EVERY submit button has a name and that name is NOT submit. See if that helps. I am assuming you have a delete button like the code you showed me, but also a SAVE button that may not be named. -Craig - Original Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk

Re: Using CFDirectory to Search html files

2001-11-14 Thread Jim McAtee
CFDIRECTORY can only give you a file listing, along with some additional file information such as size and date last modified. You'd need to read each of those html files using CFFILE and build a query of your own, placing the file contents into rows of the table. You could cache this query, I

Re: Fax into database

2001-11-14 Thread Bryan Stevenson
There are ways of doing this, but the OCR software would have to be damn good. The fax is turned into a TIFF image (special multi page fax TIFF) which can then be OCR'd...parsed...and inserted into the DB. The downside of course is that the OCR may not work right which could cause your parsing

Session and Client Variables

2001-11-14 Thread John Barleycorn
Hi Folks, i'm prepping for the cf exam and i'm lacking a good understanding of the difference between client and session variables. It seems that they both are capable of doing the same thing. When and why should/would i use one or the other? What apps have you used client vars for and not

Search from a database

2001-11-14 Thread Steven Lancaster
Without using Verity what is the best way to set up a search for keywords That I have setup in a database. I have tried several different things and nothing seems to be working. I am doing a query against the database and everything works fine except if there is more than one keyword it only sees

Re: Fax into database

2001-11-14 Thread Dave Hannum
Just the logical thought process here is this. A fax is actually an image, so you'd need OCR software in the loop. You'd need to read the fax with the OCR, then save the output from the OCR as a text file. You could then read the text file and save the info into the database with CF. Your

Re: QofQ question...

2001-11-14 Thread Tyler Silcox
Duh. From now on, call me Captain Obvious. Thanks Mike- Tyler Silcox email | [EMAIL PROTECTED] website | www.gslsolutions.com - Original Message - From: Mike Townend [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 12:36 PM Subject: RE: QofQ

Using CFDirectory to Search html files

2001-11-14 Thread Jason Larson
I was wondering if some of you can give me a hand. I have a directory full of html files that are produced by a cgi script. I want to be able to search the html files without using a verity search. Is it possible to query the contents of the html files using cfdirectory then search that query

Installing/Administering CF from a remote computer

2001-11-14 Thread Dick Applebaum
This may be dumb... I have only installed CF on a local machine for testing. Most of my clients outsource their hosting to sites that already have the OS, CF App server, Web server, db server, etc. already installed/ here's the question Assuming that the client already has the OS, Web

CF and Authentication

2001-11-14 Thread Tangorre, Michael T.
Hello Everyone. I have a question (might be a conglomerate of a few). I am working on an application here at school (Alfred University) and need to authenticate users off of our NT domain. Our Network admin tells me that the NT list is not separated, but could be separated into the following

Re: Search from a database

2001-11-14 Thread jm12345
Hi, try using the IN keyword and pass a comma seperated listsee below. It should work if this is what you want. Without using Verity what is the best way to set up a search for keywords That I have setup in a database. I have tried several different things and nothing seems to be working.

RE: Installing/Administering CF from a remote computer

2001-11-14 Thread Steven Lancaster
I do that now!. I can access the administration site from an computer in the world. I just setup an alias and put that into IIS and then setup the permissions on the website to validate my username and password on the domain and once that is the login screen comes up for CF administration. For

Re: Session and Client Variables

2001-11-14 Thread Gyrus
Hi Folks, i'm prepping for the cf exam and i'm lacking a good understanding of the difference between client and session variables. It seems that they both are capable of doing the same thing. When and why should/would i use one or the other? What apps have you used client vars for and not

Re: Installing/Administering CF from a remote computer

2001-11-14 Thread Jim McAtee
Adminstration is no problem through the CF Administrator. Ideally, you'd have a bit more control over the machine, for instance the ability to trim CF logs, have access to the CF mail spool, perhaps access to the system event logs. For the installation, it can be done, but you may want a set of

Re: CF and Authentication

2001-11-14 Thread Howie Hamlin
Proceed directly to the Intranet/Hosting Toolkit download page...do not pass go, do not collect $200... http://www.intrafoundation.com/ihtk.html HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) -

CGLOBAL CDATA-SQL

2001-11-14 Thread Christian Watt
Does anyone know what pages process the CDATA and CGLOBAL queries when you have these values stored in a DB. None of the select statments have NOLOCK's on them after sending out around 450,000 email this week, those tables are invoking an awful lot of lock:aquires and lock:release on my SQL

RE: CF and Authentication

2001-11-14 Thread Steven Lancaster
Howie that toolkit is really Cool. Do you have other little things like that could on my way? Steven Lancaster WebMaster Core Laboratories 6316 Windfern Houston, TX 77040 713-328-2532 (Office) 713-328-2150 (Fax) 832-259-3010 (Cell) mailto:[EMAIL PROTECTED] http://www.corelab.com

RE: Session and Client Variables

2001-11-14 Thread Mike Townend
AFAIK Sessions are for one server only so if you have cluster servers a different server cannot access the session details of another server... However with Client variables (turned off the default location of the registry to a database such as SQL Server) you can store these in a central

RE: CF and Authentication

2001-11-14 Thread Tangorre, Michael T.
Thanks Howie. I will bookmark that page and look into a variety of options. I am new to this security stuff. Mike -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 1:33 PM To: CF-Talk Subject: Re: CF and Authentication Proceed

RE: CF and Authentication

2001-11-14 Thread Tangorre, Michael T.
Do you see the download link for the toolkit..is it right in fornt of me?? I don't see it. -Original Message- From: Steven Lancaster [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 1:35 PM To: CF-Talk Subject: RE: CF and Authentication Howie that toolkit is really

dbtype=dynamic and mysql

2001-11-14 Thread Erik Retz
Hello, Anyone know the correct syntax for setting the connectstring to create a dynamic db connection for MySql? I found info on access, MsSql and Oracle, but no MySql. I'm trying to do some testing on a remote box that I don't have cfadmin privileges on. Thanks. -Erik

RE: CGLOBAL CDATA-SQL

2001-11-14 Thread Mike Townend
AFIAK all pages will access CDATA and CGLOBAL as these are the client varibles data tables... So if you have client variables turned on and the datasource going to that database then all page requests will update them... HTH Mike -Original Message- From: Christian Watt [mailto:[EMAIL

RE: CF and Authentication

2001-11-14 Thread Tangorre, Michael T.
Found it. :-) it was right in fornt of my little face. Mike -Original Message- From: Steven Lancaster [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 1:35 PM To: CF-Talk Subject: RE: CF and Authentication Howie that toolkit is really Cool. Do you have other little

RE: CF and Authentication

2001-11-14 Thread Steven Lancaster
TOP Right it says FULL DOWNLOAD (3.596 MB) right under the Powered by Cold Fusion symbol in the top yellow. Steven Lancaster WebMaster Core Laboratories 6316 Windfern Houston, TX 77040 713-328-2532 (Office) 713-328-2150 (Fax) 832-259-3010 (Cell) mailto:[EMAIL PROTECTED]

RE: Verity k2 server problem

2001-11-14 Thread Garza, Jeff
Yes and No... See Inline: Jeff, Thanks - can I assume the following then? K2 server is only used for searching, not for indexing? (all indexing must be done against the vdk mode collection?) Yes, this is the currently the way it works. Index and Create with VDK, search with K2. (Note: The

RE: CF and Authentication

2001-11-14 Thread Clint Tredway
top right corner... -- Original Message -- from: Tangorre, Michael T. [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Wed, 14 Nov 2001 13:40:23 -0500 Do you see the download link for the toolkit..is it right in fornt of me?? I don't see it.

RE: Using CFDirectory to Search html files

2001-11-14 Thread Garza, Jeff
If you are using CF 5.0, why not use the Verity Site Spider? We just got it up and running on our site and it absoultely rocks. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Jason Larson

RE: Installing/Administering CF from a remote computer

2001-11-14 Thread Dick Applebaum
Steve TIA for the help! This is a potential client who is buying a CF App and needs to install CF to run it. The client runs IIS 5 and win98... elsewhere on the intranet are Oracle, Access etc. I have never installed/administered IIS (tried once got lost in all the pre co-requsite

Re: CF and Authentication

2001-11-14 Thread Howie Hamlin
First, it is really cool and you can thank Lewis Sellers for it. The only other CF-related authentication I know of is iAuth which is one of our commercial products. Basically, it allows you to do web server authentication with cf templates. We have one version for IIS and one for WebSite.

RE: CGLOBAL CDATA-SQL

2001-11-14 Thread Christian Watt
Yes, I realize that, that is why I see a performance hit, what I want to know is what CF Server page is called to invoke the query so that I can update it and include no locks on them. -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001

RE: CF and Authentication

2001-11-14 Thread Lee Fuller
Some of the tools are not complete.. But it is a great start! The author isn't too interested (it would seem) to fixup what's there. But if you're a C programmer, you can fix the stuff yourself. Just my .02.. Still love the tools tho! Lee Proceed directly to the Intranet/Hosting

RE: SQL - CFHTTP - SQL

2001-11-14 Thread Diana Nichols
Thanks for the explanation, Dick. This is the direction I was goingguess I was mostly looking for a clue as to how complicated it was going to get before I invested hours and hours. Your explanation seems pretty straightforward. You've helped much! Thanks! D Diana

Oracle Stored Procs and CF 4.5 / 5

2001-11-14 Thread Dave Carabetta
I was wondering if I could get some clarification concerning Oracle stored procs and CF 4.5 and 5. First of all, the way the 4.5 documentation reads, it seems as if you need to be using native drivers to use stored procs. After playing around with the ODBC drivers (CF 4.5/Unix) and seeing

Re: Fax into database

2001-11-14 Thread Tracy Bost
Thanks, I'll give Cardiff a call. Ben Forta wrote: Tracy, Actually, I did this a while back, using OCR software. I used TeleForm from Cardiff Software (www.cardiff.com) - you need a PC with a fax card, faxes arrive, it processes them, and then can dump the data into a database (via

REQUEST_URI on Unix

2001-11-14 Thread Zac Belado
I'm having an odd problem under a Unix based Apache server. According to the CF Debug output the value for REQUEST_URI is a full path (/dev/ca/viewContent.cfm/group/3). But when I assign request_uri to a variable it appears in the CF page as just /group/3. Anyone seen this before and if so is

  1   2   >