Re: Encryption of CFML

2001-02-11 Thread Roger Lim
Of course it's possible. Try using CFENCODE, located under the directory of ColdFusion/bin Regards, Roger Lim Senior Engineer, Technology X-media Pte Ltd Tel: (65)796-9500 (Ext. 666) Fax: (65)796-9533 - Original Message - From: Teng-Yan Loke [EMAIL PROTECTED] To: CF-Talk [EMAIL

Check filesize BEFORE uploading

2001-01-30 Thread Roger Lim
Hi, I read a mail regarding the subject which said : "ColdFusion has no way of knowing what the file size is BEFORE it reaches the server. The way i've done it is allow the full file to be uploaded, check the file size (CFFILE) and then delete it. Of course, the system will warn the user that

Coldfusion 5.0

2001-01-09 Thread Roger Lim
Hi, I have just finished watching the presentation on Allaire Developer Conference 2000 and I must say I'm very impressed with ColdFusion 5.0! Can't wait to get my hands on it soon. However, can anyone tell me what's the difference between its new ability to have user-defined function and its

Audience Profiling

2000-12-27 Thread Roger Lim
Hi, I'm currently planning a project that requires Audience Profiling. Basically the administrator of the website will be able to track the user's movement, like the most frequent visited pages of the site, number of times the user used a certain facility, etc. Any idea how do I go about doing

Coldfusion - 3-tier Web Application ? Possible?

2000-12-13 Thread Roger Lim
Hi, I realised that ColdFusion is allowed to make use of CFOBJECT to call EJB (Enterprise JavaBean) methods and also it's able to use XML via WDDX. I was just wondering, is it possible that we use ColdFusion to create a 3-tier Web Application whereby we have EJB to take care of the business

ICQ For Cold Fusion Community

2000-12-01 Thread Roger Lim
Hi, I was just wondering do we have a group of Cold Fusion Developers that had their ICQ program always stay online? ICQ ("I Seek You") is a user-friendly Internet program that notifies you which of your friends and associates are online and enables you to contact them. With ICQ, you can chat,

Project documentation

2000-10-30 Thread Roger Lim
Hi, Anyone has any idea where can I find examples or format on how to go about doing documentation for web projects? Documentation like Database Design, Site Design, Test Script, etc? Thanks, roger

SUBSTR : SQL queries

2000-10-29 Thread Roger Lim
Hi, I encountered problem in executing the below SQL statement : select property_no, road_name, postal_code from usr_prop_info where substr(postal_code,1,length(a.postal_code)) in (select a.postal_code from road_info a where district_no = '#form.hdb_estate#') Apparently, my

Re: cfm-resources

2000-09-26 Thread Roger Lim
I think it's still down. They're currently trying to solve the traffic problems. Actually I think they should have a backup server and in case the server is down, there's always another one to backup so as to maintain up-time. roger - Original Message - From: Michael Kear [EMAIL

Re: cf_imagesize

2000-09-25 Thread Roger Lim
URL: http://www.fusioneers.com ICQ: 346566 -- -Original Message- From: Roger Lim [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 1:20 AM To: CF-Talk Subject: Re: Image validation Nick, Ca

Re: cf_imagesize

2000-09-23 Thread Roger Lim
CQ: 346566 -- -Original Message- From: Roger Lim [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 1:20 AM To: CF-Talk Subject: Re: Image validation Nick, Can you send the tag to me? I really need that, thanks! ;)) Roger

Re: Image validation

