Re: generating random passwords for a db field

2000-11-07 Thread David Cummins
I think the issue is that he's hoping he can do it entirely in SQL, using random functions in SQL. I believe I had a similar problem, i.e. that SQL only generated the random number once, not once for each row. Perhaps optimisation gone awry? You could do it in any of the ways that were

Very Off Topic - But on in some respects.

2000-11-07 Thread Andrew Scott
First I must say that I come from the days when computers (home) could be programmed with as little as 3k of memory. Oh how the days change! Anyway along this way, I became a mega Amiga nut It seems this idea just will not die! Recently a friend of mine (another Amiga nut), showed me an

Re: Paranoid programming...

2000-11-07 Thread David Cummins
I would agree that you're in serious trouble if those three criteria are met. There are methods that are effective as long as: 1) No-one malicious has the aforementioned level of access. 2) No-one can snoop every packet between a valid user and the server. You could use a stored procedure

RE: clear session variable

2000-11-07 Thread Andrew Scott
StructDelete(session,"varname") -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 7 November 2000 1:16 PM To: CF-Talk Subject: clear session variable Does anyone know how to completely destroy a session variable when a page is called? So if I was to use a CFPARAM

CFLDAP and EXCHANGE

2000-11-07 Thread Eric Fickes
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C04881.9B4B1730 Content-Type: text/plain; charset="iso-8859-1" Hello all, anybody out there been successful using CFLDAP and

RE: Potential problems with FREE Server

2000-11-07 Thread Peter Alexandrou
You're on the wrong track here. The ISP will be using the freely available Cold Fusion Express server. I am not too sure if the Express version can be used commercially though. -Original Message- From: Warrick, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 7 November 2000 14:44

Re: generating random passwords for a db field

2000-11-07 Thread AustralianAccommodation.com Pty. Ltd.
i have a random password generating system on my website for when members join the cf code that achieves this is as follows i hope this is of some help cfset random_word = "" cfloop index="ii" from="1" to="4" cfset random_number = "#RandRange(1,25)#" cfset alphabet = "abcdefghijkmnopqrstuvwxyz"

CAB FILES

2000-11-07 Thread Stewart McGowan
Hello All, Are the cab files for the Form Java applets (grid and tree)available as a download that doesn't install them? And if so where? :) Thanks Stew Archives:

RE: Variables within string

2000-11-07 Thread Gordon Burns
At 18:03 06/11/00 - Steve Martin said cfoutput #Evaluate(DE(longstring))# /cfoutput Got it! It was the DE of course. Many thanks. Kind regards Gordon Archives:

RE: Potential problems with FREE Server

2000-11-07 Thread Andrew Scott
To be honest, I can't see why anyone would want to use express comercially. Sure it possible could be, but I don't think there would be enough functions to do anything decent. Correct me if I am wrong! -Original Message- From: Peter Alexandrou [mailto:[EMAIL PROTECTED]] Sent:

RE: about favico fusebox (?)

2000-11-07 Thread Juan Andres Alvarez Valenzuela
I thought the same... but it seems what IE search in subdirectories too. weird thing, don't you? ~Juandres - Original Message - From: Billy Cravens [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 06, 2000 8:01 PM Subject: Re: about favico fusebox (?) I

RE: Stored Queries in Access

2000-11-07 Thread Richard Brotherton Analyst Programmer IT CS
It makes very little difference, however we have taken to treating access queries like stored procedures and have fount that there is often a noticable performance gain. A query is defined which returns the data expected and that is then addressed as follows: cfstoredproc

Re: The Tack2 Example store

