Re: single quotes???

2004-12-17 Thread Lawrence Ng
look into preservesinglequotes()  function 




~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188091
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfif issues

2004-12-16 Thread Lawrence Ng
cfelse
a
href=testftp.cfm?directory=#ListFiles.name#/cfif#ListFiles.name#/a
/cfif

why the extra /cfif  (=#ListFiles.name#/cfif#ListFiles.name#/a)



 [EMAIL PROTECTED] 12/16/04 9:47 AM 
Hi,

assuming all variables are correct what is wrong with this code?

cfif IsDefined(url.directory)
a href=testftp.cfm?directory=#url.directory#/#ListFiles.name#
cfelse
a
href=testftp.cfm?directory=#ListFiles.name#/cfif#ListFiles.name#/a
/cfif

When i click on the very first link the path looks similar to this..

testftp.cfm?directory=wwwroot

So the next page would have links that should now look similar to this..

testftp.cfm?directory=wwwroot/images

however something is failing with the IsDefined statement becauase I'm
getting this..

testftp.cfm?directory=images

Does anyone have any thoughts?

Phil






~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Strange error message

2004-12-07 Thread Lawrence Ng
 WHERE uid = '#trim(user_var)#' (quote)

?




~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186540
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OpenSource Calendar

2004-12-03 Thread Lawrence Ng
got an error trying to enter a test event



 Error Executing Database Query.
[Macromedia][SQLServer JDBC Driver][SQLServer]Cannot insert the value
NULL into column 'EndDate', table 'coldgen000130.dbo.Demo_ColdCalendar';
column does not allow nulls. INSERT fails.
 
The error occurred in
C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cfm:
line 49
Called from C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm: line
31
Called from
C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cfm:
line 49
Called from C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm: line
31

47 : /cfquery
48 : cfelse
49 : cfinsert datasource=#Request.DataSourceName#
tablename=Demo_ColdCalendar formfields=EventName, EventDesc,
CreatedBy
50 : cfset UpdateStartDate = #CreateDate(FORM.cboYearStart,
FORM.cboMonthStart, FORM.cboDayStart)#
51 : cfset UpdateEndDate = #CreateDate(FORM.cboYearEnd,
FORM.cboMonthEnd, FORM.cboDayEnd)#

SQL   insert into Demo_ColdCalendar (EventName,EventDesc,CreatedBy)
values ( (param 1) , (param 2) , (param 3) )
DATASOURCEcoldgen
VENDORERRORCODE   515
SQLSTATE  HY000
Please try the following:

Stack Trace
at
cfqry_processaddupdateevent2ecfm1487833730.runPage(C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cfm:49)
at
cfindex2ecfm248875144.runPage(C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm:31)
at
cfqry_processaddupdateevent2ecfm1487833730.runPage(C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cfm:49)
at
cfindex2ecfm248875144.runPage(C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm:31)

java.sql.SQLException: [Macromedia][SQLServer JDBC
Driver][SQLServer]Cannot insert the value NULL into column 'EndDate',
table 'coldgen000130.dbo.Demo_ColdCalendar'; column does not allow
nulls. INSERT fails.
at macromedia.jdbc.base.BaseExceptions.createException(Unknown
Source)
at macromedia.jdbc.base.BaseExceptions.getException(Unknown
Source)
at
macromedia.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown
Source)

-


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186111
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OpenSource Calendar

2004-12-03 Thread Lawrence Ng
thanks... do you have a site where we could acutally manage the events?
the link you provided only displays the events.



 [EMAIL PROTECTED] 12/3/2004 9:46:00 AM 
I have it working here:
http://www.londonderryeaston.com/calendar/calendar_public.cfm?fuseaction

=ViewGoToMonthGoToYear=2004GoToMonth=11


-Original Message-
From: Lawrence Ng [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 03, 2004 12:19 PM
To: CF-Talk
Subject: Re: OpenSource Calendar

got an error trying to enter a test event



 Error Executing Database Query.
[Macromedia][SQLServer JDBC Driver][SQLServer]Cannot insert the value
NULL into column 'EndDate', table
'coldgen000130.dbo.Demo_ColdCalendar';
column does not allow nulls. INSERT fails.
 
The error occurred in
C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cf
m:
line 49
Called from C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm:
line
31
Called from
C:\domains\coldgen.com\wwwroot\coldcalendar\qry_processaddupdateevent.cf
m:
line 49
Called from C:\domains\coldgen.com\wwwroot\coldcalendar\index.cfm:
line
31

47 : /cfquery
48 : cfelse
49 : cfinsert datasource=#Request.DataSourceName#
tablename=Demo_ColdCalendar formfields=EventName, EventDesc,
CreatedBy
50 : cfset UpdateStartDate = #CreateDate(FORM.cboYearStart,
FORM.cboMonthStart, FORM.cboDayStart)#
51 : cfset UpdateEndDate = #CreateDate(FORM.cboYearEnd,
FORM.cboMonthEnd, FORM.cboDayEnd)#
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186123
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Lawrence Ng
I agree. I used to look at siteobjects but its only good for 1 browser
and unless your company standardizes using only IE, then it's fine.

I agree with the voting too. Here locally, we have a home builders
awards but that too is bogus. all builders have to do is to apply and
pay a fee and they are automatically a candidate for best builder.
People fall for it...

 [EMAIL PROTECTED] 12/3/2004 11:07:18 AM 
I can't see how it could be the best if it only works with IE - thing
about the XXDJ votes I've noticed is you can only vote for ones they
let you, you cant write in anything you want, so its really a bogus
award - only open to thier sponsors I think.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186150
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: New cfml file manager - CFFM

2004-12-02 Thread Lawrence Ng
Hello,

I got an error while trying to rename a directory

*--
This error has been logged to bderror2897.html.  Please contact the 
Administrator
*




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185958
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: New cfml file manager - CFFM

2004-12-02 Thread Lawrence Ng
just thinking out loud... could be because the name already exits? or
record locking?


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185966
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Passing search results

2004-12-02 Thread Lawrence Ng
hi everyone,

I need your feedback on what's a good approach...

Here's what I'm thinking . I have 3 collections I want to search on
and the results (if any) would be displayed on 3 separate pages which
can be viewed by clicking on a tab folder.

How can I pass a collection to the page (in my case one of my tabs)
after is searched all 3.

example:

search 1, search 2, and search 3

results shown in tabs

| Results A | Results 2 | Results 3 | 

clicking on Results 2 would show the search results from search 2

thanks,








~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185983
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: New cfml file manager - CFFM

2004-12-02 Thread Lawrence Ng
thank you for clarifying it.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185990
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Hosting for Coldfusion

2004-12-02 Thread Lawrence Ng
how about CrystalTech? 

 tell us how you really feel =)



 [EMAIL PROTECTED] 12/2/2004 11:53:07 AM 
I recommend 3 CF hosts. 

1.CRYSTALTECH
2.CRYSTALTECH
3.CRYSTALTECH

I doubt anyone does it better! 

Will


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186006
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Lawrence Ng
Those of us in IT can't just look at the technology anymore. We must
adopt a mgmt mindset. Like anything else, if there are more say MS/ or
Java/JSP or PHPor other developers than CF developers then it would
stand to reason that mgmt would prefer to look at a platform that has a
larger base. I think their mindset is that the more people there are
using a particular platform, there would be more support for it. I'm not
saying this may be the case but as most of you correctly pointed out, we
should use the  technology for what mgmt wants to support (note that I
did say the best. If mgmt supports it, then you'll have better support)
and to deliver their projects on time and at a reasonable costs. 

If I was running a company, I'd want to know how this technology is
saving me money, time and making me more profitable. =)




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184748
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
I wonder if the same would happen if one were to use Apache (if it's
IIS crashing or root of it in the first place)

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184758
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
it would be interesting to see the test results of having 2 windows
machines running the exact hardware specs,  OS and patches installed, MX
and databases but one is running  IIS and the other Apache.  

they are turned on the same time and presto... the game's afoot!

hmmm...  =)




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184760
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
yes I remembered that as well. This is more as a learning exercise and
who knows might come in handy when we need to sell the idea to our
clients, mgmt, etc. 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184763
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
Hey Lewis,

thanks for that info... interesting to say the least.



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184772
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
reason why I'm interested is that I'm going to build 2 windows box to
see how things go with transactional oeprations:

1. MX with apache and SQL Server

2. MX with IIS and SQL Server

and if I'm really bored during the holidays ... compare it with

1.1  MX with apache and Oracle 9 or 10g

2.1 MX with IIS and Oracle 9 or 10g  

=)



 [EMAIL PROTECTED] 11/18/2004 9:53:28 AM 
Lawrence Ng wrote:

I wonder if the same would happen if one were to use Apache (if it's
IIS crashing or root of it in the first place)
  

I'm using both at the moment (because it was driving me crazy trying to

get CFMX 6.1 to even load an admin page without hanging up the machine
a 
while back). Had it running CFMX for two or three weeks now and Apache

