OT:Looking for a good SQL mailing list

2002-10-30 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi, I am having some trouble with an SQL statement I'm trying to write and I

RE: Looking for a good SQL mailing list

2002-10-30 Thread Robertson-Ravo, Neil (REC)
whats your problem? -Original Message- From: Adams, Stephen [mailto:sadams;westminster.gov.uk] Sent: 30 October 2002 09:45 To: CF-Talk Subject: OT:Looking for a good SQL mailing list ** WESTMINSTER CITY COUNCIL Please

Re: OT:Looking for a good SQL mailing list

2002-10-30 Thread Paul Hastings
want to know if there are any good mailing lists out there for SQL, that are as good as CFTalk is for ColdFusion. by all means post here BUT if you're using sql server get on the list: http://www.SSWUG.org --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system

RE: OT:Yahoo moving to PHP

2002-10-30 Thread Jeffry Houser
Look at the CreateObject function to create an instance of an object in CFScript. Other than that, I don't see how one syntax could get old while the other version doesn't. At 11:11 PM 10/29/2002 -0500, you wrote: It isn't ugly, but it can be a pain. I would like to see CF be able to be

Re: Yahoo moving to PHP

2002-10-30 Thread Stephen Moretti
Haven't looked at it myself, but my business partner tells me that PHP4 is looking pretty good these days. He thinks that maybe the developers have learnt some lessons about how the various tags and functions look and feel from CF, as its much more friendly and requires less of a propeller head

RE: cfc error help

2002-10-30 Thread Adrian Lynch
I've only starting writing cfcs myself, but I've noticed that I sometimes needed to refresh the WbService in Administrator or restart CF to get it to work. Try that if you feel your code is correct. Ade -Original Message- From: Tony Weeg [mailto:tony;navtrak.net] Sent: 30 October 2002

Converting HTML to images (JPG/GIF)

2002-10-30 Thread Adam Reynolds
Anybody done this? Is there a sexy tag out there that lets me do this? Adam ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

MySQL for Windows and CF

2002-10-30 Thread FlashGuy
Hi, I was using Acess but have now installed mySQL for Windows. I'm a little confused on how to create a database. With Access its a snap but there are no tools for me to create the databases? I need help! --- Colonel Nathan R. Jessop

RE: MySQL for Windows and CF

2002-10-30 Thread Robertson-Ravo, Neil (REC)
-Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: 30 October 2002 12:28 To: CF-Talk Subject: MySQL for Windows and CF Hi, I was using Acess but have now installed mySQL for Windows. I'm a little confused on how to create a database. With Access its a snap but there are

Re: MySQL for Windows and CF

2002-10-30 Thread SMR
mysql.com has tons of tools out there... dbtools is what I use and its freeware.. great tool. http://www.dbtools.com.br/ - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 7:27 AM Subject: MySQL for Windows and CF Hi,

Re: MySQL for Windows and CF

2002-10-30 Thread FlashGuy
Cool! THanks On Wed, 30 Oct 2002 07:44:05 -0500, SMR wrote: mysql.com has tons of tools out there... dbtools is what I use and its freeware.. great tool. http://www.dbtools.com.br/ - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Run code once and only once at inital login...WTF!

