Test

2005-10-02 Thread Bobby Hartsfield
Just testing. I haven’t seen my post come through yet.

 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 9/30/2005
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219830
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: Test

2005-10-02 Thread Michael Dinowitz
Network problem over Saturday. I'm not online from friday night to sat night so 
I missed it. Once I got back online I called it in.

Just testing. I haven’t seen my post come through yet.

 
.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 9/30/2005

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219831
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


a little loop help plz

2005-10-02 Thread Tim Laureska
I've got a form that passes two variable lists:
1) Product id (could be up to 3 different product id's)
2) Quantity of product corresponding to the product name:

I'm trying to insert the product ids and the product quantities into the
same table.  I can break down and insert one variable list (ex. product
id) into a linking table by using something like:

cfset product_List=#form.product_id#
cfloop index=i list=#product_list# delimiters=,
cfquery datasource=#datasource#
INSERT INTO products (product_id)
VALUES #i#
/cfquery
/cfloop

But If I want to breakdown the quantity list for that product_id and
insert it into the same linking table I get stuck

Can someone lend a hand here with a pointer
Thanks
Tim



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219832
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: Test

2005-10-02 Thread Bobby Hartsfield
Yeah, I noticed the site was down after I posted that

 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 02, 2005 2:17 AM
To: CF-Talk
Subject: Re: Test

Network problem over Saturday. I'm not online from friday night to sat night
so I missed it. Once I got back online I called it in.

Just testing. I haven’t seen my post come through yet.

 
.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 9/30/2005



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219833
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: a little loop help plz

2005-10-02 Thread Adrian Lynch
If I understand correctly, you're looking to loop over two lists at the same
time.

If the lists are productIDs and quantities then try the following:

cfloop from=1 to#ListLen(productIDs)# index=i

cfoutput
p
Product ID: #ListGetAt(productIDs, i)#br /
Quantity: #ListGetAt(quantities, i)#
/p
/cfoutput

/cfloop


Swap in your SQL code and away you go.

Ade

-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED]
Sent: 01 October 2005 22:43
To: CF-Talk
Subject: a little loop help plz


I've got a form that passes two variable lists:
1) Product id (could be up to 3 different product id's)
2) Quantity of product corresponding to the product name:

I'm trying to insert the product ids and the product quantities into the
same table.  I can break down and insert one variable list (ex. product
id) into a linking table by using something like:

cfset product_List=#form.product_id#
cfloop index=i list=#product_list# delimiters=,
cfquery datasource=#datasource#
INSERT INTO products (product_id)
VALUES #i#
/cfquery
/cfloop

But If I want to breakdown the quantity list for that product_id and
insert it into the same linking table I get stuck

Can someone lend a hand here with a pointer
Thanks
Tim


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219834
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: a little loop help plz

2005-10-02 Thread Tim Laureska
Thanks Adrian... I was able to use that example as a guide for what I
needed.  A new thing learned today!


-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 02, 2005 4:06 AM
To: CF-Talk
Subject: RE: a little loop help plz

If I understand correctly, you're looking to loop over two lists at the
same
time.

If the lists are productIDs and quantities then try the following:

cfloop from=1 to#ListLen(productIDs)# index=i

cfoutput
p
Product ID: #ListGetAt(productIDs, i)#br /
Quantity: #ListGetAt(quantities, i)#
/p
/cfoutput

/cfloop


Swap in your SQL code and away you go.

Ade

-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED]
Sent: 01 October 2005 22:43
To: CF-Talk
Subject: a little loop help plz


I've got a form that passes two variable lists:
1) Product id (could be up to 3 different product id's)
2) Quantity of product corresponding to the product name:

I'm trying to insert the product ids and the product quantities into the
same table.  I can break down and insert one variable list (ex. product
id) into a linking table by using something like:

cfset product_List=#form.product_id#
cfloop index=i list=#product_list# delimiters=,
cfquery datasource=#datasource#
INSERT INTO products (product_id)
VALUES #i#
/cfquery
/cfloop