works smooth and fine. So far.

There were a lot of problems over the last year or so which I was 
blaming on CFMX (cursing it for being unusable since jumping to Java) 
but since I had the inspiration to try a different web server the other

day when I HAD to run some CFM  ... been wondering if I should have
just 
been cursing Microsoft instead. At least in part.

Anyway, to answer you, it does seem that (COM issues aside) all the 
problems I've been having with CFMX (at least recently) go away with 
Apache. Hrm.

-- 
--Lewis Sellers (AKA min)
Intrafoundation Software
http://www.intrafoundation.com 




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184776
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
I'm not sure if its MX though.. it may be linux that is stabilizing it.
I did both ... develop on win machines and handed it off to the penguin
to go live.

have your win2k box up and running along side the linux box and keep
them running... let's see who gets knocked down. even then, I don't
think its an even comparision because you won't get the same
transactions on the windows box as u do the nix one since its the live
one... wouldn't it be funny if the windows one comes down and there is
little activity on it...

LOL




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184778
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF integration w/ warped text graphic challenges?

2004-11-18 Thread Lawrence Ng
try this...

http://www.emerle.net/programming/display.cfm/t/cfx_captcha


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184792
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Lawrence Ng
u know we're getting old when we forget the time...

LOL



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184801
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF integration w/ warped text graphic challenges?

2004-11-18 Thread Lawrence Ng
glad to hear that... it's pretty useful... i make unsubscribers work to
get off the spam list LOL



 [EMAIL PROTECTED] 11/18/2004 1:01:57 PM 
At 02:04 PM 11/18/2004, Lawrence Ng wrote:
try this...

http://www.emerle.net/programming/display.cfm/t/cfx_captcha 

Ahhh. Now that is easy. :)

Works perfectly.

Anders



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-17 Thread Lawrence Ng
yeah... when I first started years ago as a rookie, I could not believe
how easy it was to connect to a db and write out your queries freely
without worrying about line breaks, not appending correctly, etc. and
all inside a tag to boot.



 [EMAIL PROTECTED] 11/17/2004 8:20:24 AM 
Dave nailed it here:

 The fact is, you can do pretty much anything with any of these
products. 
 The
 hands-down advantage of CF, in my opinion, is that you can do most of
the
 common, important things very easily.


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED] 
web: www.electricedgesystems.com/54 




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184615
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Use cftry/cfcatch to resume if error in a loop?

2004-11-16 Thread Lawrence Ng
just thinking out loud here... wouldn't the preferred way to do is is by
using Oracle's tools instead?

it seems to me that table maintenance, triggers, etc. should be best
left to the database that handles it because they do it best as they
say.

just wondering... I'm probably not as enlightened as you folks anyway
LOL



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184403
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Use cftry/cfcatch to resume if error in a loop?

2004-11-16 Thread Lawrence Ng
hmmm.. if you don't have access then how can you maintain the tables
without the rights to alter them?



 [EMAIL PROTECTED] 11/16/2004 8:54:11 AM 
just thinking out loud here... wouldn't the preferred way to do is is
by
using Oracle's tools instead?

Well of course.  I can do this in about a minute inside of Oracle
itself.  Trouble is I don't have access to them so I have to build my
own.  The fault of the server admins and not something I can help,
unfortunately.

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184405
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


image resizing

2004-11-16 Thread Lawrence Ng
hello,

I plan to build an app that would allow users to upload images to the
server for review. Here are the routines I want to try and implement

1. check's the image dimension before its updated (either by cffile or
ftp)

2. Once it's uploaded, I want to resize it smaller for faster download
and user clicks to see the actual size that was submitted originally
in step 1.

I know how to check for file types  sizes but its the dimension that I
want to check as well.

What is the best approach? 

Thanks a 10^6







~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184417
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
i'll see if I can find it.. thanks.. come to think of it, would simply
resizing the image reduce download time? I mean it's the same file isn't
it? h...

 [EMAIL PROTECTED] 11/16/2004 10:04:03 AM 
Hello Lawrence,

I believe that tthere's a custom tag on the Macromedia Exchange that 
will do this for you. The tag was free when I downloaded it a while
back.

HTH,
Jordan

Lawrence Ng wrote:

hello,

I plan to build an app that would allow users to upload images to the
server for review. Here are the routines I want to try and implement

1. check's the image dimension before its updated (either by cffile
or
ftp)

2. Once it's uploaded, I want to resize it smaller for faster
download
and user clicks to see the actual size that was submitted
originally
in step 1.

I know how to check for file types  sizes but its the dimension that
I
want to check as well.

What is the best approach? 

Thanks a 10^6

  

-- 
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/ 
[EMAIL PROTECTED] 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184422
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
thanks Massimo

this looks nice.

 [EMAIL PROTECTED] 11/16/2004 10:14:48 AM 
 I know how to check for file types  sizes but its the dimension that
I
 want to check as well.

http://www.olimpo.ch/tmt/cfc/tmt_img 


Massimo Foti
DW tools: http://www.massimocorner.com 
CF tools:  http://www.olimpo.ch/tmt/ 


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184427
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
this is very useful to check the files I have in my directory ...

thanks!

 [EMAIL PROTECTED] 11/16/2004 10:07:20 AM 
Hi,

We've used CFX_ImageInfo which you can find:
http://www.intrafoundation.com/cfx_imageinfo.asp  and for mx at:
http://www.intrafoundation.com/CFX_ImageInfoMX.asp 

It is a very simple tag that just returns the image information.

-Kevin


On Tue, 16 Nov 2004 10:04:03 -0800, Jordan Michaels
[EMAIL PROTECTED] wrote:
 Hello Lawrence,
 
 I believe that tthere's a custom tag on the Macromedia Exchange that
 will do this for you. The tag was free when I downloaded it a while
back.
 
 HTH,
 Jordan
 
 
 
 Lawrence Ng wrote:
 
 hello,
 
 I plan to build an app that would allow users to upload images to
the
 server for review. Here are the routines I want to try and
implement
 
 1. check's the image dimension before its updated (either by cffile
or
 ftp)
 
 2. Once it's uploaded, I want to resize it smaller for faster
download
 and user clicks to see the actual size that was submitted
originally
 in step 1.
 
 I know how to check for file types  sizes but its the dimension
that I
 want to check as well.
 
 What is the best approach?
 
 Thanks a 10^6
 
 
 
 --
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/ 
 [EMAIL PROTECTED] 
 
 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184428
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
will do.. thank you

 [EMAIL PROTECTED] 11/16/2004 10:20:24 AM 
Check for CFX_image. It is great to resize images, even conditional
resizing and creating icons.

Also have a look at CFX_pureimage at the address below.
Many images produced by digital cameras add an extra bloc of
information, sometimes up to 50 k, to the images, and this can take lots
of space on your server disk.

--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm 
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184430
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
thanks Bryan...

I forgot that i could use java... silly me ...

thanks everyone.

L

 [EMAIL PROTECTED] 11/16/2004 10:24:52 AM 
If you're on MX...here's a function for ya to drop in a CFC:

 !---(Function: 
ImageSize)--
  Date Created:   November 28, 2003
  Author: Bryan
  Arguments:  FileLoc - full path of image to get details for
(string) 
required
  Purpose:returns file width/height
  Returns:ImageInfo structure with ImgWidth/ImgHeight keys
  ---
  cffunction name=ImageSize returnType=struct access=public

cfargument name=FileLoc type=string required=Yes

cfset jFileIn = 
createObject(java,java.io.File).init(ARGUMENTS.FileLoc)

cfset ImageInfo = StructNew()
cfset ImageObject = 
createObject(java,javax.imageio.ImageIO).read(jFileIn)

cfset ImageInfo.ImgWidth = ImageObject.getWidth()
cfset ImageInfo.ImgHeight = ImageObject.getHeight()

cfreturn ImageInfo

  /cffunction

Enjoy ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED] 
web: www.electricedgesystems.com 




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184437
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: image resizing

2004-11-16 Thread Lawrence Ng
free is always good... we should all live in a bartering system... money
is the root of all evil; render unto Caesar what is Caesar's and what is
God's God, you can server both God and money, etc.

oh wait, that's for another thread .. hehehe

thanks again everyone.



 [EMAIL PROTECTED] 11/16/2004 10:42:07 AM 
no prob...and hey...isn't free nice ;-)


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184440
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Macromedia gives up on the server market in Australia and walks away.

2004-11-16 Thread Lawrence Ng
sorry to hear that if its true. but you are correct in stating that
things change and we should try to learn as much as other technologies
as we can. Personally, I like to try everything and get a feel for
things. I love Java/JSP and started working with PHP a year ago and now
I love it as well. Started exploring C#, and .NET as well. 

heads up my friend... its not the end of the world. Just learn
something new everyday and you'll be fine.





 [EMAIL PROTECTED] 11/16/2004 12:27:19 PM 
... is this what we're going to be reading in the not-too-distant
future? 