2000-09-21 Thread Roger Lim
want to check more than that ;-) -Original Message- From: Roger Lim [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 4:42 PM To: CF-Talk Subject: Image validation Hi, Apparently I allow user to upload their image files into my server, however I wish to check

Image validation

2000-09-20 Thread Roger Lim
Hi, Apparently I allow user to upload their image files into my server, however I wish to check their image width and height, how do I go about doing that ? Thanks. Roger -- Archives:

Comparing values in 2 queries

2000-09-14 Thread Roger Lim
Hi, Wanna ask for help here. Let's say that I have 2 queries which have a similar field column name. I wish to do a comparision and it's a AND critieria. For example, Field_a Field_b 1 1 2 2 3 4 5 I wish to compare field_a with

Re: Multiple CFLOOPs

2000-09-14 Thread Roger Lim
oop repeat the out loop's output ? Then how many times? This will give you the times EQ to the second query's recordcount. Sima - Original Message ----- From: Roger Lim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 13, 2000 9:19 PM Subject: Re: Multiple CFLOOPs Hi,

Multiple CFLOOPs

2000-09-13 Thread Roger Lim
I have 2 queries which require to loop through for certain execution. However I discovered something cfloop query="query_a" cfoutput#query_a.field_a#cfoutput cfloop query="query_b" cfoutput#query_a.field_a#cfoutput /cfloop /cfloop I realised that both

Re: Multiple CFLOOPs

2000-09-13 Thread Roger Lim
Hi, That's what I'm facing right now, apparently I do not understand why is it so. Under your example, for the second time it looped, why the Second Loop show "John" and not "Smith"? I tried to use the following method to solve this problem: cfloop query="query_a"

I have a problem..

2000-09-12 Thread Roger Lim
Hi there, I've a problem which I'm trying hard to solve, hope you guys can help me out on this.. I have two huge tables with alot of fields. One of the table is driven by a form which will be filled by user and not all the fields are compulsory. I am required to compare these two tables and to

Re: I have a problem..

2000-09-12 Thread Roger Lim
Hi Kym, THANKS! That's exactly what I'm looking for! Really a great help!! ;) roger - Original Message - From: "Kym Kovan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 12, 2000 2:56 PM Subject: Re: I have a problem.. Hi Roger, I have two huge tables with alot of

Re: alphabetical Order

2000-08-20 Thread Roger Lim
#myquery.recordcount#" index="this" cfset row = val(right(myarray[this], 6)) cfloop list="#myquery.columnlist#" index="col" cfset temp = querysetcell(newquery, col, evaluate("myquery.#col#[row]"), this) /cfloop /cfloop !--- Pass sorted query back to ca

Re: Understanding verity search...

2000-08-17 Thread Roger Lim
You can try to specify your criteria as "CRITERIA = "hello AND CF_CUSTOM1SUBSTRING world" You'll be able to search custom field then. - Original Message - From: "Seth Petry-Johnson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 17, 2000 9:50 PM Subject: Re:

Re: Understanding verity search...

2000-08-17 Thread Roger Lim
That is quite a good approach, but we have to actually perform that extra step in order to get what we want. Of course, I think it would be better if Verity can take care of everything so that we don't even have to use SQL to search and filter out the necessary records.. roger - Original

Understanding verity search...

2000-08-16 Thread Roger Lim
Hi guys, I'm currently building a rather comprehensive search engine using CF. But I have a doubt all along regarding Verity Search.. I had some fields in my search form for user to key in to faciliate their search and I specify all these fields inside my CFINDEX cfindex action="refresh"

Re: Understanding verity search...

2000-08-16 Thread Roger Lim
Precisely that's what is happening now, one better solution is to declare your criteria to search for CF_TITLE, CF_CUSTOM1 and CF_CUSTOM2 one after another, but as far as efficiency is concerned, this is not so good. Say, I can't seem to find your thread, what's the date of this thread? roger

Free text verity search in CF

2000-08-14 Thread Roger Lim
Guys, may I know how do I achieve searching only part of the word in verity search without using any wildcard? For example, I just type "ho" in the textbox and all the words that consists of "ho" will be found. thanks

WDDX

2000-08-14 Thread Roger Lim
Hi guys, I tried using CFWDDX to pass CF variable into Javascript. However I realised that I can only have one variable, is there any ways that I can pass two CF variables into JS function? Below are my codes: CFWDDX INPUT="#property_count#" OUTPUT="MyWDDXPacket" ACTION="CFML2WDDX" CFWDDX

WDDX and CF

2000-08-07 Thread Roger Lim
Guys, I have a program code to pass variables from CF to Javascript using WDDX packets, in part of my program below, extract() is a Javascript function. However I need to pass the variable out from JS back to CF, but I realised that WDDX doesn't have a JS2WDDX and WDDX2CFML action. Is there any