2002-10-30 Thread FlashGuy
I have this line in my application.cfm file. cfparam name=session.InitialCodeRun default=FALSE Then in my index.cfm (which can get reloaded multiple times during a session) reads from a database and does some stuff based on the session.initialCodeRun. Here is my code: cfif

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread Everett, Al
That's because while the field is *empty* it is still *defined* You want something like this: cfif isDefined(GetEnv.strField1) AND Len(Trim(GetEnv.strField1)) GT 0 Or, if it's supposed to be a particular value: cfif isDefined(GetEnv.strField1) AND GetEnv.strField1)) EQ aParticularValue

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread Robertson-Ravo, Neil (REC)
a few things : why are you setting it to be FALSE the checking if its 0? pick a boolean method and stick to it :-) You do not need to check the value of a boolean like this cfif X = TRUE but default, cfif X is the same and will always equate to True/False (I personally use 0s 1s) Also, are

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread FlashGuy
On Wed, 30 Oct 2002 13:26:32 -, Robertson-Ravo, Neil (REC) wrote: a few things : why are you setting it to be FALSE the checking if its 0? pick a boolean method and stick to it :-) You do not need to check the value of a boolean like this cfif X = TRUE but default, cfif X is the

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread Everett, Al
Oh no...should I be putting cflocks around *ALL* the cfquery(s) I have in my app? No, only if you're reading/writing to/from SESSION/APPLICATION/SERVER variables. ~| Archives:

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread FlashGuy
Thanks alot. That did the trick. I appreciate all the help guys! On Wed, 30 Oct 2002 08:26:44 -0500, Everett, Al wrote: That's because while the field is *empty* it is still *defined* You want something like this: cfif isDefined(GetEnv.strField1) AND Len(Trim(GetEnv.strField1)) GT 0

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread Robertson-Ravo, Neil (REC)
only around shared scope variables such as session, application and server -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: 30 October 2002 13:32 To: CF-Talk Subject: RE: Run code once and only once at inital login...WTF! On Wed, 30 Oct 2002 13:26:32 -,

Re: Run code once and only once at inital login...WTF!

2002-10-30 Thread Jesse Houwing
FlashGuy wrote: On Wed, 30 Oct 2002 13:26:32 -, Robertson-Ravo, Neil (REC) wrote: a few things : why are you setting it to be FALSE the checking if its 0? pick a boolean method and stick to it :-) You do not need to check the value of a boolean like this cfif X = TRUE but default,

RE: Run code once and only once at inital login...WTF!

2002-10-30 Thread Clint Tredway
You need cflocks around your session vars... -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: Wednesday, October 30, 2002 7:32 AM To: CF-Talk Subject: RE: Run code once and only once at inital login...WTF! On Wed, 30 Oct 2002 13:26:32 -, Robertson-Ravo, Neil

RE: MySQL for Windows and CF

2002-10-30 Thread Jochem van Dieten
I was using Acess but have now installed mySQL for Windows. I'm a little confused on how to create a database. With Access its a snap but there are no tools for me to create the databases? How about: http://www.mysql.com/doc/en/Connecting-disconnecting.html

RE: MySQL for Windows and CF

2002-10-30 Thread Luis Lebron
You may want to try phpmyadmin http://www.phpwizard.net/projects/phpMyAdmin/ for a web based tool or you can download mysql front at http://mysqlfront.venturemedia.de/index.php?s=9503bf12672368f1fd43045383a767 13act=STf=2t=328. Also there are tools listed at www.mysql.org. Look in the downloads

problems with cfgraph

2002-10-30 Thread Uwe Degenhardt
Hi list, I have problems with cfgraph. Nothing gets viewed. The page runs forever. On a development engine, everything works fine. I have Win2000,IIS5,CF5 and URLScan installed. Ideas what to do ? Uwe ~| Archives:

capturing a query

2002-10-30 Thread bajaria aslam
Hi List. When you have the debugging on, you can see that it shows the sql generated also. You may have #variableName# in the cfquery template, but finally when all the variables get resolved, you have a query that is sent to the database. That query can be seen when the debugging is on on the

Re: cfc error help