I'm sorry for the provocative subject in this post, but I think
there's a real danger that Macromedia will depart the server market in
Australia, leaving us all high and dry.  I do hope this is not true. 
If I'm mistaken and it's not true, I'll be delighted and I'll gladly
take all this back.

Oh I know that Macromedia people all say NO NO NO!!! Cold Fusion is a
core product for us!  but their actions dont appear to support this
-IN AUSTRALIA. (I'm not talking about other markets, they have little
or no relevance to us on a day-to-day level)  If ColdFusion is such an
important part of the strategy, where is the activity?   Perhaps
there's lots of activity, but I dont see it anywhere.

I learned last night that Macromedia in Australia have ONE person
working on new ColdFusion server installations in Australia.  ONE.  
Can this possibly be true?One guy is supposed to take on Microsoft
and PHP?  If ColdFusion is important to Macromedia in Australia, where
is the promotion?  The advertising?  Pr? Seminars?  Trade shows? 
Australian MM People at user groups?  Australian MM people on CFAussie
and CF-TALK?  ColdFusion doesnt have the 'sex appeal' of the RIAs and
Flex and these new fangled things, but for most of us it's the core of
our businesses.

Few of the companies I've contacted this year have advanced to CFMX.
Most have stayed with CF5.  Who is supposed to be trading these people
up to later servers?  The distributors arent.  They dont promote
ColdFusion at all as far as I can see.  They'll gladly give you a
price if you ask for it, but that's not promotion/selling.  That's
order taking.  Who's doing selling?  If the existing customers can't
be persuaded to move to CFMX, what's the point of having another new
server?  Who is going to be trying to move the site owners to
Blackstone?

One guy??