But If I want to breakdown the quantity list for that product_id and
insert it into the same linking table I get stuck

Can someone lend a hand here with a pointer
Thanks
Tim




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219835
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


cffile action=copy screwy too Barney?

2005-10-02 Thread Will Tomlinson
This is regarding my problem with cffile action=move just working some of the 
time. Barney told me somethin I suspected, which was to use a copy action, then 
delete it from the old directory. 

Well I ran into an even worse issue. Got an error saying it couldn't do it for 
some unknown reason. YES, there's actually a CF error that says that. Isn't 
that what you love to see? Anyway, it worked a few times which makes it even 
more troublesome. So I thought I'd try this just for the heckuvit. 

cfif FileExists(fullpath) 
  cffile action=copy source=#fullpath# destination=#destpath#
cfloop from=1 to=5 index=i
/cfloop
  cffile action=delete file=#fullpath# 
/cfif

Works everytime now! lol! I started looping to 1 and it still errored. 
5 seems to do the trick.  

Anybody got any better ideas? 

Will

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219836
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 action=copy screwy too Barney?

2005-10-02 Thread Cameron Childress
Out of curiosity, does this machine have a virus scanner on it that's
set to scan files on every read/write?  The delay of waiting for NAV
to scan the file could be enough to trip up CFMX (or the underlying
Java system) and make funky thing happen.

If it's on, try disabling the antivirus scanner and see if the problem
does away...

-Cameron

On 10/2/05, Will Tomlinson [EMAIL PROTECTED] wrote:
 This is regarding my problem with cffile action=move just working some of the 
 time. Barney told me somethin I suspected, which was to use a copy action, 
 then delete it from the old directory.

 Well I ran into an even worse issue. Got an error saying it couldn't do it 
 for some unknown reason. YES, there's actually a CF error that says that. 
 Isn't that what you love to see? Anyway, it worked a few times which makes it 
 even more troublesome. So I thought I'd try this just for the heckuvit.

 cfif FileExists(fullpath)
   cffile action=copy source=#fullpath# destination=#destpath#
 cfloop from=1 to=5 index=i
 /cfloop
   cffile action=delete file=#fullpath#
 /cfif

 Works everytime now! lol! I started looping to 1 and it still errored. 
 5 seems to do the trick.

 Anybody got any better ideas?

 Will

 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219837
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 action=copy screwy too Barney?

2005-10-02 Thread Will Tomlinson
Out of curiosity, does this machine have a virus scanner on it that's
set to scan files on every read/write?  The delay of waiting for NAV
to scan the file could be enough to trip up CFMX (or the underlying
Java system) and make funky thing happen.


My antivirus is all turned off. 

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219838
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 Server 2000 Full-text search issues

2005-10-02 Thread Snake
What sor tof problems.
I have used FULL-TEXT SEARCH many times without problem, even on a massive
13gb database with millions of records, it certainly never required the user
to do anything special, they just entered their search query in the form as
uusal.

russ 