2002-10-30 Thread Raymond Camden
This is necessary when using the CFC as a web service. In general, I tend to do my dev work using the CFC _just_ as a CFC until I'm(pretty) sure it's ready. -Raymond - Original Message - From: Adrian Lynch [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002

Re: capturing a query

2002-10-30 Thread Tim Painter
I've created the query as a variable and use the variable inside the cfquery: cfset sql = Select * from sometable where foo = '#form.bar#' Generated sql: #sql# cfquery name=foo datasource=bar #PreserveSingleQuotes(sql)# /cfquery HTH, Tim P. - Original Message - From: bajaria aslam

RE: cfc error help

2002-10-30 Thread Tony Weeg
ray... can you elaborate on this CFC _just_ as a CFC until I'm(pretty) sure it's ready. do you mean, run it as I would a cfm page? test the code/flow/logic? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: MX Installation: Client Variables Not Changing (Part 2!)

2002-10-30 Thread Robert Everland
Well if you're using CFMX, and you're on one server, why not change it to session variables. You don't need any locking now, please correct me if I am wrong. So you could just do a massive search and replace on your code. I have seen far too many people have issues with client variables. Robert

CF4.5/5 cfqueryparam differences

2002-10-30 Thread Everett, Al
I'm working with a mixture CF 4.5.1SP2 and CF5 servers pointint to an Oracle 8i database. I'm currently in the process of migrating completely to CF5, but in the meantime I need to ensure that all my code is the same and works the same in both environments. I'm finding an issue with how 4.5 and 5

Re: cfc error help

2002-10-30 Thread Raymond Camden
When you do something like foo = createObject(component,foo) or use cfinvoke component=, you are using the CFC as a CFC. If you were to use cfinvoke webservice = or cfhttp, you would be calling the CFC as a web service. In that case, the cached version is used. Another option would be to

RE: cfc error help

2002-10-30 Thread Tony Weeg
ok cool...ill try that. ..tony Live from rainy maryland :) have a good one ray! Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Raymond Camden

RE: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Mike Townend
Try using CF_SQL_TIMESTAMP as the type for dates... That's what I use and have no issues... HTH -Original Message- From: Everett, Al [mailto:AEverett;askallied.com] Sent: Wednesday, October 30, 2002 14:30 To: CF-Talk Subject: CF4.5/5 cfqueryparam differences I'm working with a

Re: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Jochem van Dieten
Quoting Everett, Al [EMAIL PROTECTED]: I'm finding an issue with how 4.5 and 5 treat DATE columns using CFQUERYPARAM. I have the following (snippet) in one of my queries: AND AUTHORIZATION_EMAIL_NEXT_DATE cfqueryparam cfsqltype=CF_SQL_DATE value=#CreateODBCDate(10/31/2002)#

RE: cfc error help

2002-10-30 Thread Adrian Lynch
I sometimes found that refreshing the WebService didn't always work, maybe it was my code, I had to restart to get the thing to work. Ade -Original Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: 30 October 2002 14:35 To: CF-Talk Subject: Re: cfc error help When

RE: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Everett, Al
I tried that. (Re-read my message.) -Original Message- From: Mike Townend [mailto:mike;cfnews.co.uk] Sent: Wednesday, October 30, 2002 9:34 AM To: CF-Talk Subject: RE: CF4.5/5 cfqueryparam differences Try using CF_SQL_TIMESTAMP as the type for dates... That's what I use and

RE: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Everett, Al
In CF 4.5 I don't have a problem if I use value=-mm-dd But it may be a driver issue, YMMV. I suspect you're right, but I'll try that format just in case. ~| Archives:

RE: problems with cfgraph

2002-10-30 Thread Jeff Beer
There's an issue with CFGRAPH in 5.0 - if you pass values with 0 the java something or other will start looping and spin out of control, sucking up memory and processor until the box blows up. There's a simple hot fix at macromedia.. -Original Message- From: Uwe Degenhardt

RE: problems with cfgraph

2002-10-30 Thread Jeff Beer
There's an issue with CFGRAPH in 5.0 - if you pass values with 0 the java something or other will start looping and spin out of control, sucking up memory and processor until the box blows up. There's a simple hot fix at macromedia.. -Original Message- From: Uwe Degenhardt

RE: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Everett, Al
Well I'll be damned. It looks like that worked. Thanks. Here's the magic code: cfset checkdate = DateFormat(DateAdd(d,1,Now()),'-mm-dd') cfquery ... .. WHERE AUTHORIZATION_EMAIL_NEXT_DATE cfqueryparam cfsqltype=CF_SQL_TIMESTAMP value=#Variables.checkdate# -Original Message-