2000-11-07 Thread Dick Applebaum
Mike In my opinion (that's what you asked for) the same thing can be accomplished, better, with frames: +-++ | || |Products/| Shopping Cart| |

Re: IE4 not loading page correctly

2000-11-07 Thread Bert Dawson
I don't think its CF: Normally, i view the HTML source from the browser, and it looks fine: eg: !--- start of HTML source when it works --- base href="http://www.mycom.com/" HTML HEAD META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1" SCRIPT LANGUAGE="JavaScript" !-- hide

How to connect Postgres db to Cf????

2000-11-07 Thread Suhail Khaki
hi all I am trying to connect the Postgres Db to the coldfusion but am unable to do so. Plzzz help me by mentioning the steps i have to follow to establish the connection as there is no driver specified. Thanking in anticipation WIht regards Suhail

RE: Passing PWs via URL bar

2000-11-07 Thread Paul Johnston
Jake, I would suggest using javascript to encrypt the pw string if you HAVE to pass it through the URL string (I am assuming here that it has been inputted in a text field and it can't be passed any other way). If you are only going to store the variable and don't need to know what the string

RE: Passing PWs via URL bar

2000-11-07 Thread Steve Martin
"Passing it through the HTTP header as a form variable would be more secure at the very least." I wouldn't say so. If the value is passed either via URL or by form field the data is still plaintext and can be intercepted either way. Jake, I would suggest using javascript to encrypt the pw

RE: Passing PWs via URL bar

2000-11-07 Thread Paul Johnston
Okay. I use IE. It has something called "inline autocomplete" for web addresses. Lets say someone else uses my machine. They could type in "http://www." and get all the urls beginning with "www." and then put in "a" then "b" then "c" etc... and at some point they would be able to see a url

Re: CFLDAP and EXCHANGE

2000-11-07 Thread Eric Dawson
moderately successful. email me off list at [EMAIL PROTECTED] and I'll see if I can't help. Eric From: Eric Fickes [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CFLDAP and EXCHANGE Date: Tue, 7 Nov 2000 01:11:45 -0500 Hello all, anybody out there been

RE: Passing PWs via URL bar

2000-11-07 Thread Steve Martin
This is true, I forgot about those 'useful' aspects of modern browsers. On that note, I believe there are programatic methods to remove URLs from the browser's history using javascript. Steve. -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November

CFMAIL ERROR

2000-11-07 Thread AustralianAccommodation.com Pty. Ltd.
the following code works fine when there is only one record that meets the cfquery condition cfquery datasource="Australianaccomm" username="#username#" password="#password#" name="advert" select * from retail where activestatus= 'b' /cfquery CFMAIL QUERY="advert"

Re: CFLOCK - need help

2000-11-07 Thread Steve Nelson
I'd recommend not using the Full Checking in 4.5.1 it is very performance heavy. 4.01 didn't have the "scope" attribute, although 4.51 does have the "name" attribute. So if you wrote your locks in 4.01 syntax it would work in both. cflock name="#application.applicationname#" type="exclusive"

RE: Passing PWs via URL bar

2000-11-07 Thread Ryan
At 13:03 11/7/00 -, you wrote: This is true, I forgot about those 'useful' aspects of modern browsers. On that note, I believe there are programatic methods to remove URLs from the browser's history using javascript. Steve. I don't think you can do this for security reasons. They don't let

Apologies to group!

2000-11-07 Thread Jeff Fongemie
Hey everyone, I posted the same message 3 times yesterday. Sorry, but I thought something was wrong since the message would not appear. I guess it takes awhile. Jeff F Archives:

Hosting Question???

2000-11-07 Thread Auction Hard Drive
Where can I get the best bang for my buck in a Cold Fusion Host? Thanks, Rich Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Angél Stewart
Well..I was contracted to develop a website from scratch for a local company. I of course, decided to go with CF for the database interaction for the site. I had Hostpro.net in mind for hosting, but I just randomly threw in a couple others just for the heck of it. It so happens that the 'boss'

RE: Hosting Question???

2000-11-07 Thread Randy Adkins
I heard http://www.virtualscape.com is rated #1 by CFHUB -Original Message- From: Auction Hard Drive [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 9:35 AM To: CF-Talk Subject: Hosting Question??? Where can I get the best bang for my buck in a Cold Fusion Host? Thanks,

upgrading/reinstalling CF

2000-11-07 Thread .elizabeth.
(sorry if this message hits the list twice- i've been experiencing some email weirdness.) hello everyone- first off i'd like to say what a wonderful resource this list is! i am relatively new to coldfusion, and have learned a lot reading the posts here. thank you! now for the

Re: Is Cold Fusion a Typed Language?

2000-11-07 Thread Jon Hall
Here is an article that Allaire recently posted on their website that should answer all your questions. http://www.allaire.com/handlers/index.cfm?ID=14718Method=FullTitle=ColdFus ion%20Expressions%3A%20Operands%2C%20Operators%2C%20and%20Other%20Constructs Cache=False I guess ColdFusion would be

Re: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Jake Hileman - Patmos
www.e-zonemedia.com jake - Original Message - From: "Angél Stewart" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, November 07, 2000 9:40 AM Subject: CFXHosting, and message boards.I made a boo boo. Well..I was contracted to develop a website from scratch for a local

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Kevin Langevin
Is the single DSN a problem? You can cram all tables into on big, huge, gargantuan datasource, right? CFUG-SFL Manager -Kev /CFUG-SFL Manager -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 9:41 AM To: CF-Talk Subject: CFXHosting,

cf host..

2000-11-07 Thread Jake Hileman - Patmos
for the previous message, check www.superiorhosts.com for a cf host.. :-) jake - Original Message - From: "Angél Stewart" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, November 07, 2000 9:40 AM Subject: CFXHosting, and message boards.I made a boo boo. Well..I was

Poll two tables...

2000-11-07 Thread Peter Benoit
Not sure how'd I would go about doing this, so here's my question. I do a verity search, then query the verity results - match those results from a table in my DB, and present the final results. Problem is every once in a while some of the matched verity results may lay in another table. Any

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Kevin Langevin
Hey Angel...I have a solution for your forums problem. Tony Schreiber, one of the board members of my CFUG, has developed a fully-functional forums application, admin features, self-moderating, etc. which he is making available to the public for free, including source code. He's right now

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Russel Madere
Jeffry, To my knowledge, Cold Fusion is not a typed language in the way you were asking. It does, however, provide 3 types; simple variables, arrays and structures. If you can get back issues of the Cold Fusion Developers Journal, Ben Forta wrote an excellent discussion of this in the

RE: Hosting Question???

2000-11-07 Thread Carignan, Michael (NE)
I am also looking into hosting with VitualScape. Anyone else have any experience with them hosting Dedicated front and backend servers? Any issues with scalability or connection speeds to the site...etc.? How about their Oracle support, any issues? Thanks for your help, Mike -Original

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread mherbene
There was a brief reference to constants in that article, but nothing describing how constants are created. Anyone have further information on that topic? -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 9:48 AM To: CF-Talk Subject: Re: Is

RE: Hosting Question???

2000-11-07 Thread Auction Hard Drive
Someone just recommended www.webexpose.net Their basic account is 50mb with 4gb transfer, Cold Fusion, and MS Access support for $10.95 a month with free setup. Anyone out there have any experience with them? This sounds to good to be true. The full features are listed @:

Re: Hosting Question???

2000-11-07 Thread Shane Witbeck
My vote is for Virtualscape.com -- Original Message -- From: "AustralianAccommodation.com Pty. Ltd." [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 8 Nov 2000 00:51:59 +1000 CF Hub has voted www.intermedia.net as number 3 for the month of

RE: Encryption...

2000-11-07 Thread Steve Bernard
(I am assuming a typical IIS install. I realize that account names and site structures are variable.) EFS will only benefit you if you are hosting multiple sites and/or allow multiple developers on a single box. EFS uses the requesting users' credentials to determine whether to decrypt the file

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Angél Stewart
Hey that would be great !! :) Any restrictions on use? Because I'd like to use it on www.carigamer.com as well after that site is redesigned. Actually, both these sites are For Profit (eventually ;-) ). -Gel -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED]] More

RE: CFLDAP

2000-11-07 Thread Steve Bernard
I know nothing about Exchange but, are you sure that MS' LDAP interface doesnt' either require SSL or use NTLM credentials? Have you tried monitoring network traffic between the two to see what's going on? What does the documentation say? And post the error if possible. Steve -Original

RE: CFLDAP

2000-11-07 Thread Dave Watts
I have a problem with our NT 4.0 server, running service pack 4 and ColdFusion Server 4.5. I am unable to make any connections to our own LDAP server or any LDAP server available on the internet. Unfortunately the error message is...not helpful. All it can tell me is "CFLDAP Can't

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Anthony Geoghegan
In my experience CF is a typed language, but with virtually no type-checking. Almost all datatypes (except date/time types) are easily cross compatible. Without variable declaration it's very hard to type-check data. It's a bit lax and probably results in quite a few bugs. Java is much cooler.

RE: Poll two tables...

2000-11-07 Thread Anthony Geoghegan
Use a custom field to indicate which table the data is from. Regards, Anthony Geoghegan. Lead Developer, What's On Where (WOW!) http://www.wow.ie mailto:[EMAIL PROTECTED] -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: 07 November 2000 14:46 To: CF-Talk Subject:

RE: Potential problems with FREE Server

2000-11-07 Thread Warrick, Mark
OK licensing issues aside, I think what you are asking for is a comparison sheet of the features between CF Express and the pay for version CF Pro or Enteprise. I'm sure Allaire would be happy to provide that information if you call them and explain your situation. In the mean time though,

RE: CFLDAP and EXCHANGE

2000-11-07 Thread Mike Sullivan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Eric, The following works for exchange 5.5. Be sure that the mail admin has ldap enabled... Enjoy Mike cfparam NAME="attributes.empFirstName" DEFAULT="" cfparam NAME="attributes.empLastName" DEFAULT="" cfparam NAME="attributes.empDepartment"

RE: generating random passwords for a db field

2000-11-07 Thread Warrick, Mark
Amazing! We must have been reading each other's minds when we both individually wrote that random password code. (or perhaps this isn't you code?) Here's my version: !--- this script generates a random word 7 letters long plus 4 digits long --- cfset random_word = "" cfloop index="ii"

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Warrick, Mark
For the sake of us non-programmers could you explain what "typed language" means? ---mark -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net

RE: Poll two tables...

2000-11-07 Thread Steve Martin
Make use of the custom fields when you create your indexes. Custom1 could be used to store a reference to the table and custom2 to the primary key in said table. Check your docs for details on how to use these fields - it's pretty straightforward. Steve -Original Message- From: Peter

Re: Is Cold Fusion a Typed Language?

2000-11-07 Thread Jon Hall
ok...I will copy and paste from the same article. cfsnip In ColdFusion, constants and variables have implied data types. The reason for the term "implied" is that there are no variable declarations that define the scalar data type of a variable as one finds in statically typed languages such as

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Steve Martin
CF is basically untyped. When using variables or constants CF uses 'lazy evaluation' where the type of a particular var or const is evaluated at runtime, for example you can stick an integer value into a variable and then stick that variable into a dateformatting function and you will only get an

ranking a download count.

2000-11-07 Thread Emmet McGovern
Im not sure how to go about this. I'm writing a download count to a database so i can keep track of how many times each file is downloaded. However, i'd like to display the the files ranking in a top 100 sort of list only not in order from 1-100. How would i output their rank according to the

OT: East Bay, CA CF Developer

2000-11-07 Thread Adrian Cesana
Anyone interested in a CF Developer position in East Bay Area, CA please contact me off list for more information. Apologies for OT post. -Adrian Archives:

Re: fusebox

2000-11-07 Thread William J Wheatley
Wow what system are you using? Our Sites have over 1000 CFM files that do the balance of the application. Thats just one of our services, the others are getting there too. And i can tell you that we have a *unnoticeable* increase in load on the box or even lag on member boxes with people who

RE: Encryption...

2000-11-07 Thread Dave Watts
... Proper ACLs are the cornerstone of locking things down. It doesn't matter how much you encrypt, if the user has read access to the file then they will still be able to read it. I'd just like to second that, and thank you for pointing that out. People tend to focus on the wrong things

Re: CFLOCK - need help

2000-11-07 Thread Gene Kraybill
Many thanks to Dave and Steve! With that combined genius and further experimentation, I think I have a cross-version solution: I'll use NAME="#Session.SessionID#" with session variable locks, and NAME="#Application.ApplicationName#" with application variable locks. I discovered, strangely,

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Kevin Langevin
Well, as far as I know, TOny is putting no restrictions on the license, so long as his name and info is not altered and remains in all files that it's in when you get the code. Don't hold me to that, though, because he could change his mind. But he said he wants it to be freely useable. I'll

RE: CFLDAP

2000-11-07 Thread Eric Fickes
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C048DB.80F64CA0 Content-Type: text/plain; charset="iso-8859-1" I'm pretty sure the answer is no, but since I don't know for

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Kevin Langevin
Hey that would be great !! :) Any restrictions on use? Because I'd like to use it on www.carigamer.com as well after that site is redesigned. Actually, both these sites are For Profit (eventually ;-) ). -Gel Here's Tony's response... -Original Message- From: Tony Schreiber

html or plain text

2000-11-07 Thread Eric Fickes
testing my mail format. For some reason OL sends plain text to everyone else. This is only a test Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: clear session variable

2000-11-07 Thread Anuj Gakhar
simple. cfset temp = structclear(Session) _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com Archives:

RE: Potential problems with CF Express Server

2000-11-07 Thread Josh R
Yes. This is exactly what I'm talking about. They want to be cheap and use CF Express, and I of course don't want that. I need to convince these folks that CF Express is NOT the way to go for hosting a large ecommerce site. What good (realistic) reasons can I give them to go to the Pro

Load/Stress Testing

2000-11-07 Thread Evan Lavidor
Does anyone have any good suggestions for companies that do load/stress testing on sites? I'm not looking for programs a la Microsoft's tools, WebLoad, etc.; I'm actually looking for a company we can outsource to. Thanks for the advice. Evan -- -=-=-=-=-=-=-=-=-=- Evan Lavidor Circle.com

FileExists

2000-11-07 Thread Peter Benoit
Hi again, From a directory I want to check to see if a file exists in a sub directory. I do the following cfset tmpfile = "pdf/#filename#" or cfset tmpfile = "pdf\#filename#" then #FileExists(tmpfile)# gives me a NO every time, even tho the file does exist. Why? Thanks, Pete

RE: Blocking IPs

2000-11-07 Thread John McKown
Here you go Juandres: http://www.decfug.org/SampleCode/BlockIPs/ John McKown, VP Business Services - Delaware.Net, Inc. Founder, Delaware Cold Fusion Users Group 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432

Re: Drop down List

2000-11-07 Thread monika kon
I am sending the code again, CODE: html head titleUntitled Document/title meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /head cfquery name="getresult" datasource="Catalog" dbtype="ODBC" SELECT Distinct MnGrp, MnGrp_Desc, ProductType,

Re: fusebox

2000-11-07 Thread Karl Simanonok
Like I said: we've used Fusebox (you found proof), and having done so, discovered that any benefits it may have are marginal at best. That doesn't mean we're going to rewrite everything we've done in it! I've still got old Perl code running from before CF was born (and somebody might even ask

RE: session variable help

2000-11-07 Thread John McKown
Try this: CFCOOKIE NAME="cfid" EXPIRES="now" CFCOOKIE NAME="cftoken" EXPIRES="now" CFCOOKIE NAME="cfglobals" EXPIRES="now" John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq:

GetPosition from a list

2000-11-07 Thread Eric Fickes
Hello all, Got a list/token question. I've got a list that is made up of child and parent. I'm looping through this list, and I want to be able to get the position of each item in the list. I know that GetToken can be used to get a value from a list in a certain position, but I want to find

RE: Blocking IPs

2000-11-07 Thread John McKown
Enjoy: http://www.decfug.org/SampleCode/BlockIPs John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432 -Original Message- From: Juan

RE: SQL question help

2000-11-07 Thread Hayes, David
When you are having trouble with a dynamic sql statement, output the statement to the page to see what is actually being sent to the db. Try replacing tableB.email NOT IN ('#ValueList(getremovelist.email)#') with tableB.email NOT IN (#QuotedValueList(getremovelist.email)#)

RE: dynamic value

2000-11-07 Thread Hayes, David
I'm not clear what you are having trouble with: is it the total dollars or the total item count? -Original Message- From: Kathy Bergman [mailto:[EMAIL PROTECTED]] Sent: Monday, November 06, 2000 3:40 PM To: CF-Talk Subject: dynamic value I'm stumped and could sure use help! How can

I am looking for Cf hosting service!

2000-11-07 Thread Chen, Yung-Chih (CIT)
Hi I am looking for CF hosting service, can anyone suggestion some hosting serives? Thank you! YC Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Mixing ASP and CF on a server

2000-11-07 Thread Jacob Ezzell
Our company just purchased a small application that they want integrated into our exisiting CF driven site. The software runs on ASP and SQL. Obviously to do this properly, we would have to have ASP and CF running on the same server, (we only have one...) and either have a page with some CF for

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Chris Montgomery
You might try the open source version of CF Forums at http://www.forumspot.org. If you are running MS Access you can just "link" the forums database to your existing Access database and run it all under one datasource (I've done this on two sites). Just make sure that none of your existing

duplicate value, then set into variable

2000-11-07 Thread Eric Fickes
Hello all, Got a variable/list question. I have a variable that needs to a list seperated by commas. This list will contain only one word, child, and the listLen will depend on the len of another list. EG #ListLen(1stList)# = 4 I need to be able to say cfset variable =

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Jeremy Allen
Java is a typed language.. meaning when you declare a variable (C example follows) like this #include stdio.h int main() { int foo; double bigfoo; foo = "adfadsfafd"; foo = 32897489327489327432432; } That example is invalid because foo can only be of datatype integer so you cant assign

Re: How to connect Postgres db to Cf????

2000-11-07 Thread Peter Alexandrou
Depends on the platform you are developing upon. If the server resides on NT then you will need to get the PostgreSQL Windows ODBC driver which is freely available from www.postgresql.org. If you are on Unix/Linux then you won't need anything as the drivers are installed when you install

Re: Hosting Question???

2000-11-07 Thread AustralianAccommodation.com Pty. Ltd.
I do not wish to get into an argument with you over the virtues of intermedia however in contrast to your comments I find it interesting that www.cfhub.com voted it 3 our of top 5 best cf hosts for this month and it with rank 5th last month. ?? I welcome your comments - Original Message

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Nick McClure
In some languages such as C you have to define variables before you can use them, you must also define them with a particular type, i.e. integer, char, float, binary, etc In CF you do not have to declare simple data types, but you do have to declare complex objects such as structures and

PDF again..

2000-11-07 Thread Gordon Burns
Application is to upload word,rtf, and txt docs to the server. Would like to be able to convert these to PDF as soon as they are saved on the server. Nothing else, Is there a simple CFX available or a third party product at reasonable cost? Thanks Gordon

mailmerge witth sql server database

2000-11-07 Thread thanh nguyen
helllo everyone, I would like to know if someone has done mailmerge with sql server database, I have mailmerge word document and would like to retrieve the data from the sql server database. can i use cold fusion do the job, thanks

RE: Text File to Database Custom Tag.

2000-11-07 Thread Peter Theobald
It's Window-NT only :-( Does anyone know of a tag that will work for Linux? At 03:42 PM 11/6/00 -0800, Adrian Cesana wrote: Not sure if its too late but Nate W. wrote a custom tag for this, I believe it is named CSV_to_Query, Ive used it before and works well. Here is the link

Re: Text File to Database Custom Tag.

2000-11-07 Thread Peter Theobald
Unfortunately, when Excel saves to CSV or Tab Delimited format it only puts double-quotes around cells that have commas in them, and does NOT put quotes around cells without commas. This format breaks both BCP (for Sybase) and CFHTTP query. It's aggravating to me that Sybase and Allaire both

Login and Clustering

2000-11-07 Thread Sandra Clark
I am working on the architecture for my next site, which HAS to work in a Clustering (non sticky-sessioned) environment. I have figured out how to save complex data types (arrays, structures, queries) using WDDX and Client variables. However, the problem I am stuck on is how the heck to I know

Re: Potential problems with FREE Server

2000-11-07 Thread John Allred
Josh, According to the docs that ship with CF Express, you get 16 Cold Fusion tags. They list 47 that are not available. Also, don't attempt to use custom tags (hence, Fusebox). So you lose most of the power of CF end up being able to create pretty basic templates only. HTH, --John

Cached Query Reporting?

2000-11-07 Thread Kevin Miller
Is it possible to identify and list the current set of cached queries contained in memory on a particular server? We are experimenting with cached queries for the first time, and would like to do some analysis as to what is being cached. Thanks, Kevin

RE: fusebox

2000-11-07 Thread John Anderson
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C04907.19F047B0 Content-Type: text/plain; charset="iso-8859-1" I work for a large cf consulting shop. I have seen and worked

RE: East Bay, CA CF Developer

2000-11-07 Thread Robin Horwitz
Hi there- I'm in Palo Alto. Are you looking for someone who could do this on contract basis? Rob -Original Message- From: Adrian Cesana [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 8:43 AM To: CF-Talk Subject: OT: East Bay, CA CF Developer Anyone interested in a CF

SQL query to aggregate these?

2000-11-07 Thread Paul Sinclair
Simplified tbl Structure is like this: tblDoubles year ... name1 ... name1_Pts ... name2_Pts ... name2_Pts 1996 ... john ... 5 ... mary ... 10 1997 ... mary ... 3 ... john ... 9 1998 ... pete ... 6 ... joan ... 12 1999 ... joan ... 7 ... steven

RE: CFXHosting, and message boards.I made a boo boo.

2000-11-07 Thread Kevin Langevin
Umm...I've gotten a few postings multiple times from the list today. Anyone else experiencing this, or am I just "special"? :) CFUG-SFL Manager -Kev /CFUG-SFL Manager -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 12:01 PM To:

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Peter Theobald
A strongly typed language requires you to declare the data type of all variables ahead of time. All functions return values that are of a specific type. All operators act on values of specific data types. For example, assume you have a function nth( list, n) that returns the nth value of a

RE: CFLDAP and EXCHANGE

2000-11-07 Thread Eric Fickes
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C04908.6F0F6010 Content-Type: text/plain; charset="iso-8859-1" testing. My email seems to keep sending a funky format

HTML Question - Back button

2000-11-07 Thread Jamie Symonds
I'm not sure how to go about solving this - I follow a link from the page, and click the browser's "back" button to return to my page, and it lands me dead in the middle, nowhere near the link that I had followed, and my place is lost. I could place A NAME=""'s in the HTML, but most of the links

Re: strange CGI.REQUEST_METHOD problem

2000-11-07 Thread David Cummins
Don't know about that, but if its posted, you'll have FORM.FieldNames defined... David Cummins Jerry Tolentino wrote: I would like to access the CGI.REQUEST_METHOD variable to process where variables are coming from. When I look at the debug dump from Cold Fusion I see the values change

RE: html or plain text

2000-11-07 Thread Peter Alexandrou
Ensure you are using the latest service pack for CF 4.5.1 -Original Message- From: Eric Fickes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 8 November 2000 04:13 To: CF-Talk Subject: html or plain text testing my mail format. For some reason OL sends plain text to everyone

RE: html or plain text

2000-11-07 Thread Mike Sullivan
I think I speak for many when I say... no_html / ;-) Mike -Original Message- From: Eric Fickes [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 9:13 AM To: CF-Talk Subject: html or plain text testing my mail format. For some reason OL sends plain text to everyone

RE: Potential problems with CF Express Server

2000-11-07 Thread Peter Alexandrou
Well just give them the list of difference between Express and Pro... No CFMAIL alone rules CF Express out right away. -Original Message- From: Josh R [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 8 November 2000 04:30 To: CF-Talk Subject: RE: Potential problems with CF Express Server

RE: CFLDAP

2000-11-07 Thread Jaime Garza
In Exchange 5.5, go to site/configuration/protocols and click properties on LDAP. It will tell you how to connect, ports, etc. Of course it will let you specify your login mechanisms. Exchange will also let you override in a per-server basis if that server supports LDAP and how. Use

  1   2   >