-Original Message-
From: George Abraham [mailto:[EMAIL PROTECTED] 
Sent: 01 October 2005 14:25
To: CF-Talk
Subject: Re: SQL Server 2000 Full-text search issues

Hi,
Full-text search on SQL Server 2K gave me huge problems. Not only was the
code to conduct a full-text search cumbersome, but the user had to learn how
to define searches in ways that were not really fair to the user. That is
why I decided to turn to another appliance for full-text search structured
databases. At first I tried using the Verity search already packaged with
CFMX. However I soon ran into scaling issues in terms of the number of
records that Verity will store. Since one of my dbs stores more than 100K
records, that alone would take up the limits of Verity's licence. Buying an
unlimited (or whatever) licence for Verity was a bazillion dollars. Similar
problems with buying a Google search appliance. We decided to go with Lucene
from the Jakarta project which is a simply beautiful product. And it is
free. Of course you have to learn Java, but the Lucene email lists are
extremely helpful. Besides Aaron Johnson has some code over at (
http://cephas.net/blog/2003/12/06/indexing_database_content_with_lucene_cold
fusion.html)
that even talks about CF and Lucene.

I know this doesn't solve your current problem, but I ran into issues with
SQL server like you did and some of them were having our customers (and I,
to some extent) tear their hair out.

If you need some help with CF and Lucene, I can list some resources or email
me offlist.

George


On 9/30/05, Martin Parry [EMAIL PROTECTED] wrote:

 I too get this on my 2003 cluster. I restored the database as a backup 
 from my dev box (which it works on) and do a full rebuild - It takes 
 but a second to say its complete and then gives me absolutely no results.

 If I find a solution I'll post it here. IF!

 Martin Parry
 http://www.beetrootstreet.com

 -Original Message-
 From: Burns, John D [mailto:[EMAIL PROTECTED]
 Sent: 30 September 2005 16:22
 To: CF-Talk
 Subject: SOT: SQL Server 2000 Full-text search issues

 I have a development CF server (Windows 2003 Server, SQL Server 2000 
 SP4, CFMX 6.1) on which I have a database that has full-text enabled 
 on a table. When I run a query against the full-text index, it returns 
 31 rows.


 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219839
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 Server 2000 Full-text search issues

2005-10-02 Thread Martin Parry
I don't have problems on my dev box but when uploading the DB to live
server it never populates the catalogue. I think it's something with the
install but am reluctant to reinstall it as it's a live environment.

Most odd

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2005 15:26
To: CF-Talk
Subject: RE: SQL Server 2000 Full-text search issues

What sor tof problems.
I have used FULL-TEXT SEARCH many times without problem, even on a
massive
13gb database with millions of records, it certainly never required the
user
to do anything special, they just entered their search query in the form
as
uusal.

russ 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219840
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


Using FCKEditor with CF5

2005-10-02 Thread Terry Troxel
Can someone put up a link to an example of
Using FCKEditor 2 with CF5. Their sample
Inside the release says it requires CFMX.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219841
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: Using FCKEditor with CF5

2005-10-02 Thread Matt Robertson
On 10/2/05, Terry Troxel [EMAIL PROTECTED] wrote:
 Can someone put up a link to an example of
 Using FCKEditor 2 with CF5. Their sample
 Inside the release says it requires CFMX.

I can't put up a link but I can assure you it works, as I am using it
on CF5 with one client  You have to use the cfmodule version and can't
use the cfc.  look for fckeditor.cfm.  Thats the 'old' style tag that
will work with *all* versions of CF, CF6+ included.

--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219842
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: Using FCKEditor with CF5

2005-10-02 Thread E C list
It definitely works:

http://www.brainboxtalent.com/talent/index.cfm/fuseaction/calls_post_casting_calls
(Please don't submit fake casting calls)



-Original Message-
From: Terry Troxel [mailto:[EMAIL PROTECTED]
Sent: Sunday, October 02, 2005 10:53 AM
To: CF-Talk
Subject: Using FCKEditor with CF5


Can someone put up a link to an example of
Using FCKEditor 2 with CF5. Their sample
Inside the release says it requires CFMX.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219843
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


CFCProxy and Java Classloader

2005-10-02 Thread Michael Dinowitz
I've had this conversation with a member of the community for a few days and 
it's been going in a circle without resolve. Here's the issue. The CFCProxy 
documentation says that 
To call a CFC, you need to be within the ColdFusion web application. This 
means that ColdFusion's classloader must be the current classloader.
When I asked how does one start a class with CF's classloader as the current 
classloader, the answer was that the Java Class has to be loaded with the same 
J2EE context. So I then asked how does one load a class with the same J2EE 
context as ColdFusion. 

Bottom line from all this is that my understanding is that you can only use 
CFCProxy in a Java class that is called from ColdFusion. This seems a waste to 
me as your using CF to call a Java class that will in turn call a CFC. I hope 
I'm wrong. I hope there's a way to call a java class making use of a CFCProxy 
from outside of CF. That would be both super cool and useful as hell. 

Can anyone comment on this? Can a java class be called with CF's classloader 
without it being called from within CF? 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219844
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: Using FCKEditor with CF5

2005-10-02 Thread Matt Robertson
On 10/2/05, E C list [EMAIL PROTECTED] wrote:
 It definitely works:

FYI Your toolbar went off the edge of the space you made available. 
On the top bar I can barely see the eraser.  On the bottom, I can see
about half of the SIZE drop-down.


--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219845
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


[SOT] Better WDDX JavaScript serializer/deserializer functions?

2005-10-02 Thread wolf2k5
Hi all,

I am developing a web application with ColdFusion MX 6.1.

I added some AJAX features using WDDX as format for exchanging data
between the browser and the server, since it's supported natively by
ColdFusion (e.g. CFCs with remote access).

However the WDDX JavaScript serializer/deserializer functions from the
www.openwddx.org web site seems pretty slow when dealing with
large/complex amount of data, e.g. a 50 KBytes WDDX packet, containing
a struct, containing some strings and a large recordset ...

Both Internet Explorer and Firefox take up a lot of time (e.g. 10
seconds) to decode the data ...

Do you know any better WDDX JS library?

Should I just dump WDDX and go with something more recent, e.g. JSON?

Thanks.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219846
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: Using FCKEditor with CF5

2005-10-02 Thread Terry Troxel
Hey guys. I am glad you two got it to work, but I am still
unable to get it to come up
In CF5.

How about showing me what you have for your application.cfm
and a callout for
The cfmodule like you say I have to use. For some reason
this is causing me pain.

Terry 

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 02, 2005 2:16 PM
To: CF-Talk
Subject: Re: Using FCKEditor with CF5

On 10/2/05, E C list [EMAIL PROTECTED] wrote:
 It definitely works:

FYI Your toolbar went off the edge of the space you made
available. 
On the top bar I can barely see the eraser.  On the bottom,
I can see about half of the SIZE drop-down.


--
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219847
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: cffile action=copy screwy too Barney?

2005-10-02 Thread Dawson, Michael
I'm curious as to the speed of this computer?  Is this a server-class
machine or a desktop computer just used for development?

M!ke 

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 02, 2005 6:54 AM
To: CF-Talk
Subject: Re: cffile action=copy screwy too Barney?

Out of curiosity, does this machine have a virus scanner on it that's 
set to scan files on every read/write?  The delay of waiting for NAV to

scan the file could be enough to trip up CFMX (or the underlying Java 
system) and make funky thing happen.


My antivirus is all turned off. 

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219848
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: [SOT] Better WDDX JavaScript serializer/deserializer functions?

2005-10-02 Thread Jim Davis
 -Original Message-
 From: wolf2k5 [mailto:[EMAIL PROTECTED]
 Sent: Sunday, October 02, 2005 3:33 PM
 To: CF-Talk
 Subject: [SOT] Better WDDX JavaScript serializer/deserializer functions?
 
 Hi all,
 
 I am developing a web application with ColdFusion MX 6.1.
 
 I added some AJAX features using WDDX as format for exchanging data
 between the browser and the server, since it's supported natively by
 ColdFusion (e.g. CFCs with remote access).
 
 However the WDDX JavaScript serializer/deserializer functions from the
 www.openwddx.org web site seems pretty slow when dealing with
 large/complex amount of data, e.g. a 50 KBytes WDDX packet, containing
 a struct, containing some strings and a large recordset ...
 
 Both Internet Explorer and Firefox take up a lot of time (e.g. 10
 seconds) to decode the data ...
 
 Do you know any better WDDX JS library?

I've got one... I'm not sure if it's better tho'.

Right now it's sort of embedded in a larger library (the full library does
WDDX, JSON, XML-RPC and YODEL) - I could split it out for you if you like.

It may be faster, it may not but it definitely takes advantage of more
modern scripting techniques.

Jim Davis




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219849
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: cffile action=copy screwy too Barney?

2005-10-02 Thread Will Tomlinson
I'm curious as to the speed of this computer?  Is this a server-class
machine or a desktop computer just used for development?

It's my desktop. A wicked nasty puter I call GODZILLA. 

The specs are as follows:

lots of everything!

Thanks,
Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219850
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 Server 2000 Full-text search issues

2005-10-02 Thread Burns, John D
Martin -
 
I've actually found some answers dealing with the issue you're talking about. 
I'll have to look again and I'll send you the link. Everything I've found 
seemed to fall into the cluster situation and returned zero results. That's the 
screwy thing about mine is that it always returns 2.  If memory serves 
correctly, a lot of the issues dealing with the cluster and the issue you're 
describing had to do with upgrading from SQL 7 to SQL 2000. Did you do that by 
chance? Let me know.
 
John Burns



From: Martin Parry [mailto:[EMAIL PROTECTED]
Sent: Fri 9/30/2005 11:41 AM
To: CF-Talk
Subject: RE: SQL Server 2000 Full-text search issues



I too get this on my 2003 cluster. I restored the database as a backup
from my dev box (which it works on) and do a full rebuild - It takes but
a second to say its complete and then gives me absolutely no results.

If I find a solution I'll post it here.   IF!

Martin Parry
http://www.beetrootstreet.com

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: 30 September 2005 16:22
To: CF-Talk
Subject: SOT: SQL Server 2000 Full-text search issues

I have a development CF server (Windows 2003 Server, SQL Server 2000
SP4, CFMX 6.1) on which I have a database that has full-text enabled on
a table. When I run a query against the full-text index, it returns 31
rows.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219851
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 Server 2000 Full-text search issues

2005-10-02 Thread Burns, John D
Martin,
 
That's the weird thing with ours. I assumed the same thing that it was the 
install. So, we scheduled down time for the production box, uninstalled SQL 
2000 and rebooted. Then, reinstalled SQL 2000, rebooted, installed SP4, 
rebooted and got the same results.
 
John



From: Martin Parry [mailto:[EMAIL PROTECTED]
Sent: Sun 10/2/2005 11:08 AM
To: CF-Talk
Subject: RE: SQL Server 2000 Full-text search issues



I don't have problems on my dev box but when uploading the DB to live
server it never populates the catalogue. I think it's something with the
install but am reluctant to reinstall it as it's a live environment.

Most odd

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: 02 October 2005 15:26
To: CF-Talk
Subject: RE: SQL Server 2000 Full-text search issues

What sor tof problems.
I have used FULL-TEXT SEARCH many times without problem, even on a
massive
13gb database with millions of records, it certainly never required the
user
to do anything special, they just entered their search query in the form
as
uusal.

russ



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219852
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


Q re problem with Web Server Connector on Mac

2005-10-02 Thread Bob Haroche
I have Apache running fine on a Tiger OS 10.4.2 machine. When I log
in as root and install the 180 mb CF 7.01 Mac installer from the MM
site, I can get through half the install process, selecting Apache as
my web server, until I'm prompted for the current user password,
which I correctly type in. The installer balks at the password,
telling me it's invalid or I don't have correct privileges even
though I'm root.

I abort the install and start again, this time selecting the built in
server as the web server. The install finishes fine and I can view
cfml pages. However, when I go to access the web server connector
configuration utility, I get the same password prompt and rejection,
even though I'm logged in as root.

All this is done through the GUI. Apache is stopped during the CF  
install process.

Any ideas on why the current user password isn't accepted? TIA.


--
Regards,
Bob Haroche

OnPoint Solutions
www.OnPointSolutions.com





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219853
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