Re: CFMX possible bug, anyone care to verify

2002-10-30 Thread Raymond Camden
I was not able to reproduce this bug. (Using CFMX+Updater.) -Ray - Original Message - From: Brook Davies [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 29, 2002 7:26 PM Subject: CFMX possible bug, anyone care to verify I might be missing something here, but I

OT: Running CF, mySQL

2002-10-30 Thread FlashGuy
Hi, I'm having a little trouble. I've installed mySQL. I've started the service via WinMySQL admin. I was able to create my databases. I also installed MySQL-Front and DBTools. The problem is when I startup any of the tools and try to create a connection I get a MySQL Error - COnnection

RE: CFMX possible bug, anyone care to verify

2002-10-30 Thread Christine Lawson
Me neither, also using CFMX+ Updater. Christine -Original Message- From: Raymond Camden [mailto:jedimaster;macromedia.com] Sent: Wednesday, October 30, 2002 9:51 AM To: CF-Talk Subject: Re: CFMX possible bug, anyone care to verify I was not able to reproduce this bug. (Using

RE: Running CF, mySQL

2002-10-30 Thread Robertson-Ravo, Neil (REC)
try and logon with the 'root' username password (usually blank) -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: 30 October 2002 14:48 To: CF-Talk Subject: OT: Running CF, mySQL Hi, I'm having a little trouble. I've installed mySQL. I've started the service via

RE: High traffic CF website/application

2002-10-30 Thread Govind Bhat
Hi all, We have been running on CF since 1998 and quite happy with the performance (with caching on!!). For example, yesterday we had 1.3 million hits and 200,000 page views with average download time of 3.4 seconds. (More than 60% of the pages served were dynamic) Regards Govind Bhat Technology

RE: Running CF, mySQL

2002-10-30 Thread FlashGuy
That was it. I thought the username/password had to be the same as the username/password used for WinMySQL Admin. Thanks On Wed, 30 Oct 2002 14:52:16 -, Robertson-Ravo, Neil (REC) wrote: try and logon with the 'root' username password (usually blank) -Original Message- From:

Re: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Jochem van Dieten
Everett, Al wrote: Well I'll be damned. It looks like that worked. Thanks. Here's the magic code: cfset checkdate = DateFormat(DateAdd(d,1,Now()),'-mm-dd') cfquery ... .. WHERE AUTHORIZATION_EMAIL_NEXT_DATE cfqueryparam cfsqltype=CF_SQL_TIMESTAMP value=#Variables.checkdate# Well,

OT: Community Suite Schedule

2002-10-30 Thread Michael Dinowitz
For those watching on the webcam through HoF and Jochem (thanks again), here's what will be happening today: 10:15 Rey Muradaz Copyright Issues and Software 11:15 Charlie Arehart Getting into Dreamweaver MX for HomeSite/Studio Users 12:20 Final Book Auction 1:00 Michael Smith Client Communication

Re: Where do CFC's go?

2002-10-30 Thread Troy Simpson
Thanks for describing your layout. It has been very helpful in providing me with ideas. How do (would) you outline the directory structure for multiple websites that are hosted on one system. For example: admin.domain.com app1.domain.com app2.domain.com app3.domain.com .. It appears that

CFIF and CFSWITCH brain freeze

2002-10-30 Thread Pete Ruckelshaus
I'm having a brain freeze on the differences between how CFIF and CFSWITCH statements are handled. How I understand it: CFSWITCH evaluates all expressions independently (i.e. with no regard to other CFCASE values) while CFIF evaluates expressions serially (i.e. from first to last). Is this

RE: High traffic CF website/application

2002-10-30 Thread Mike Brunt
Govind, that's nice a testament to ColdFusion and significantly your use of it. You obviously are doing a great job developing and maintaining your apps. Nice performance response times. Mike Brunt - CTO Webapper Services LLC http://www.webapper.com Downey CA Office 562.243.6255 Making the NET

RE: CFIF and CFSWITCH brain freeze

2002-10-30 Thread Jeff Beer
Reverse the evaluation order. Since CGI.ScriptName DOES contain default.cfm it evaluates as TRUE and never looks at the other conditions. -Original Message- From: Pete Ruckelshaus [mailto:cflist;ruckelshaus.com] Sent: Wednesday, October 30, 2002 10:22 AM To: CF-Talk Subject: CFIF and

(Multiple presence IMs) Re: About damn time

2002-10-30 Thread Eric Dawson
I'd say about time. I don't know anyone on AIM, but certainly a PITA to worry all the different IM transports. I currently use trillian http://www.ceruleanstudios.com/trillian/index.html but have been following jabber (search on Source Forge for jabber). promising.

RE: CFIF and CFSWITCH brain freeze

2002-10-30 Thread Ben Doom
IIRC, yes, all of the case values in a cfswitch are evaluated independently. So, in this case, you'd run the switch case order the same way you listed your if order (which, as Jeff pointed out, is backwards). The last case to evaluate to true would be the one to set the final value of

Re[2]: problems with cfgraph

2002-10-30 Thread Uwe Degenhardt
Hello Jeff, Wednesday, October 30, 2002, 3:40:46 PM, you wrote: JB There's an issue with CFGRAPH in 5.0 - if you pass values with 0 the JB java something or other will start looping and spin out of control, JB sucking up memory and processor until the box blows up. JB There's a simple hot fix

RE: CF4.5/5 cfqueryparam differences

2002-10-30 Thread Everett, Al
Well, considering that the SQL standard says that a date is formatted as 10 positions in the format -mm-dd I would not call it is magic. Deep in my misty memory I was taught that when using CF and Oracle, dates needed to be formatted as DD-MMM-. Looking at it now, it's probably the

RE: High traffic CF website/application

2002-10-30 Thread brook
Good Work Govid! I bet your not using CFMX :( Okay, that was a bit of a low blow. Please tell us more about your server specs and software versions. Brook At 07:31 AM 10/30/02 -0800, you wrote: Govind, that's nice a testament to ColdFusion and significantly your use of it. You obviously are

RE: capturing a query

2002-10-30 Thread Rich Wild
if you're using CFMX than you can get at this data by interrogating the Service Factory. This is undocumented, but fun to discover! If you're not using CFMX then you can't access the debugging information, unfortunately. -Original Message- From: bajaria aslam

RE: CFMX possible bug, anyone care to verify

2002-10-30 Thread Rob Rohan
Hi Brook, I tried your code and for 12981 got Ths string is 53799 chars long (No null pointer exception) for a hoot I bumped it up to 5 I got Ths string is 238894 chars long (No null pointer exception) It is a phat box though. W2k, jdk1.4.0_02, IIS5 -Original Message- From:

RE: Yahoo moving to PHP

2002-10-30 Thread Rob Rohan
cfscript if (blah) { }else{ switch () { 1: this; break; 2: that; break; } } /cfscript -Original Message- From: Nick McClure [mailto:cf-lists;king-nacho.com] Sent: Tuesday, October

RE: problems with cfgraph

2002-10-30 Thread Rob Rohan
cfgraph used to barf if you passed in 0's (that's a zero) for values. They might have fixed that, but what you describe is what happened when 0's were passed in - you might check that and make sure you have the update installed. -Original Message- From: Uwe Degenhardt

RE: Yahoo moving to PHP

2002-10-30 Thread Robert Everland
But you can't do that if you want to include files. I think yahoo makes a good case for moving to PHP. It's very fast for them, they are on Freebsd and they gave pretty good reasons to move to that language. Some of us don't agree that CF is an ugly language, but it is. It's nice for us because

OT: CF and mySQL (configuring)

2002-10-30 Thread FlashGuy
OK...I'm getting there. I have the service running. I've created my database and table with MySQL-Front. I'm in the process of creating the fields but I'm stuck on what type from the Field-Properties, Length/Set and Default Value to select. Also Table-Type? Options are: Automatic (by default)

RE: CFMX possible bug, anyone care to verify

2002-10-30 Thread A.Little
The code you're using to generate a long string will give: For 1-9 it will produce: 123456789 (making len(str)=9) but for 1-10 it will give 12345678910 (making len(str)=11) etc So the string len that you're getting (53799) sounds about right when the loop goes up to 12981. Doesn;t explain why

Re: columns of user-editable text: Link to Excel sheet?

2002-10-30 Thread Cary Gordon
You can configure an Excel file as an ODBC datasource. Then you could display it in a CFGRID, if you like. Cary At 08:23 PM 10/29/2002 -0600, you wrote: Someone wants to have a page that's mainly an Excel spreadsheet... anyone know how to do that? Does it change when they change the

Re: CF and mySQL (configuring)

2002-10-30 Thread SMR
I usually us MyISAM but you should read the description of each in the mysql manual to determine what is best for you.. same thing about the checkboxes.. - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 11:16 AM Subject:

RE: Yahoo moving to PHP

2002-10-30 Thread Rob Rohan
I was just trying to be a smart ass - It looked like you wanted some one to be :) I like php, I use in on one of my open source sites (which happens to run on FreeBSD). As I recall CF isn't supported on FreeBSD anyway. I care not what yahoo does. You make a very intelligent argument for those

caching

2002-10-30 Thread Dan Phillips
Can someone tell me or point to a site that gives a comparison or server caching vs. client side and use the CFCACHE tag? Thx! Dan ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFMX possible bug, anyone care to verify

2002-10-30 Thread brook
Well, thats odd then. Because it certainly happens on my box. Thats too strange... Thanks for checking y'all... Brook At 09:50 AM 10/30/02 -0500, you wrote: I was not able to reproduce this bug. (Using CFMX+Updater.) -Ray - Original Message - From: Brook Davies [EMAIL PROTECTED] To:

How secure is encrypt

2002-10-30 Thread John Gedeon
how good is the encryption that the built in cf function use? good enough for cc's or passwords? John Proverbs 3:5 Trust in the Lord with all your heart and lean not on your own understanding; ~| Archives:

RE: How secure is encrypt

2002-10-30 Thread Robertson-Ravo, Neil (REC)
erm... I suppose is all depends on how secure you define secure? -Original Message- From: John Gedeon [mailto:jgedeon;qualcomm.com] Sent: 30 October 2002 16:42 To: CF-Talk Subject: How secure is encrypt how good is the encryption that the built in cf function use? good enough for

Re: How secure is encrypt

2002-10-30 Thread Jochem van Dieten
John Gedeon wrote: how good is the encryption that the built in cf function use? good enough for cc's or passwords? Totally insecure. Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
no -Original Message- From: John Gedeon [mailto:jgedeon;qualcomm.com] Sent: Wednesday, October 30, 2002 8:42 AM To: CF-Talk Subject: How secure is encrypt how good is the encryption that the built in cf function use? good enough for cc's or passwords? John Proverbs 3:5 Trust in the

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
http://www.password-crackers.com/crack/cfdecrypt.html -Original Message- From: John Gedeon [mailto:jgedeon;qualcomm.com] Sent: Wednesday, October 30, 2002 8:42 AM To: CF-Talk Subject: How secure is encrypt how good is the encryption that the built in cf function use? good enough for

RE: How secure is encrypt

2002-10-30 Thread Ben Doom
It's like the latch on your gate. It'll keep out things without opposable thumbs. :-) --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: John Gedeon [mailto:jgedeon;qualcomm.com] : Sent: Wednesday, October 30, 2002 11:42 AM : To: CF-Talk :