I tried to get a business going several years ago in servers, but
Macromedia and the distributor at the time, Firmware bashed that on
the head and bluntly said I wasnt allowed.  (I tried to re-order a
subscription for a client and was told by Firmware's sales office that
resellers weren't permitted to sell subscriptions.)   Either that's
still the rule, or no one cares to offer any
help/guidance/encouragement to get me to sell servers or upgrades. 
And anyway the confusion over prices between the US web site and local
pricing makes it a risky business for a reseller anyway.

So if it's not practical for resellers to sell server software,  and
Macromedia here isnt selling servers, who the hell is?   If they are
relying on the resellers to sell servers, where are the sales
briefings? The emails? The brochures in the mail?   Promotional
offers?  Marketing campaigns?  Even a paragraph or two in the IT
section of the newspapers wouldnt be hard.

I do hope I've got the wrong end of the stick here, and/or
misunderstood.  But I'd like to know just what Macromedia are doing in
Australia to develop the server market.  I've heard 'motherhood
statements' like we're often talking to banks and major corporates 
about servers.  Oh yea?  How many banks have coldfusion?  The
Commonwealth Bank and Westpac dont even support minor technologies
like coldfusion in their payment gateways.

What I fear is that Macromedia here in Australia are prepared to walk
away from the server business, believing it's too hard.  I fear
they're going to roll over and concede defeat and just sell the
add-ons - the flex, the flash apps, the central and the development
tools.

In which case I'm out of business too.


One of the truths of the world we live in is that nothing stays the
same. If something doesnt grow it shrinks.  If MM dont try to grow the
server business here, it's going to shrink, and all of us developers
will see our work shrink with it.


Please .. please let me be wrong.

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
AFP Webworks
http://afpwebworks.com 
.com,.net,.org domains from AUD$20/Year



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184462
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: 

Re: Macromedia gives up on the server market in Australia and walks away.

2004-11-16 Thread Lawrence Ng
Bryan is bang on. We're from Western Canada and I attended a CFUG
meeting 3 to 4 years ago but there was only a handful of people at that
time (I'd say no more than 15 to 20) and that tells me something at that
time. That's when I decided to learn something else asap.

CF is still an awesome product but as with anything in the IT industry,
they can disappear pretty quickly at a whim... so always be prepared.



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184465
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Need Suggestions for Spreading Out Notification Mailings

2004-11-16 Thread Lawrence Ng
I agree with Dov. that's exactly how I did mine as well for my former
employers... we had to send out over 22K invites and I batched them over
a period of 2 to 3 weeks. I used a combination of tables and scheduling
functions to keep track of what has and not been sent out. Be careful
too with the spooling and don't do too much.





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184474
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Need Suggestions for Spreading Out Notification Mailings

2004-11-16 Thread Lawrence Ng
don't do alrge maling.. the spooler (or spooker as I call it) craps out
if its too big.. I played it real safe and just sent 500 at a time, wait
for 30 to 60 minutes and send another batch. I do not more than 5 per
day just to be safe.



 [EMAIL PROTECTED] 11/16/2004 2:00:46 PM 
Please keep us abreast of how this works.  I am building a system that
will need to send out 20,000 -30,000 e-mails.  I am concerned with how
the server and Coldfusion  will handle that  many e-mails at a time. SO
I am considering breaking it up into smaller mailings to happen over
night. Would like any feedback from anyone who has sent out this large
of a mailing.  
Ken 


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184490
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


MX sql driver issues

2004-11-15 Thread Lawrence Ng
hello there,

I came across this over the weekend with a fellow developer over the
weekend...

Have any of you experienced any issues simliar to this with the JDBC
driver with SQL 2000 server?  

1. Two weeks ago, they switched over to MX and it bombed under load -
it was producing constant sql deadlocks.  They believe they were able to
track down the problem with some stored procedures - why would this
issue cropped up in MX and not in CF5. Is it because MX is not as
forgiving as CF5?

2.   Then another major error occurred:

Operation failed on the data source named whatever5sql. Reason of
failure

[Macromedia][SQLServer JDBC Driver][SQLServer]Statement(s) could not
be prepared.  


This has happened twice and it required the services to be restarted.
It has been frustrating for the developer and the users.  Management
that MX was faster and more stable to justify buying it.  They had to
rollback to CF5 once and the developer doesn't want switch back at this
time, otherwise the company just wasted $1500 (CDN).

thoughts?

thank you.





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184306
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: MX sql driver issues

2004-11-15 Thread Lawrence Ng
thank you. I will have a look at it.



 [EMAIL PROTECTED] 11/15/2004 11:44:27 AM 
apart from reviewing the cf code you may want to look into the jTDS
drivers 
available from
http://jtds.sourceforge.net/ 
they are regarded as considerably more stable and also more performant
than 
microsoft's own offering


- Original Message - 
From: Lawrence Ng [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, November 15, 2004 8:37 PM
Subject: MX sql driver issues


 hello there,

 I came across this over the weekend with a fellow developer over the
 weekend...

 Have any of you experienced any issues simliar to this with the JDBC
 driver with SQL 2000 server?

 1. Two weeks ago, they switched over to MX and it bombed under load
-
 it was producing constant sql deadlocks.  They believe they were able
to
 track down the problem with some stored procedures - why would this
 issue cropped up in MX and not in CF5. Is it because MX is not as
 forgiving as CF5?

 2.   Then another major error occurred:

 Operation failed on the data source named whatever5sql. Reason of
 failure

 [Macromedia][SQLServer JDBC Driver][SQLServer]Statement(s) could
not
 be prepared.


 This has happened twice and it required the services to be
restarted.
 It has been frustrating for the developer and the users.  Management
 that MX was faster and more stable to justify buying it.  They had
to
 rollback to CF5 once and the developer doesn't want switch back at
this
 time, otherwise the company just wasted $1500 (CDN).

 thoughts?

 thank you.





 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184311
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: MX sql driver issues

2004-11-15 Thread Lawrence Ng
thank you Dave. I'll ask him.

 [EMAIL PROTECTED] 11/15/2004 11:54:21 AM 
 Have any of you experienced any issues simliar to this with 
 the JDBC driver with SQL 2000 server?  
 
 1. Two weeks ago, they switched over to MX and it bombed 
 under load - it was producing constant sql deadlocks.  They 
 believe they were able to track down the problem with some 
 stored procedures - why would this issue cropped up in MX and 
 not in CF5. Is it because MX is not as forgiving as CF5?
 
 2.   Then another major error occurred:
 
 Operation failed on the data source named whatever5sql. 
 Reason of failure
 
 [Macromedia][SQLServer JDBC Driver][SQLServer]Statement(s) 
 could not be prepared. 

I've experienced all sorts of JDBC problems with MS SQL Server. Have
you
applied Updater 1? This provides a newer version of the DataDirect
JDBC
drivers, which fixes a bunch of SQL Server problems. If that doesn't
work,
you might try using the free JDBC driver for SQL Server 2000 from the
Microsoft site, which fixes other problems. Or, you might try JTurbo
from
New Atlanta; I don't have much experience with it yet but have heard
very
good things about it. Unfortunately it's not free, but if it works it
might
be worth the money to you.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/ 
phone: 202-797-5496
fax: 202-797-5444




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184312
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URGENT! Db access problem

2004-11-12 Thread Lawrence Ng
I agree u should use either one mssql, mySQl or oracle

http://www.convert-in.com/acc2mss.htm  If $$$ are an issue (which most
certainly is nowadays), I'd go with MySQL. I'm starting to port them
from Oracle to MySQL myself ... albeit cautiously. since you're using
access, I'm assuming it not that critical =)

pretty useful apps they have there...





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184145
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFFILE upload to Linux server issues

2004-11-11 Thread Lawrence Ng
directory path is incorrect.

should be \ not / and check your file permissions.

u should implement a try catch framework as well

 [EMAIL PROTECTED] 11/11/04 9:54 AM 
Ok I took the var out of the application page an put it right on the
processing page. Now the var is set correctly however it is failing with
a new message. Does anyone think this is a permissions issue since this
is running on Linux. No problems with this on Windows where the site was
created.

The destination directory /root/a/mysite.com/html/dev/images/apps/
specified in the CFFILE tag is invalid.  

The directory either does not exist or is not accessible by this tag.  
  
The error occurred in /root/a/mysite.com/html/dev/Admin/x_addtest.cfm:
line 23
 
21 :  nameconflict=makeunique
22 :  filefield=timage1
23 :  accept=image/*

 



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183992
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: jumps

2004-11-10 Thread Lawrence Ng
flush out your browser's cache a couple of times... i noticed this with
CF quite a bit...

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183890
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Session vars and IFRAME

2004-11-09 Thread Lawrence Ng
power of positive thinking my friend =) we need of it in the world.

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183752
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Session Management

2004-11-03 Thread Lawrence Ng
hello there,

at our college, we made it a policy to have the sessions for our portal
appllcation expire after 3 minutes of inactivity. This is to address
security and privacy issues. Portal built using PHP and implemented
Novell's iChain for single signon ability across any applications that
involves authenticating the user.

 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=35

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183271
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SPAM-BULK: RE:Forcing text to wrap in table cell

2004-11-02 Thread Lawrence Ng
just thinking out loud here... 

another option is put the string in variable and do a check on string
length... if it exceeds it, then do a wrap.

 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=35

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183138
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Application.cfm update question

2004-10-29 Thread Lawrence Ng
could be session issue. you shouldn't need to do anything

chack your settings in your administrator for cf variables and such.



~|
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.houseoffusion.com/banners/view.cfm?bannerid=11

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182970
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL Deadlock

2004-10-20 Thread Lawrence Ng
how are u writing the queries? via stored procedures? or cfquery? I'm
assuming you're already cflock correct?

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=36

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182012
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Connection Reset By Peer

2004-10-18 Thread Lawrence Ng
check your firewall /cache settings and increase the number of session
requests if possible. We had similar issues but it's more a
firewall/security settings rather than CF.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Connection Reset By Peer

2004-10-18 Thread Lawrence Ng
further to my feedback, here's MM's take on it.

http://www.macromedia.com/support/coldfusion/ts/documents/connection_reset.htm
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: How to prevent multiple logins

2004-10-15 Thread Lawrence Ng
I agree with fuzzylizard. You have to make processing decisions and
have mgmt okay it. Let everyone know what may/could/would happen if they
login concurrently. Once users know this, it would meet everyone's
expectations. This pretty much boils down to communication (a lost skill
=) LOL.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Functional roles on web application team

2004-10-15 Thread Lawrence Ng
I think you mean this one. scroll down halfway

http://www.macromedia.com/resources/techniques/define/plan.html
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Functional roles on web application team

2004-10-15 Thread Lawrence Ng
the resources section has some good info as well.

hope this helps everyone... 

 [EMAIL PROTECTED] 10/15/2004 12:23:54 PM 
I think you mean this one. scroll down halfway

http://www.macromedia.com/resources/techniques/define/plan.html
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Slightly OT: Name top 5 CF developers you know one way or another

2004-10-06 Thread Lawrence Ng
we're still waiting LOL

jk

 [EMAIL PROTECTED] 10/6/2004 8:51:42 AM 
Pics?

g
- Original Message - 
From: Adrocknaphobia 
To: CF-Talk 
Sent: Wednesday, October 06, 2004 10:48 AM
Subject: Re: Slightly OT: Name top 5 CF developers you know one way
or another

Also, I would like to post my vote for Rachel Maxim as the hottest
CF
developer. ;-)

-Adam
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: User to upload to their site

2004-10-05 Thread Lawrence Ng
hello there,

That's funny. I've just been using fckEditor for the last few weeks and
notice that it does work mozilla and netscape.. haven't tried firefox
yet but since it's also from the mozilla folks, I suspec it should work.
Haven't tried Safari either =)
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: ColdFusion MX 6.1 Enterprise as JRun J2EE EAR connected to IIS

2004-10-05 Thread Lawrence Ng
I'm not sure this helps but may be related with how Windows manages
memory

I found that Windows doesn't really USE all the RAM we give it very
much - that's why it doesn't seem to care.I experienced this with my
laptop - it was fine under Windows but when I started using VMWare and
had a few different virtual sessions running at once it started giving
me memory errors.Just Windows on its own never even tried to access
the upper ranges of his RAM. ..

 
Linux by contrast will use ALL available memory - what isn't needed for
programs is used to cache frequently accessed files from disk. 

Because of this, that may be why you're/we're getting memory
inconsistencies...

I'm probably way off base so excuse me if I'm not helping any =)

cheers...

 
Kingston is pretty good about replacing memory no questions asked.So
I'll try and exchange it again.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Naïve Dual Processor Question

2004-10-05 Thread Lawrence Ng
depending on your budget, timeline and importance of the app and its
intended usersr, I'd forget about that project... 

I know someone who had dual 800 running with 1gb of ram and only with
win2K and performance was slow. Its running cfmx. Better to buy dual 2.6
or 2.8 at this time. if u can invest in xeon processors.. they are worth
the money imho. =)
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: file name with no extensions

2004-10-05 Thread Lawrence Ng
huh? why not just create a directory called Welcome and in it have an
index page the redirects them to wherever you want...

unless I misunderstood your query.

 [EMAIL PROTECTED] 10/5/2004 8:52:58 AM 
We have a request to create an opening page like so...

Welcome

with no extension. 
for example www.somesite.com/Welcome 

How is this done?.. something I've never tried.
We need it setup so that when a client types in the above address they
are taken to the right page.

Thanks mates.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Naïve Dual Processor Question

2004-10-05 Thread Lawrence Ng
i agree... opterons are good too but we decided on xeons because we
simply found them to be pretty stable since we started using them when
they first came out and stuck with them that's all.. heck even the g5 I
have (for my creative side =) is good too but man are they  LOL 

 [EMAIL PROTECTED] 10/5/2004 9:10:23 AM 
Lawrence Ng wrote:

if u can invest in xeon processors.. they are worth the money imho.
=)


Due to the system architecture, you are better off with an Opertorn 
system for multi-processor work, particularly for I/O (which really 
sucks on Xeons in comparison).Take a look at AnandTech for their 
recent reviews, and if you can afford it get one of HP's Opteron
systems.
-- 
*Damien McKenna* - Web Developer - [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: form variables without forms?

2004-10-05 Thread Lawrence Ng
have you tried cfhttp?

 [EMAIL PROTECTED] 10/5/2004 9:12:44 AM 
Hello, all.

I have to submit some values to a form action page.I have no choice
on the
far end: it is expecting POSTed form variables.On my end, though,
this is
kind of a pain, because I need to do an intermediate, non-user step
before
the submission.So my situation is:

UserForm - page on which user enters data.
ServerActionPage - page on which server does some stuff.
FormActionPage - page on far end that expects POSTed form variables.

I could set ServerActionPage to do its business in ColdFusion and put
the
variables into hidden form fields, then have _javascript_ that on the
client
side automatically submits the form.This puts one extra page in the
middle
of the process for the user.Yes, I know, the user won't really see
it, but
I always try to avoid that pesky can't hit my back button problem.

My question is this: is there some way to pass form variables that
doesn't
require a client-side action?I have successfully experimented with
adding
them to the query string, but I don't know whether this is something I
can
rely on.In other words, I have turned:

FORM name=myForm action="">
method=POST
	INPUT name=field1 value=A type=hidden
	INPUT name=field2 value=B type=hidden	
	INPUT name=field3 value=C type=hidden
/FORM

...into:

http://www.myserver.com/myFormAction.html?field1=Afield2=Bfield3=C 

Is this a bad practice?Will it work reliably?

Thanks in advance,
Matthieu
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: User to upload to their site

2004-10-05 Thread Lawrence Ng
yes that is correct... i personally prefer mozilla myself..

 [EMAIL PROTECTED] 10/5/2004 10:30:00 AM 
lawrence wrote: 
 That's funny. I've just been using fckEditor for the last few weeks
and
 notice that it does work mozilla and netscape.. haven't tried
firefox

You must be using v2.0, which is only at beta 2.It doesn't have some
necessary stuff like image managers that work in CF.Necessary for
me, at least.Also missing some tabel properties stuff.

I'm guessing that beta 3 will have these things.I talked to the CF
guy thats handling the CF side of the project and he seemed like a
pretty sharp guy.Looking forward to seeing its next beta as I and a
lot of other people have hit the tipping point, I think, with regard
to allowing IE to operate inside of our offices.

-- 
--Matt Robertson--
President, Janitor
MSB Designs, Inc.
mysecretbase.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: form variables without forms?

2004-10-05 Thread Lawrence Ng
is your network behind a firewall? do u find it takes forever for it to
process? you may need to add your proxy's address, port, username and
password... may not be allowing you to post.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: User to upload to their site

2004-10-04 Thread Lawrence Ng
I agree. FCKEditor is pretty good and works with most browsers. I found
a possible restriction in that the string buffer or content you put it
is not really unlimited. It may simply be a _javascript_ issue or
restrictions with string buffer. To see what I mean, enter large
content. even though it states it was successfully updated in the
database, it's cut off when u view it. in SQL server, the field is
defined as nText type so it should fit. I've reported it to them a
couple of weeks ago, but still haven't heard from them.

anybody else found this out?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: User to upload to their site

2004-10-04 Thread Lawrence Ng
nope. nada I just tested it for overflow conditions on my codes and
just happen to notice this that's all. I can't remember what the
character count I had but its pretty high so I don't think 99. % of
the population would see it as a restriction/problem.

L

---
Lawrence Ng
Web Manager
Vancouver Community College
Room 5060A
1155 East Broadway
Vancouver, BC V5T 4V5

t: 604.871.7156
f: 604.871.7451
e: lng at vcc dot ca 

Vancouver Community College is British Columbia's No. 1 college,
serving 25,000 full- and part-time students a year in health,
hospitality, business, English as a Second Language, adult basic
education, career access, trades and technology. 

Empty your cup so that it may be filled; become devoid to gain
totality. - Bruce Lee, Tao of Jeet Kune Do
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: User to upload to their site

2004-10-04 Thread Lawrence Ng
or did it save only partial content?

 [EMAIL PROTECTED] 10/4/2004 12:07:41 PM 
Lawrence Ng wrote:

 I agree. FCKEditor is pretty good and works with most browsers. I
found
 a possible restriction in that the string buffer or content you put
it
 is not really unlimited. It may simply be a _javascript_ issue or
 restrictions with string buffer. To see what I mean, enter large
 content. even though it states it was successfully updated in the
 database, it's cut off when u view it. in SQL server, the field is
 defined as nText type so it should fit. I've reported it to them a
 couple of weeks ago, but still haven't heard from them.
 
 anybody else found this out?

I actually have had a similar problem but I've been unable to save the

data... like when I click Save, it just doesn't do anything.It only

happens when I have a large amount of text (and really, not even that 
large... but most of the entries on this page have done it... 
fans.bobguiney.com/blog.php ...
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Session variables not working despite being enabled?

2004-09-30 Thread Lawrence Ng
was it cflocated before the redirection?

 [EMAIL PROTECTED] 9/30/2004 12:47:32 PM 
Here's my cfapplication tag:

cfapplication sessionmanagement=yes setclientcookies=yes 
name=Secure3 clientmanagement=yes setdomaincookies=yes /

Sessions are turned on in the server.

I set session variables on one template but it doesn't show up on 
another which is included right afterwards.Any idea?
-- 
*Damien McKenna* - Web Developer - [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Variable session is undefined in CFMX

2004-09-29 Thread Lawrence Ng
did you have a cfparam for the variable session... similar to a default value in your application.cfm?

 [EMAIL PROTECTED] 9/29/2004 8:00:39 AM 
Hello,

I have CFMX 6.1 on one server and CF 5 on another. Both run the same CF program I created, however, on the one running CFMX I get a variable session is undefined on the login.cfm page that I don't get on the login.cfm page on the machine running CF 5.

The code (in brief) for the exact page on both machines is below.

I get the error on the last line: CFSET temp=structdelete(session,errormsg)

I ran the tester on CFMX admin to see what compatibility issues the coding on this page had with CFMX, but it revealed nothing.

Any help would be appreciated.

Thanks.

Robert O.
HWW
¿


form method=POST action="" name=f1

CFIF IsDefined(session.errormsg)CFoutput#session.errormsg#/CFOUTPUT/CFIF
td bgcolor=#FF valign=middle align=rightbfont face=Arial size=2Password:/font/b/td
 td bgcolor=#FF valign=middlefont face=Verdana size=2binput type=password size=20 name=password/b/font/td
/tr
tr
 td bgcolor=#FF valign=middlenbsp;/td
 td bgcolor=#FF valign=middleinput type=image src="" name=submit width=93 height=27/td
/tr 
/form
CFSET temp=structdelete(session,errormsg)
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Truncating database field

2004-09-29 Thread Lawrence Ng
u can also use mid() function

 [EMAIL PROTECTED] 9/29/2004 12:18:55 PM 
I do something similar for my blog on my homepage
http://www.stangocity.com 
http://www.stangocity.com 

 
cfoutput query=hotnews
 #title#br
 #left(description,50)#..
/cfoutput

-Original Message-
From: Mark Henderson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 29, 2004 3:16 PM
To: CF-Talk
Subject: Truncating database field

Currently I have a hotnews page which calls information from an access
database table. In this table when the data is entered it captures the
date
and time, and I would now like to be able to do two things with this.
In
another linked page I'd like to display the title and only the first
50
characters of the relevant description field for each item. A google
search
didn't reveal much. I'm sure this is possible..any ideas?

Here's the query...
cfquery datasource=#request.dsn# name=hotnews
SELECT
 news_ID,title,description,image,date_added,active
FROM
 hot_news
/cfquery

TIA
MarkH 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




cfhttp times out...

2004-09-29 Thread Lawrence Ng
hi all,

can't figure this out for the life of me.. I have a test box which executes a cfhttp with no problem and on our production box, the cfhttp times out.. no security restrictions for now.

*---
 The request has exceeded the allowable time limit Tag: cfhttp

 
The error occurred in /srv/www/htdocs/study/process.cfm: line 56

54 :value=1
55 :name=INTEREST139287
56 : /cfif
57 : 	
58 : 

Please try the following:

 * Check the ColdFusion documentation to verify that you are using the correct syntax.
 * Search the Knowledge Base to find a solution to your problem.

Browser	Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040803
Remote Address	142.30.247.82
Referrer	http://cclgw1.vcc.ca/study/ 
Date/Time	29-Sep-04 04:09 PM
Stack Trace
at cfprocess2ecfm863207565.runPage(/srv/www/htdocs/study/process.cfm:56)

coldfusion.runtime.RequestTimedOutException: The request has exceeded the allowable time limit Tag: cfhttp
at coldfusion.tagext.net.HttpTag.checkTimeout(HttpTag.java:1888)
	at coldfusion.tagext.net.HttpTag.doEndTag(HttpTag.java:991)
	at cfprocess2ecfm863207565.runPage(/srv/www/htdocs/study/process.cfm:56)
	at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
	at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)

etc...
*

thoughts?

L
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




best approach - appending fields in recordset

2004-09-20 Thread Lawrence Ng
hello folks,

I have a situation where the database was designed (limitation in the
db unfortunately) so that if a user wants to enter a lot of
text/content, they would have to add a new line for every entry that
doesn't fit. Think textarea but only your using multiple input type
text =(

so when I pull up the query (which is correct), it displays all the
lines/rowsof content for that field entered.

example:

courseID
courseDescription (varchar 80)

so if the description was more than 80 chars, then they would have to
add another line. if the description was 350 chars, then 5 lines, etc.

so, how would you approach this where I could append the results from
the courseDescription field to make it all look like one?

thanks,

Lawrence
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Problem with CreateODBCDateTime(Now())

2004-09-20 Thread Lawrence Ng
if possible, a better approach I think is to have the database insert it
instead of CF. This way, you know for sure there would be no errors.

 [EMAIL PROTECTED] 9/20/2004 11:58:29 AM 
cfset datetime=cfoutput#CreateODBCDateTime(Now())#/cfoutput

Your problem is that you're not saving a date in your database, but the
string cfoutput{ts '2004-09-20 13:21:00'}/cfoutput

If you have SET Logindate='#datetime#', in your SQL and it does not
causes an error, it means your
date field is not a date field, but a TEXT field.

cfset datetime=CreateODBCDateTime(Now())

cfquery datasource=dsn
UPDATE trackusers
SET Logindate=#datetime#, ... (no quotes here)
/cfquery
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm 
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Problem with CreateODBCDateTime(Now())

2004-09-20 Thread Lawrence Ng
you could create a trigger.. still the same approach I would think

 [EMAIL PROTECTED] 9/20/2004 12:17:26 PM 
On Mon, 20 Sep 2004 12:05:02 -0700, Lawrence Ng [EMAIL PROTECTED] wrote:
 if possible, a better approach I think is to have the database insert
it
 instead of CF. This way, you know for sure there would be no errors.

That'd be fine for an INSERT...this is an UPDATE statement tho

-- 
Charlie Griefer


Marta was watching the football game with me when she said, 
You know, most of these sports are based on the idea of one group 
protecting its territory from invasion by another group. 
Yeah, I said, trying not to laugh. Girls are funny.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: best approach - appending fields in recordset

2004-09-20 Thread Lawrence Ng
the description field is on a separate table. the problem is that field
type which is only char type not ntext/memo which would make it easier
to order them properly.

 [EMAIL PROTECTED] 9/20/2004 9:29:33 AM 
With a one-to-many relationship like this, you might want courseID and
courseDescription to be in seperate tables. You could then join ID and
Description to bring back a list of descriptions, grouping the
descriptions together to make it look like one description. Your
Description table would probably have to have some type of ordering
value in it though so you'd know how to construct the descriptions in
the correct order.

- Original Message - 
From: Lawrence Ng 
To: CF-Talk 
Sent: Monday, September 20, 2004 10:10 AM
Subject: best approach - appending fields in recordset

hello folks,

I have a situation where the database was designed (limitation in
the
db unfortunately) so that if a user wants to enter a lot of
text/content, they would have to add a new line for every entry that
doesn't fit. Think textarea but only your using multiple input type
text =(

so when I pull up the query (which is correct), it displays all the
lines/rowsof content for that field entered.

example:

courseID
courseDescription (varchar 80)

so if the description was more than 80 chars, then they would have
to
add another line. if the description was 350 chars, then 5 lines,
etc.

so, how would you approach this where I could append the results
from
the courseDescription field to make it all look like one?

thanks,

Lawrence
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Problem with CreateODBCDateTime(Now())

2004-09-20 Thread Lawrence Ng
its a string now and no longer a datetime type

you can always just insert the now() function in the query

cfquery datasource=dsn
	UPDATE trackusers
	SET Logindate='#now()#', 
 IP='#remote_addr#', 
 browser='#http_user_agent#',
 
/cfquery


 [EMAIL PROTECTED] 9/20/2004 11:42:12 AM 
I'm trying to set the date when a user logs in, but it keeps showing up
in the database as: 
cfoutput{ts '2004-09-20 13:21:00'}/cfoutput

on my action page I have
cfset datetime=cfoutput#CreateODBCDateTime(Now())#/cfoutput

cfquery datasource=dsn
	UPDATE trackusers
	SET Logindate='#datetime#', IP='#remote_addr#',
browser='#http_user_agent#', remote_host='#remote_host#',
remote_referer='#http_referer#'
	WHERE username = '#username#' 
	AND pwd = '#pwd#'
/cfquery

What am I doing wrong?

Thanks
Steve
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: best approach - appending fields in recordset

2004-09-20 Thread Lawrence Ng
yeah... that's right...

my best guess is that I'll sort/order them asc fashion...

first line entered (id 1), second line (id 2)...

i'll see what I come up with

 [EMAIL PROTECTED] 9/20/2004 12:43:59 PM 
So, if you've got 10 description entries that all go together somehow
to form the overall description for one course, how do you know in which
order they are supposed to go? Which sentence comes first, second, etc?

Wouldn't you need some sort of ordering field to do this on the
description table?
- Original Message - 
From: Lawrence Ng 
To: CF-Talk 
Sent: Monday, September 20, 2004 2:36 PM
Subject: Re: best approach - appending fields in recordset

the description field is on a separate table. the problem is that
field
type which is only char type not ntext/memo which would make it
easier
to order them properly.

snip
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: best approach - appending fields in recordset

2004-09-20 Thread Lawrence Ng
yeah those were my thoughts too...

 [EMAIL PROTECTED] 9/20/2004 12:50:58 PM 
assuming you have this, I'd order teh content by courseid.Then use
the group attribute of cfoutput to loop thgough all these descriptions
outputing them.This will basically do

COURSEID
DESCR1DESCR2DESCR3..DESCRN

format as desired

Doug

- Original Message -
From: G [EMAIL PROTECTED]
Date: Mon, 20 Sep 2004 14:43:59 -0500
Subject: Re: best approach - appending fields in recordset
To: CF-Talk [EMAIL PROTECTED]

So, if you've got 10 description entries that all go together somehow
to form the overall description for one course, how do you know in
which order they are supposed to go? Which sentence comes first,
second, etc?

Wouldn't you need some sort of ordering field to do this on the
description table?
- Original Message - 
From: Lawrence Ng 
To: CF-Talk 
Sent: Monday, September 20, 2004 2:36 PM
Subject: Re: best approach - appending fields in recordset

the description field is on a separate table. the problem is that
field
type which is only char type not ntext/memo which would make it
easier
to order them properly.

snip
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




SuSE Linux Enterprise Server 9 anyone?

2004-09-14 Thread Lawrence Ng
hello all,

Are/Have any of you installed SuSE Linux Enterprise Server 9 which was
just released last month and see how it is with MX?

We are still deciding if we want to install version 9 or current
version 8.

The key is the verity search tool for files which currently does not
work under our Nix platform. Hopefully Blackstone would improve on
things even under version 9.

feedbacks appreciated.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SuSE Linux Enterprise Server 9 anyone?

2004-09-14 Thread Lawrence Ng
Thanks Jordan...

do u have the url to blue dragon for more info?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SuSE Linux Enterprise Server 9 anyone?

2004-09-14 Thread Lawrence Ng
thank you.

 [EMAIL PROTECTED] 9/14/2004 11:16:32 AM 
Lawrence Ng wrote:

 Thanks Jordan...

 do u have the url to blue dragon for more info?

Sure. =)

http://www.newatlanta.com/products/bluedragon/index.cfm 

-- 
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/ 
[EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Verity or a classic search?

2004-09-10 Thread Lawrence Ng
i'd stick with verity myself because you could use various search
tools/processing techniques like soundex, etc.

 [EMAIL PROTECTED] 9/10/2004 8:12:25 AM 
Hi guys,

I looking for some advice. I have a DB with a table book which contains

a field keywords. This field will be fill in with word separated by 
comma like (IT, Computer, Coldfusion, CFML, Web). This field can be 
updated and key words can be added or deleted.

The user will use an UI with a search form where the search criterias 
could be: author, title and keywords for instance.The keywordfield

will be a multiple select menu.

My question is to know which one will be the faster to process for the

application. A verity collection or a classic SQL query which will 
contain the specific keywords?

Thanks,

Jean-Marc
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Setting up CF MX in IIS6

2004-09-10 Thread Lawrence Ng
Its simply a mapping issue to associate file extensions. read your IIS
doc on how to do that. its pretty straightforward. I don't have it off
the top of my head ..

 [EMAIL PROTECTED] 9/10/2004 9:38:13 AM 
I am upgrading from Website Professional to IIS6.I am using CF MX.

How do I associate .htm files with ColdFusion.I know how to do it in

Website Pro, but not IIS.

All of all .htm files now have CF templates, so they have to be read by
CF.

Thanks
Jacob
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: doubling E-mail

2004-09-10 Thread Lawrence Ng
make sure u qualify the query to be more specific.

 [EMAIL PROTECTED] 9/10/2004 1:28:44 PM 
I have a query that pulls out an E-mail address.Then I loop through
the query and output the E-mail addresses.When it outputs the address
it doubles it up.

For example:

cfquery ...
 SELECT Email
 FROM table
/cfquery

cfoutput query=query
 #Email#br
/cfoutput

The results look like this:

[EMAIL PROTECTED]@example.com 

The query.RecordCount says there are 2 records.This is odd,
considering that when I run the exact same query in the MySQL Control
Center, it returns only one record.Thinking that might have something
to do with it in some odd way, I tried this:

cfoutput query=query
 #Email#cfabort
/cfoutput

It still outputs [EMAIL PROTECTED]@example.com 

If I output Email outside of the loop, it shows correctly.

Anyone have any ideas?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: BlackStone Beta 1

2004-09-09 Thread Lawrence Ng
this one I think...?

http://www.macromedia.com/support/programs/beta.html
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: BlackStone Beta 1

2004-09-09 Thread Lawrence Ng
click on the coldfusion survey link and that takes u to their beta
program application form.

 [EMAIL PROTECTED] 9/9/2004 10:30:29 AM 
That may well be the one. I thought it was a more specific one, but
for
those interested in the beta, try that link. If it's not the one, I'm
sure
one of the fine folk from MM will post up a more specific one. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Form Filling w/ activePDF Toolkit

2004-09-09 Thread Lawrence Ng
Hi Robert,

I'd like to request the same please. Could you also please forward it
to me?

thank you.

Lawrence

 [EMAIL PROTECTED] 9/9/2004 12:09:52 PM 
I have some samples of some code that I've used successfully with it. I
don't think I can include attachments to messages to the list, so I'll
send it to you directly.

 
.YEX. 

-Original Message-
From: Tim Do [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 09, 2004 2:53 PM
To: CF-Talk
Subject: Form Filling w/ activePDF Toolkit

Does anybody have some sample code on how to do form filling using cf 
sql?
I tried to email them but they said the only had asp samples.

Thanks,
Tim 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Hi Doug,

The results are always returned as 0.

 [EMAIL PROTECTED] 9/7/2004 5:25:59 PM 
what is teh value of theResults.recordsSearched after cfsearch ??

Doug

- Original Message -
From: vcc person [EMAIL PROTECTED]
Date: Tue, 07 Sep 2004 16:21:59 -0400
Subject: Indexing on Linux systempermissions?
To: CF-Talk [EMAIL PROTECTED]

Hi everyone,

I was able to do verity searching a db (Oracle) under SuSe Linux with
CFMX 6.1 enterprise.

My problem is that it is returning 0 results for PDFS, DOCs, TXT, XLS,
etc. files even though I create a test file with the search word in
it.

Is this is Linux/Unix file permission configuration?

here's a snippet of my coding ...



cfparam name=IndexDir default=/www/html/web/mypdfs

cflock name=Createone type=EXCLUSIVE timeout=#CreateTime(0, 0,
30)#
cfcollection action="" collection=PDFCollection
path=/opt/coldfusionmx/verity/
/cflock

cfindex collection=PDFCollection
action="">
extensions=.txt, .pdf, .html, .htm, .txt, .xls, .doc
key=#IndexDir#
type=path
urlpath=htp://www.whatever.org/thepdfs
recurse=No
language=English

cfoutput
The collection #IndexDir# has been indexed.
/cfoutput

then use a test search... for the string computer

cfsearch collection=PDFCollection name=theResults type=SIMPLE
criteria=computer

cfoutput query=theResults

File: #Key#

Document Title (if any): #Title#

Score: #Score#

Summary: #Summary#
/cfoutput

Result is 0

=(

what is up with this?

thanks,

Larry
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Hi Doug,

I believe so. We are running SuSE Linux 8.2 and may plan to upgrade in
a few months toSuSE Enterprise Server 9 but not quite sure yet. 

 
The group and owner for the verity directory are coldfusion:coldfusion
for all files and coldfusion:root for the directory itself.The
coldfusion user has full read/write access to the verity directory. 

 
CF runs as 'cf' on SuSE so I'm not sure if I want the owner to be
apache - the web server itself runs as apache but CF is under a separate
user name.

Basically does it depend which process will need write access - Cold
Fusion or Apache?

If the collection is not indexing then why would it work when I tried
to cfsearch on our tables then? If it sin't working, I would think that
the collection wouldn't work for indexing the db tables part as well.

 hmmm?



 Douglas Knudsen [EMAIL PROTECTED] 9/8/2004 8:09:03 AM 
seems the collection is not getting indexed.Sure CF has rights to
the directories?FYI, once the collection exists, no need to recreate
it.

Doug

On Wed, 08 Sep 2004 07:53:46 -0700, Lawrence Ng [EMAIL PROTECTED] wrote:
 Hi doug,
 
 Value is always 0.
 
 Larry
 
  [EMAIL PROTECTED] 9/7/2004 5:25:59 PM 
 what is teh value of theResults.recordsSearched after cfsearch ??
 
 Doug
 
 - Original Message -
 From: vcc person [EMAIL PROTECTED]
 Date: Tue, 07 Sep 2004 16:21:59 -0400
 Subject: Indexing on Linux systempermissions?
 To: CF-Talk [EMAIL PROTECTED]
 
 Hi everyone,
 
 I was able to do verity searching a db (Oracle) under SuSe Linux
with
 CFMX 6.1 enterprise.
 
 My problem is that it is returning 0 results for PDFS, DOCs, TXT,
XLS,
 etc. files even though I create a test file with the search word in
 it.
 
 Is this is Linux/Unix file permission configuration?
 
 here's a snippet of my coding ...
 
 
 
 cfparam name=IndexDir default=/www/html/web/mypdfs
 
 cflock name=Createone type=EXCLUSIVE timeout=#CreateTime(0, 0,
 30)#
 cfcollection action="" collection=PDFCollection
 path=/opt/coldfusionmx/verity/
 /cflock
 
 cfindex collection=PDFCollection
 action="">
 extensions=.txt, .pdf, .html, .htm, .txt, .xls, .doc
 key=#IndexDir#
 type=path
 urlpath=htp://www.whatever.org/thepdfs
 recurse=No
 language=English
 
 cfoutput
 The collection #IndexDir# has been indexed.
 /cfoutput
 
 then use a test search... for the string computer
 
 cfsearch collection=PDFCollection name=theResults type=SIMPLE
 criteria=computer
 
 cfoutput query=theResults
 
 File: #Key#
 
 Document Title (if any): #Title#
 
 Score: #Score#
 
 Summary: #Summary#
 /cfoutput
 
 Result is 0
 
 =(
 
 what is up with this?
 
 thanks,
 
 Larry
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: web stats

2004-09-08 Thread Lawrence Ng
what's the url? the url provided before may be incorrect... page not
found =(

thanks

 [EMAIL PROTECTED] 9/8/2004 9:11:24 AM 
I have also used Awstats on a Linux platform.

Works well.

Yves
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: web stats

2004-09-08 Thread Lawrence Ng
thank u all. I got it going to sourceforge =)

 [EMAIL PROTECTED] 9/8/2004 10:00:39 AM 
www.awstats.org http://www.awstats.org/ 

awstats.sourceforge.net http://awstats.sourceforge.net/ 



--Ferg
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: web stats AWSTATS filtering

2004-09-08 Thread Lawrence Ng
hi again,

I had a quick look at their demo and was wondering...

is there a way to filter out a range of networks so that the stats are
a bit more realistic? We are a local college and I'm sure a lot of our
students visit the page inside/within the college. that may screw the
stats a bit. I'd like to filter out our IP ranges if possible.

would it work for subdomains as well? ie. departmentA.company.com

 [EMAIL PROTECTED] 9/8/2004 10:02:49 AM 
thank u all. I got it going to sourceforge =)

 [EMAIL PROTECTED] 9/8/2004 10:00:39 AM 
www.awstats.org http://www.awstats.org/ 

awstats.sourceforge.net http://awstats.sourceforge.net/ 



--Ferg
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: web stats AWSTATS filtering

2004-09-08 Thread Lawrence Ng
ooopsss... never mind folks... I found out you could =)

 [EMAIL PROTECTED] 9/8/2004 10:07:07 AM 
hi again,

I had a quick look at their demo and was wondering...

is there a way to filter out a range of networks so that the stats are
a bit more realistic? We are a local college and I'm sure a lot of
our
students visit the page inside/within the college. that may screw the
stats a bit. I'd like to filter out our IP ranges if possible.

would it work for subdomains as well? ie. departmentA.company.com

 [EMAIL PROTECTED] 9/8/2004 10:02:49 AM 
thank u all. I got it going to sourceforge =)

 [EMAIL PROTECTED] 9/8/2004 10:00:39 AM 
www.awstats.org http://www.awstats.org/ 

awstats.sourceforge.net http://awstats.sourceforge.net/ 



--Ferg
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: cfcookie

2004-09-08 Thread Lawrence Ng
I'm just thinking out loud here but could u use the referrer to check
where they came from and set your processing rules accordingly?

if referrer == domain in list {
 cookie is baked
}

else {
start baking a cookie
}

I could be wrong...

 [EMAIL PROTECTED] 9/8/2004 10:18:07 AM 
Can a cookie be shared between domains?That is, if I have a family of

web sites, can they share a given cookie?

I want to have user polls posted on several different web sites and
wish 
to limit visitors to one vote per poll, even if they come across the
poll 
on a different web site in the family.Can I do this by setting a
cookie?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: DHTML Drag and Drop pt.2

2004-09-08 Thread Lawrence Ng
Hey Matthieu,

That's exactly what I've been doing for the last few years. I thought
others have been doing the same =) good to know I'm not the only one.

 [EMAIL PROTECTED] 9/8/2004 10:15:34 AM 
Guy,

 
One tip on debugging _javascript_: I am sure there is some smart way to
do it.
I don't know this smart way.I find the errors when they come up in
IE.
Since the line numbers in the _javascript_ error that comes up (you can
get it
by double-clicking the little yellow icon in the lower, left-hand
corner
when you get an error) don't match those in your original code, it
gets
confusing.So, view the source, copy the entire document, paste it
into a
blank CFStudio page, and use the line number counts to find your
problem
line there.This has saved me a lot of time.

 
Of course, if someone knows the smart way to do debug _javascript_, I
too
would love to know of it.

 
:)

 
Matthieu
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Doug,

thanks for the heads up... man am I screwed LOL

this says it all...

http://www.petefreitag.com/item/127.cfm

I followed your previous postings as well and it seems that Lindex
could be the key.. 

has anyone tried it on non RH linux distros?

worth the $$$?


 Doug James [EMAIL PROTECTED] 9/8/2004 10:48:36 AM 
We use the database to perform our indexing (we are on RedHat) but I
had 
a thought that may or may not affect indexing on linux. The Verity 
spider, currently, does not get installed on a linux box so if the 
cfindex tag is calling the spider then the index would never get 
populated. I am not sure how to test the theory but it might be worth 
investigating.

Doug
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
or this possibly

http://www.macromedia.com/support/coldfusion/ts/documents/hotfix_verity_linux.htm

 [EMAIL PROTECTED] 9/8/2004 11:51:31 AM 
Doug,

thanks for the heads up... man am I screwed LOL

this says it all...

http://www.petefreitag.com/item/127.cfm 

I followed your previous postings as well and it seems that Lindex
could be the key.. 

has anyone tried it on non RH linux distros?

worth the $$$?


 Doug James [EMAIL PROTECTED] 9/8/2004 10:48:36 AM 
We use the database to perform our indexing (we are on RedHat) but I
had 
a thought that may or may not affect indexing on linux. The Verity 
spider, currently, does not get installed on a linux box so if the 
cfindex tag is calling the spider then the index would never get 
populated. I am not sure how to test the theory but it might be worth 
investigating.

Doug
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
will try... swamped at work at the moment LOL will let everyone know
tommorrow for sure.

notice the fix only goes up to version 8 (SuSE) and we;re running
8.2... i'll see what happens.

 [EMAIL PROTECTED] 9/8/2004 12:32:40 PM 
Do you have the following hotfix installed?

http://www.macromedia.com/support/coldfusion/ts/documents/hotfix_verity_linux.htm

Andrew.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Haven't installed yet but I found this little nugget

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/intro6.htm 

hmmm.. have to launch the new app by the end of the month... u think
Blackstone will be released in a week? LOL

has anyone used lindex with mx6.1 yet under linux?

thansk

 [EMAIL PROTECTED] 9/8/2004 12:32:40 PM 
Do you have the following hotfix installed?

http://www.macromedia.com/support/coldfusion/ts/documents/hotfix_verity_linux.htm

Andrew.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Lindex is a CF extension...

>From their site 

*-

Lindex, short for 'Lucene index,' is a high-performance, full-featured text search engine that allows developers to create document collections for easy indexing and quick searching. Because the Lindex interface is similar to Verity Search Engine, it will already be familiar to ColdFusion developers. The advantage of Lindex over Verity is that Lindex is pure Java and ColdFusion, so it can be ported to any platform, including Mac OS X.

*-

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=1005033



 [EMAIL PROTECTED] 9/8/2004 2:42:32 PM 
Not sure if I missed something in this posting but what is Lindex?

Andrew.

- Original Message -
From: Lawrence Ng [EMAIL PROTECTED]
Date: Wed, 08 Sep 2004 13:19:30 -0700
Subject: Re: Indexing on Linux systempermissions?
To: CF-Talk [EMAIL PROTECTED]

Haven't installed yet but I found this little nugget

 http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/intro6.htm 

 hmmm.. have to launch the new app by the end of the month... u think
 Blackstone will be released in a week? LOL

 has anyone used lindex with mx6.1 yet under linux?

 thansk

 [EMAIL PROTECTED] 9/8/2004 12:32:40 PM 
 Do you have the following hotfix installed?

 http://www.macromedia.com/support/coldfusion/ts/documents/hotfix_verity_linux.htm 

 Andrew.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Yeah I thought so too... guess I'll have to wait for Blackstone

 [EMAIL PROTECTED] 9/8/2004 2:53:58 PM 
Oh ok... I know what Lucene is, it an Apache project, we looked at the
when we had the PDF problem. Problem with is it that it has no build
in document parses, so it was just a easy to use PDFbox and Verity.

Does LIndex have the parses build in? 

Also it is a Macromedia product according to the link you provided, so
why don't MM use it instead of Verity? How strange...

Andrew.

- Original Message -
From: Lawrence Ng [EMAIL PROTECTED]
Date: Wed, 08 Sep 2004 14:46:16 -0700
Subject: Re: Indexing on Linux systempermissions?
To: CF-Talk [EMAIL PROTECTED]

Lindex is a CF extension...

 From their site 

 *-

 Lindex, short for 'Lucene index,' is a high-performance,
full-featured text search engine that allows developers to create
document collections for easy indexing and quick searching. Because
the Lindex interface is similar to Verity Search Engine, it will
already be familiar to ColdFusion developers. The advantage of Lindex
over Verity is that Lindex is pure Java and ColdFusion, so it can be
ported to any platform, including Mac OS X.

 *-

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=1005033


  [EMAIL PROTECTED] 9/8/2004 2:42:32 PM 

Not sure if I missed something in this posting but what is Lindex?

 Andrew.

 - Original Message -
 From: Lawrence Ng [EMAIL PROTECTED]
 Date: Wed, 08 Sep 2004 13:19:30 -0700
 Subject: Re: Indexing on Linux systempermissions?
 To: CF-Talk [EMAIL PROTECTED]

 Haven't installed yet but I found this little nugget

 http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/intro6.htm 

 hmmm.. have to launch the new app by the end of the month... u think
 Blackstone will be released in a week? LOL

 has anyone used lindex with mx6.1 yet under linux?

 thansk

  [EMAIL PROTECTED] 9/8/2004 12:32:40 PM 
 Do you have the following hotfix installed?

http://www.macromedia.com/support/coldfusion/ts/documents/hotfix_verity_linux.htm

Andrew.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Indexing on Linux systempermissions?

2004-09-08 Thread Lawrence Ng
Ah I see.. so that was u then Andrew... 

is it just me ... BlackStone == BS initials which we all know could
also stand for  =)

jk ... long day... end it with a laugh

 [EMAIL PROTECTED] 9/8/2004 3:08:58 PM 
According to MM, Blackstone will have an up-to-date version of Verity.
Take a look at this forum entry from a guy at MM who anwsered my
question about the PDF problem.

http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=142threadid=871911

Andrew.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Suggestion for Windows HTML editor

2004-09-07 Thread Lawrence Ng
I'd stick with Studio.. using it for years and still do.

 [EMAIL PROTECTED] 9/7/2004 12:07:33 PM 
I'm looking for a HTML/CFML editor for Windows with the following 
requirements:

1. A projects system for easily managing a limited directory structure

regarding an individual project.A simple file browser could suffice.

2. _Good_ syntax highlighting, i.e. able to highlight _javascript_ and 
HTML and CSS in the same file.

3. Good basic features, similar to EditPlus
(http://www.editplus.com/).

4. Some sort of snippets / clip-book feature, for often-used code 
snippets.Ideally these should be programmable like NoteTab.

5. Small footprint as my laptop only has 64meg of RAM currently.

6. Code hinting, e.g. I enter cfquery and it shows a tooltip of the 
attributes.

I've gotten good enough with CFML and CSS that I really don't need 
Dreamweaver's WYSIWYG facilities any longer and would like something 
light enough to run on my new laptop at work (500Mhz P3).

In effect I'm looking for a cross between EditPlus (for its wonderful 
basic functionality) and NotePad (for is programmability), with a few 
extras.

Any suggestions?

I'm not interested in Eclipse as it is too big for me, and a little OTT

for basic text editing.
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED] 
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Suggestion for Windows HTML editor

2004-09-07 Thread Lawrence Ng
sorry. I did not clarify my response earlier. I'm using Studio 5 not the
Studio MX suite they have which includes Dreamweaver. I think it's not
longer in production. I like it because u could connect to datasources
with it and has a cleaner interface. I'm not a designer and that's why I
like Studio 5.

there use to be a free one called 1stPage but that was years ago which
had the same homesite/studio look to it. 

 [EMAIL PROTECTED] 9/7/2004 12:07:33 PM 
I'm looking for a HTML/CFML editor for Windows with the following 
requirements:

1. A projects system for easily managing a limited directory structure

regarding an individual project.A simple file browser could suffice.

2. _Good_ syntax highlighting, i.e. able to highlight _javascript_ and 
HTML and CSS in the same file.

3. Good basic features, similar to EditPlus
(http://www.editplus.com/).

4. Some sort of snippets / clip-book feature, for often-used code 
snippets.Ideally these should be programmable like NoteTab.

5. Small footprint as my laptop only has 64meg of RAM currently.

6. Code hinting, e.g. I enter cfquery and it shows a tooltip of the 
attributes.

I've gotten good enough with CFML and CSS that I really don't need 
Dreamweaver's WYSIWYG facilities any longer and would like something 
light enough to run on my new laptop at work (500Mhz P3).

In effect I'm looking for a cross between EditPlus (for its wonderful 
basic functionality) and NotePad (for is programmability), with a few 
extras.

Any suggestions?

I'm not interested in Eclipse as it is too big for me, and a little OTT

for basic text editing.
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED] 
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




  1   2   >