RE: How secure is encrypt

2002-10-30 Thread Robertson-Ravo, Neil (REC)
expand/explain? If its so insecure, can you tell me what this string says? 8512J85868A65C9E588CAA7E809E907492541 :-p -Original Message- From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl] Sent: 30 October 2002 16:46 To: CF-Talk Subject: Re: How secure is encrypt John

Re: Where do CFC's go?

2002-10-30 Thread Tyler Silcox
Here's a side question for you, that I've tried posting before ;-): Is there a way to find the root of the ColdFusion server? The majority of our sites are hosted on someone else's box, so we don't always have access to the CFAdministrator. We can usually request some mappings, but it always

RE: How secure is encrypt

2002-10-30 Thread Robertson-Ravo, Neil (REC)
Erm.. I dont think thats what he was on about, and anyhow you should not be posting things like that to the list. You know as much as anyone that this is a violation of the Agreement (decrypting templates) tut tut, shame on you. :-p -Original Message- From: Rob Rohan

Re: How secure is encrypt

2002-10-30 Thread William Wheatley
Doesnt mean people dont do it :) hes just being realistic lol - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 11:55 AM Subject: RE: How secure is encrypt Erm.. I dont think thats what he was on

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
/* CFDECRYPT: Decrypt Cold Fusion templates encrypted with CFCRYPT Matt Chapman [EMAIL PROTECTED] Usage: cfdecrypt encrypted.cfm decrypted.cfm Requires a DES encryption library to compile. */ #include stdio.h #include des.h int main(void) { char *header = Allaire Cold Fusion

RE: How secure is encrypt

2002-10-30 Thread Jesse Noller
People are getting template encryption confused with the functions the guy actually asked about. -jesse -Original Message- From: Rob Rohan [mailto:rob;cardinalweb.com] Sent: Wednesday, October 30, 2002 12:04 PM To: CF-Talk Subject: RE: How secure is encrypt /* CFDECRYPT: Decrypt Cold

Re: How secure is encrypt

2002-10-30 Thread Jochem van Dieten
Robertson-Ravo, Neil (REC) wrote: expand/explain? It is more obfuscated as encrypted. So if a hacker has sufficient data with some common characteristic, like creditcards of which you know they follow the MOD 10 algorithm and have predictable starting numbers, it is hackable. But the deeper

RE: How secure is encrypt

2002-10-30 Thread Costas Piliotis
Unless I'm mistaken, it looks like you've posted a utility to decrypt encrypted cf templates, not a link decrypt scrings that are encrypted. Something like #encrypt(string, key)# I think was the question... -Original Message- From: Rob Rohan [mailto:rob;cardinalweb.com] Sent:

RE: How secure is encrypt

2002-10-30 Thread Scott Brady
http://www.password-crackers.com/crack/cfdecrypt.html I think John is actually asking about the encrypt function withing CFML (to encrypt a string), rather than encrypting cfml files. Of course, neither method is secure . . . . Scott Brady

Attribute set validation error in tag CFOUTPUT

2002-10-30 Thread S . Isaac Dealey
Here's a unique one: CF 5, Win2K Server This code: - cfoutput div id=headerChange Bond Order for #client.ssmembername#/div /cfoutput - Produces this error: - Attribute set validation error in tag CFOUTPUT The tag has an invalid

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
oops thats for the encrpyted files... I can feel the fames... -Original Message- From: Rob Rohan [mailto:rob;cardinalweb.com] Sent: Wednesday, October 30, 2002 9:04 AM To: CF-Talk Subject: RE: How secure is encrypt /* CFDECRYPT: Decrypt Cold Fusion templates encrypted with CFCRYPT

RE: How secure is encrypt

2002-10-30 Thread John Gedeon
I was talking about the Encrypt function built in to cf not the code hiding external function or are they the same? ex cfset value = Encrypt(string,key) At 08:49 AM 10/30/2002, you wrote: http://www.password-crackers.com/crack/cfdecrypt.html -Original Message- From: John Gedeon

RE: How secure is encrypt

2002-10-30 Thread Ben Doom
If I wanted to take an hour to write an app, and let it run in the background for a day or two? Yes, I probably could. cfencrypt is a symetric key algorythm with (iirc) only a 32-bit keyspace. So I need to run through, at most, about 4.2 billion keys, looking for (as an example) anything that

RE: How secure is encrypt

2002-10-30 Thread Costas Piliotis
Alright. I've got an ancryption library that offers stronger encryption than the encrypt function. Use a one-way hash for password if you can. Much stronger. Something like Sha256 or something is excellent. You store the encrypted string in your database. When someone tries to log in, you

Times Return Wrong

2002-10-30 Thread Tyler Clendenin
I am using Cold Fusion MX and connecting to an informix database through an odbc source. The problem is that all times being reutrned from the queries are actually three hours greater then what is in the database. Anyone know what this could be. I am guessing some sort of weird time zone

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
Yes I did, my bad. I'll just have to get out my dictionary and brute force. Sorry. -Original Message- From: Costas Piliotis [mailto:cpiliotis;voyus.com] Sent: Wednesday, October 30, 2002 9:08 AM To: CF-Talk Subject: RE: How secure is encrypt Unless I'm mistaken, it looks like you've

RE: How secure is encrypt

2002-10-30 Thread Rob Rohan
Yeah yeah, I got it. Sorry. -Original Message- From: Scott Brady [mailto:cf_talk;scottbrady.net] Sent: Wednesday, October 30, 2002 9:08 AM To: CF-Talk Subject: RE: How secure is encrypt http://www.password-crackers.com/crack/cfdecrypt.html I think John is actually asking about the

Re: Attribute set validation error in tag CFOUTPUT

2002-10-30 Thread Paul Giesenhagen
Interesting, I copied and pasted your code (added a client.ssmembername variable first) ... but it ran just fine for me. CF5/W2k Paul Giesenhagen QuillDesign - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002

Re: How secure is encrypt

2002-10-30 Thread Stephen Moretti
how good is the encryption that the built in cf function use? Its alright, but its only as secure as your server as you have to keep the encryption/decryption key on the server. good enough for cc's Definately not... Look at something like pgp for encrypting credit card numbers, where you

Re: How secure is encrypt

2002-10-30 Thread Critter
oi Rob!! uh. he's talking about the function not the exe. no? best thing to do is hashem or something similiar -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com;

Re: Times Return Wrong

2002-10-30 Thread SMR
check your time zone settings on the machine running CFMX ? - Original Message - From: Tyler Clendenin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 12:15 PM Subject: Times Return Wrong I am using Cold Fusion MX and connecting to an informix database

Re: capturing a query

2002-10-30 Thread bajaria aslam
Thanks so much buddy! But, I believe that there is no easy way to capture the information from the debug info. Thanks again. --- Tim Painter [EMAIL PROTECTED] wrote: I've created the query as a variable and use the variable inside the cfquery: cfset sql = Select * from sometable where foo

Re: OT:Yahoo moving to PHP

2002-10-30 Thread Kreig Zimmerman
That's pretty much what I've done at my company as well. CFSCRIPT is just so much cleaner, and easier to read. CFML tends to be only used when we are annotating HTML. Fregas wrote: I know a development firm that tends not to use CF at all, but instead puts everything in CFSCRIPT that they can.

Re: Times Return Wrong

2002-10-30 Thread Jochem van Dieten
Tyler Clendenin wrote: I am using Cold Fusion MX and connecting to an informix database through an odbc source. The problem is that all times being reutrned from the queries are actually three hours greater then what is in the database. Anyone know what this could be. I am guessing some

Re: Attribute set validation error in tag CFOUTPUT

2002-10-30 Thread Stephen Moretti
Anybody have any ideas why the server would just freak out suddenly like this? I tried commenting out the client variable on the off-chance it might produce a change and it didn't seem to have any affect. That error is usually indicitive of your CFOUTPUT being nested inside another CFOUTPUT,

RE: OT:Yahoo moving to PHP

2002-10-30 Thread Robert Everland
I use it as much as I can also, but it is by no means a replacement for many of the cf tags. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Kreig Zimmerman [mailto:kkz;foureyes.com] Sent: Wednesday, October

  1   2   3   >