RE: CFLDAP Question ?

2006-04-05 Thread Ian Vaughan
When trying to update all users mailNickname with their proxyaddresses
in an OU I am getting the following CF error

---
An error has occured while trying to execute modify :[LDAP: error code
16 - 0057: LdapErr: DSID-0C0909CC, comment: Error in attribute
conversion operation, data 0, vece].  
One or more of the required attributes may be missing/incorrect or you
do not have permissions to execute this operation on the server  


Any ideas on what it could be ?


---CF CODE---

!--- query LDAP ---

cfldap action=query
name=adresult
attributes = cn,dn, mailNickname, proxyAddresses
START=ou=Test,DC=domain,dc=gov,dc=uk
filter=((objectClass=User)(mail=*))
server=server
port=389
username=username
password=password


cfset session.fixeddn=#adresult.dn#

!--- UPDATE USERS MAILNICKNAME ---

cfloop query=adresult

cfldap
action=modify
modifyType=replace
attributes=mailNickname=#adresult.proxyAddresses#
dn=#session.fixeddn#
server=server
port=389
username=username
password=password

/cfloop

DONE!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236991
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: getLineNumber()?

2006-04-05 Thread Blum, Jason \(SAA\)
Sandra, Dave, Sir Isaac,

Thanks for throwing out some ideas.

Not an urgent question - just poking around.

Thanks - J


-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 04, 2006 6:18 PM
To: CF-Talk
Subject: RE: getLineNumber()?

 I notice the line number is given in the error scope.

 Does anyone happen to know whether its possible to grab
 the
 line number without throwing (and recovering from) an
 error?

 I.E.  Something like this

 7.
 8.
 9.   CFOUTPUT
 10.  #getCurrentLineNumber()#
 11.  /CFOUTPUT
 12.
 13.

 outputs:

 10

 I don't think there's anything built-in to do this - it's
 figured out by the
 compiler, I think.

 However, you could probably write a function or custom tag
 that (very
 inefficiently) uses CFFILE to read the file in question,
 find the number of
 lines in the file up to the point of that tag, and
 displays that number.

The problem you'd have with this is that there probably wouldn't be
any way to reliably output that value more than once without feeding
in the instance of the function in each call to it. I.e.
#getLineNumber(1)# -- #getLineNumber(2)#, etc... I assume you wouldn't
ever use this within a CFC.


s. isaac dealey 434.293.6201
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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


Upgrading JVM to 1.4.2_09

2006-04-05 Thread powell
We've been having a rash of JVM crashes (1 per day usually) for the past 7-10 
days.  That's better than what it was before then (4-5 per day).  We opened a 
ticket with Adobe/MM and made some jvm.config changes they suggested for heap 
memory handling (and also moved the client var database from Access to SQL 
Server), and that changed the frequency and nature of the crashes.  The JVM 
crashes we're seeing now have the JVM apparently running out of memory (NT 
memory, not heap memory) and stopping in it's tracks.  The latest suggestion 
from Adobe/MM is to upgrade to version 1.4.2_09 of the JVM, since this could in 
fact be a JVM bug.  

Anyone out there done this and know of any gotchas before I do this?

TIA,
Reed

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236993
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: CFLDAP Question ?

2006-04-05 Thread Dawson, Michael
1. Make sure your CFLDAP username has access to modify the AD.  If you
put it in the Account Operators group, it will be able to modify just
about any object, except a domain admin account.

2. You are setting a session variable for the DN only once.  Therefore,
you keep updating the same AD object with multiple mailNicknames.  It is
possible that AD sees that you are using another account's mailNickname
and is balking at your command.

3. ProxyAddresses is a multi-value AD object.  You need to treat it as a
list.  It is possible that one, or more, domain accounts, have multiple
proxyAddresses.  You should create a quick debug page that dumps all
proxyAddresses for each user account.  You should also set the
separator attribute to | or something other than a comma.  Either
way, if an account has multiple addresses in the proxyAddresses
attribute, you will have to choose only one of them to place in the
mailNickname.

Do you mind if I ask why you are specifically setting the mailNickname
attribute?

M!ke

-Original Message-
From: Ian Vaughan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 5:07 AM
To: CF-Talk
Subject: RE: CFLDAP Question ?

When trying to update all users mailNickname with their proxyaddresses
in an OU I am getting the following CF error

---
An error has occured while trying to execute modify :[LDAP: error code
16 - 0057: LdapErr: DSID-0C0909CC, comment: Error in attribute
conversion operation, data 0, vece].  
One or more of the required attributes may be missing/incorrect or you
do not have permissions to execute this operation on the server


Any ideas on what it could be ?


---CF CODE---

!--- query LDAP ---

cfldap action=query
name=adresult
attributes = cn,dn, mailNickname, proxyAddresses
START=ou=Test,DC=domain,dc=gov,dc=uk
filter=((objectClass=User)(mail=*))
server=server
port=389
username=username
password=password


cfset session.fixeddn=#adresult.dn#

!--- UPDATE USERS MAILNICKNAME ---

cfloop query=adresult

cfldap
action=modify
modifyType=replace
attributes=mailNickname=#adresult.proxyAddresses#
dn=#session.fixeddn#
server=server
port=389
username=username
password=password

/cfloop

DONE!

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236994
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Andy Allan
Download the JDK from Sun, and install it.

Then modify your jvm.config file to point to the new location, e.g.
java.home=D:/j2sdk1.4.2_9/jre

Then restart CF. That's it.

Andy

On 05/04/06, powell @ nauticom. net powell @ nauticom. net
[EMAIL PROTECTED] wrote:
 We've been having a rash of JVM crashes (1 per day usually) for the past 7-10 
 days.  That's better than what it was before then (4-5 per day).  We opened a 
 ticket with Adobe/MM and made some jvm.config changes they suggested for heap 
 memory handling (and also moved the client var database from Access to SQL 
 Server), and that changed the frequency and nature of the crashes.  The JVM 
 crashes we're seeing now have the JVM apparently running out of memory (NT 
 memory, not heap memory) and stopping in it's tracks.  The latest suggestion 
 from Adobe/MM is to upgrade to version 1.4.2_09 of the JVM, since this could 
 in fact be a JVM bug.

 Anyone out there done this and know of any gotchas before I do this?

 TIA,
 Reed

 

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


.cfr HTML formatting

2006-04-05 Thread Pete Ruckelshaus
Since cfdocument is letting me down, I've decided to give cfreport and
the ColdFusion Report Builder a whirl.

The main content for this report is HTML formatted.  However, even
when I set HTML Text Formatting to True in the font section of the
appropriate report element, the actual HTML is displayed.

Help?

Pete

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236996
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: CFLDAP Question ?

2006-04-05 Thread Ian Vaughan
Mike

1.) It has access to modify the AD, as I have done this before on
changing/adding cn names etc.

2.) True, would I need to put a cfloop around this ?

3.)  From the proxy address all I want to extract would be i.vaughn, and
some users have multi proxyaddresses.

4.) The reason being is that the mailNickname is currently set to say
'user92' when it should be i.vaughn and so on...

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: 05 April 2006 14:38
To: CF-Talk
Subject: RE: CFLDAP Question ?

1. Make sure your CFLDAP username has access to modify the AD.  If you
put it in the Account Operators group, it will be able to modify just
about any object, except a domain admin account.

2. You are setting a session variable for the DN only once.  Therefore,
you keep updating the same AD object with multiple mailNicknames.  It is
possible that AD sees that you are using another account's mailNickname
and is balking at your command.

3. ProxyAddresses is a multi-value AD object.  You need to treat it as a
list.  It is possible that one, or more, domain accounts, have multiple
proxyAddresses.  You should create a quick debug page that dumps all
proxyAddresses for each user account.  You should also set the
separator attribute to | or something other than a comma.  Either
way, if an account has multiple addresses in the proxyAddresses
attribute, you will have to choose only one of them to place in the
mailNickname.

Do you mind if I ask why you are specifically setting the mailNickname
attribute?

M!ke

-Original Message-
From: Ian Vaughan [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 5:07 AM
To: CF-Talk
Subject: RE: CFLDAP Question ?

When trying to update all users mailNickname with their proxyaddresses
in an OU I am getting the following CF error

---
An error has occured while trying to execute modify :[LDAP: error code
16 - 0057: LdapErr: DSID-0C0909CC, comment: Error in attribute
conversion operation, data 0, vece].  
One or more of the required attributes may be missing/incorrect or you
do not have permissions to execute this operation on the server


Any ideas on what it could be ?


---CF CODE---

!--- query LDAP ---

cfldap action=query
name=adresult
attributes = cn,dn, mailNickname, proxyAddresses
START=ou=Test,DC=domain,dc=gov,dc=uk
filter=((objectClass=User)(mail=*))
server=server
port=389
username=username
password=password


cfset session.fixeddn=#adresult.dn#

!--- UPDATE USERS MAILNICKNAME ---

cfloop query=adresult

cfldap
action=modify
modifyType=replace
attributes=mailNickname=#adresult.proxyAddresses#
dn=#session.fixeddn#
server=server
port=389
username=username
password=password

/cfloop

DONE!



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


How can I tell what version of CF a particular site is running?

2006-04-05 Thread Les Mizzell
How can I tell what version of CF a particular site is running?

I've only ftp access to the site files, but not the server.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236998
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Robert Redpath
cfoutput 
Level: #Server.ColdFusion.ProductLevel#br 
Name #Server.ColdFusion.ProductName#br 
Version #Server.ColdFusion.ProductVersion# 
/cfoutput 



From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: Wed 4/5/2006 10:08 AM
To: CF-Talk
Subject: How can I tell what version of CF a particular site is running? 



How can I tell what version of CF a particular site is running?

I've only ftp access to the site files, but not the server.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236999
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Raymond Camden
Either go to the CF Admin, or cfdump the sever scope.

On 4/5/06, Les Mizzell [EMAIL PROTECTED] wrote:
 How can I tell what version of CF a particular site is running?

 I've only ftp access to the site files, but not the server.


 --
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

My ally is the Force, and a powerful ally it is. - Yoda

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237000
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Matt Williams
This will give you all kinds of interesting info:
cfdump var=#Server# 
Look for product version for your specific question.

On 4/5/06, Les Mizzell [EMAIL PROTECTED] wrote:

 How can I tell what version of CF a particular site is running?

 I've only ftp access to the site files, but not the server.


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237001
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Rob Wilkerson
#server.coldFusion.productVersion# should give you what you're looking for...

On 4/5/06, Les Mizzell [EMAIL PROTECTED] wrote:
 How can I tell what version of CF a particular site is running?

 I've only ftp access to the site files, but not the server.


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237002
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Mike Kear
You can run a file containing a dump of the server struct, if you have
permission:

cfdump var=#server# /

One of the variables is the CF Server version.  Also you can check the
server software versions etc.

Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



On 4/6/06, Les Mizzell [EMAIL PROTECTED] wrote:
 How can I tell what version of CF a particular site is running?

 I've only ftp access to the site files, but not the server.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237003
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Aaron Rouse
And if it throws an error it means you are on way too old of a version :)

On 4/5/06, Mike Kear [EMAIL PROTECTED] wrote:

 You can run a file containing a dump of the server struct, if you have
 permission:

 cfdump var=#server# /

 One of the variables is the CF Server version.  Also you can check the
 server software versions etc.

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



 On 4/6/06, Les Mizzell [EMAIL PROTECTED] wrote:
  How can I tell what version of CF a particular site is running?
 
  I've only ftp access to the site files, but not the server.
 
 
 

 

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


OT: mail to fax?

2006-04-05 Thread Andy Matthews
I've got a client with a loan application form on her site. She'd like the
processing of the form to be sent to her as a fax. Not really sure why, but
does anyone know of, or have, something like this?

I think it can be done, but I've never used anything of this nature before.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237005
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: mail to fax?

2006-04-05 Thread Adkins, Randy
Efax? 

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 10:58 AM
To: CF-Talk
Subject: OT: mail to fax?

I've got a client with a loan application form on her site. She'd like
the processing of the form to be sent to her as a fax. Not really sure
why, but does anyone know of, or have, something like this?

I think it can be done, but I've never used anything of this nature
before.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237006
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: CFLDAP Question ?

2006-04-05 Thread Dawson, Michael
2. Yes.  In your CFLDAP Modify tag, you should use DN=#adresult.dn#
rather than DN=#session.fixeddn#.

3. If they have multiple proxyAddress values, you need to determine a
way to find the correct address.

4. OK.  We set our username to also be the same as our email address,
(md40 is my username and [EMAIL PROTECTED] is my email).

M!ke

-Original Message-
From: Ian Vaughan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 9:08 AM
To: CF-Talk
Subject: RE: CFLDAP Question ?

Mike

1.) It has access to modify the AD, as I have done this before on
changing/adding cn names etc.

2.) True, would I need to put a cfloop around this ?

3.)  From the proxy address all I want to extract would be i.vaughn, and
some users have multi proxyaddresses.

4.) The reason being is that the mailNickname is currently set to say
'user92' when it should be i.vaughn and so on...

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237007
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: How can I tell what version of CF a particular site is running?

2006-04-05 Thread Robert Everland III
cfdump var=#server#

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237008
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: Shopping Cart Recommendations

2006-04-05 Thread Kevin Graeme
Strictly CF? ZenCart is a popular and free PHP shopping cart. It supports
Authorize.net and Paypal out of the box and it specifically has an
abstracted templating system.

The CF shopping carts I have bookmarked are:

AbleCommerce, $1000 starting
http://www.ablecommerce.com/

CFWebstore $300 starting
http://www.cfwebstore.com/

CF-ezcart $175 starting
http://www.cf-ezcart.com/

Netready $350
http://aloha-webdesign.com/index.asp?fuseaction=detailspid=19

QuillDesign QD Cart 
http://www.quilldesign.com/qdcart/index.cfm

QuillDesign SiteDirector
http://www.quilldesign.com/director/index.cfm

Cartweaver $250
http://www.cartweaver.com/

ampleShop $800 starting
http://www.amplecom.com/e-commerce-software-ColdFusion-MX.cfm

CF Shopkart $179 starting
http://www.cfshopkart.com/

QuickEStore $99
http://www.quickestore.com/

CF Merchant $475
http://www.oleani.com/products.cfm?pid=1


---
Kevin Graeme
Cooperative Extension Technology Services
University of Wisconsin-Extension
 

 -Original Message-
 From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, April 04, 2006 4:06 PM
 To: CF-Talk
 Subject: Shopping Cart Recommendations
 
 I am looking for a shopping cart recommendation.  I am 
 putting together a
 simple web site / store front for my wife and don't really 
 have the time to
 write this myself.  The biggest requirement is that it be 
 customizable from
 a UI standpoint and preferably open source so that additional 
 functionality
 could be added later.  I have already tried quite a few 
 different carts, and
 even paid for one, but I have yet to find one that is very easily
 re-skinned.  Having to dig through the source code looking 
 for every bit of
 display code does not count as re-skinnable to me.  Other 
 than that, just a
 general basic cart, probably that would talk with PayPal, is 
 all that I am
 looking for.
  
 Any suggestions?
  
 Thanks
 -- Jeff
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237009
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: OT: mail to fax?

2006-04-05 Thread Larry Lyons
You may want to look at efax.com. They accept an email with an attachments, and 
then send the attachment as a fax.

hth,

larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--

I've got a client with a loan application form on her site. She'd like the
processing of the form to be sent to her as a fax. Not really sure why, but
does anyone know of, or have, something like this?

I think it can be done, but I've never used anything of this nature before.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237014
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: css file based in screen resolution

2006-04-05 Thread Sandra Clark
You would probably be better off using liquid layouts rather than specific
screen resolutions.  Liquid layouts use relative measurements(percentages
and ems) for fonts, widths, margins, padding and positioning rather than
absolute measurements (pixels, points).

I'm assuming that you are trying to use your session.screenresolution before
it is actually defined.  Check to see where you are using it and when it is
being set. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility
I'm naked today!  CSS Naked Day 


-Original Message-
From: Michel Deloux [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 11:56 AM
To: CF-Talk
Subject: css file based in screen resolution

Hi all

I'm looking for tips about how to use css files based in screen resolution.

By now I'm include in application.cfm a template(screenresolution.cfm) with
Ajax. In Ajax I'll store in session var that screen resolution.

But when load any template occurs an error: variable
session.screenresolution is undefined.

Loading screenresolution.cfm with javascript alert shows me OK.

What's wrong?

Cheers

MD




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237015
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Nathan Strutz
I've upgraded my JVM a number of times, had no problems, ever. As long as
you stay in the 1.4.2 space, the _#s are just bugfixes mostly, and you can
safely upgrade on CFMX 6 or 7 (just watch out for 1.5 if you like web
services and XML). I won't say that upgrading my JVM solved every one of my
problems with servers crashing, but it did help. Really, the way to go is to
see about re-architecting your applications, upgrading your servers (Java
can use almost 2GB of RAM on a 32bit server), or considering network load
balancing.

-nathan strutz
http://www.dopefly.com/

On 4/5/06, powell @ nauticom. net powell @ nauticom. net 
[EMAIL PROTECTED] wrote:

 We've been having a rash of JVM crashes (1 per day usually) for the past
 7-10 days.  That's better than what it was before then (4-5 per day).  We
 opened a ticket with Adobe/MM and made some jvm.config changes they
 suggested for heap memory handling (and also moved the client var database
 from Access to SQL Server), and that changed the frequency and nature of the
 crashes.  The JVM crashes we're seeing now have the JVM apparently running
 out of memory (NT memory, not heap memory) and stopping in it's tracks.  The
 latest suggestion from Adobe/MM is to upgrade to version 1.4.2_09 of the
 JVM, since this could in fact be a JVM bug.

 Anyone out there done this and know of any gotchas before I do this?

 TIA,
 Reed

 

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

2006-04-05 Thread Rob Wilkerson
I'll add this semi-related note:  I believe there's a /h switch that
says it's supposed to supply a header.  I've tried using that to
change the value you're trying to remove, but had no luck.I didn't
care enough to pursue that option vigorously, though, so maybe that
can be of some help if it's a bigger deal to you.

On 4/5/06, Nathan Strutz [EMAIL PROTECTED] wrote:
 Steve,

 Interesting question. I would shoot for trial  error. Maybe take it out.
 Maybe replace it with other ASCII characters. My guess is that it has to
 stay in there, but it's worth a shot.

 -nathan strutz
 http://www.dopefly.com/


 On 4/4/06, Steve Kahn [EMAIL PROTECTED] wrote:
 
  Im using cfencode, do I have to leave the 'Allaire Cold Fusion Template'
  statement at the top for it to work or can I delete it?
 
  Thanks
 
 

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237017
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: OT: mail to fax?

2006-04-05 Thread Alan Rother
I have worked with eFax, the system works pretty well, but the customer
service can really be a pain.

All the same I would reccommend them. It does work really well.

--
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237018
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: css file based in screen resolution

2006-04-05 Thread Shepherd, Brandon
Here is an article that gives some good tips.

http://www.digital-web.com/articles/preparing_for_widescreen/ 

-B

-Original Message-
From: Michel Deloux [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 8:56 AM
To: CF-Talk
Subject: css file based in screen resolution

Hi all

I'm looking for tips about how to use css files based in screen
resolution.

By now I'm include in application.cfm a template(screenresolution.cfm)
with
Ajax. In Ajax I'll store in session var that screen resolution.

But when load any template occurs an error: variable
session.screenresolution is undefined.

Loading screenresolution.cfm with javascript alert shows me OK.

What's wrong?

Cheers

MD




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237019
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: OT: mail to fax?

2006-04-05 Thread Ray Champagne
disclaimer: I haven't ever used this service.

Intermedia offers this as part of their hosting plan.  Like I said, I've 
never used it, but every time I log in, the advertisement is there.

http://intermedia.net/it-professionals/web-hosting/add-on-services/web-hosting-fax-via-email.asp

or

http://tinyurl.com/e4u8k

Ray


Alan Rother wrote:
 I have worked with eFax, the system works pretty well, but the customer
 service can really be a pain.
 
 All the same I would reccommend them. It does work really well.
 
 --
 Alan Rother
 Macromedia Certified Advanced ColdFusion MX 7 Developer
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237020
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Scott Stewart
Nathan, 

When you upgraded to 1.5, what errors did you see?



Thanks
 
Scott
 
Scott A. Stewart
Webmaster/ Developer
GlobalNet Services, Inc
 
http://www.gnsi.com
11820 Parklawn Dr
Rockville, MD 20852
Voice: (301) 770-9610 x 335
Fax: (301) 770-9611
 
The information contained in this message may be privileged, confidential,
and protected from disclosure.  If the reader of this message is not the
intended recipient, or any employee or agent responsible for delivering this
message to the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is strictly
prohibited.  If you have received this communication in error, please notify
us immediately by replying to the message and deleting it from your
computer.

-Original Message-
From: Nathan Strutz [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 12:10 PM
To: CF-Talk
Subject: Re: Upgrading JVM to 1.4.2_09

I've upgraded my JVM a number of times, had no problems, ever. As long as
you stay in the 1.4.2 space, the _#s are just bugfixes mostly, and you can
safely upgrade on CFMX 6 or 7 (just watch out for 1.5 if you like web
services and XML). I won't say that upgrading my JVM solved every one of my
problems with servers crashing, but it did help. Really, the way to go is to
see about re-architecting your applications, upgrading your servers (Java
can use almost 2GB of RAM on a 32bit server), or considering network load
balancing.

-nathan strutz
http://www.dopefly.com/

On 4/5/06, powell @ nauticom. net powell @ nauticom. net 
[EMAIL PROTECTED] wrote:

 We've been having a rash of JVM crashes (1 per day usually) for the past
 7-10 days.  That's better than what it was before then (4-5 per day).  We
 opened a ticket with Adobe/MM and made some jvm.config changes they
 suggested for heap memory handling (and also moved the client var database
 from Access to SQL Server), and that changed the frequency and nature of
the
 crashes.  The JVM crashes we're seeing now have the JVM apparently running
 out of memory (NT memory, not heap memory) and stopping in it's tracks.
The
 latest suggestion from Adobe/MM is to upgrade to version 1.4.2_09 of the
 JVM, since this could in fact be a JVM bug.

 Anyone out there done this and know of any gotchas before I do this?

 TIA,
 Reed

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237021
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: Truncated Emails : maybe OT

2006-04-05 Thread Damien McKenna
 -Original Message-
 From: Charlie Hanlon [mailto:[EMAIL PROTECTED] 
 Sent: Monday, March 06, 2006 5:10 PM

 Excuse me if this is too OT, but I have an end user who recieves
 HTML emails from us, and the last few have been truncated with the
 bottom of the page displayin [Message clipped].

Look at the source-code of the received email, see if the HTML was all
on one line.  If it was, try adding some linebreaks into your code, e.g.
add a linebreak after each br / or /p.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


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


help with list values in db

2006-04-05 Thread Patrick Forsythe
I need some help comparing a value to a list of values in a database.
Database is sql server coldfusion is mx.

I have many hundreds of thousands of records is this database and one 
column is a catid field it can be a single number or it can be a list of 
numbers, i.e., 3,4,51.

The problem I am having is that I am trying to pull all the records that 
are in a category. so i want all the records that have a catid of 5 or 
that have 5 in their list of records i.e., 4,5,51

and this is where I am having a problem my query will pick out all the 
5's but ignore the ones that have multiple entries i.e.,4,5,23 that 
record would not get added into my query.

Any help would be grately appreciated.

-- 
Patrick Forsythe
Tech Support
Smallville Communications
http://www.toto.net


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237023
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: help with list values in db

2006-04-05 Thread Ben Nadel
Try

SELECT
[column list]
FROM
[table]
WHERE
catid LIKE '#ID#' 
OR
catid LIKE '#ID#,%' 
OR
catid LIKE '%,#ID#' 
OR
catid LIKE '%,#ID#,%' 


Not the best solution in the world, but should cover the combinations of
commas and ids.

...
Ben Nadel 
Web Developer
Nylon Technology
350 7th Ave.
Suite 1005
New York, NY 10001
212.691.1134 x 14
212.691.3477 fax
www.nylontechnology.com

Sanders: Lightspeed too slow?
Helmet: Yes we'll have to go right to ludacris speed.
-Original Message-
From: Patrick Forsythe [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 12:50 PM
To: CF-Talk
Subject: help with list values in db

I need some help comparing a value to a list of values in a database.
Database is sql server coldfusion is mx.

I have many hundreds of thousands of records is this database and one column
is a catid field it can be a single number or it can be a list of numbers,
i.e., 3,4,51.

The problem I am having is that I am trying to pull all the records that are
in a category. so i want all the records that have a catid of 5 or that have
5 in their list of records i.e., 4,5,51

and this is where I am having a problem my query will pick out all the 5's
but ignore the ones that have multiple entries i.e.,4,5,23 that record would
not get added into my query.

Any help would be grately appreciated.

--
Patrick Forsythe
Tech Support
Smallville Communications
http://www.toto.net




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237024
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: help with list values in db

2006-04-05 Thread Patrick Forsythe
SELECT
   [column list]
FROM
   [table]
WHERE
   catid LIKE '#ID#' 
OR
   catid LIKE '#ID#,%' 
OR
   catid LIKE '%,#ID#' 
OR
   catid LIKE '%,#ID#,%' 


Thanks That did what I needed

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


OT: New Fusion Authority Issue Out (160)

2006-04-05 Thread Judith Dinowitz
CFEclipse CFExplained Part I
http://www.fusionauthority.com/Techniques/4599-CFEclipse-CFExplained-Part-I.htm

Cf.Objective() Session Review: AOP with ColdSpring (Chris Scott)
http://www.fusionauthority.com/Reviews/4600-Cf-Objective-Session-Review-AOP-with-ColdSpring-Chris-Scott.htm

Charlie Arehart Leaves New Atlanta
http://www.fusionauthority.com/News/4603-Charlie-Arehart-Leaves-New-Atlanta.htm

The ActiveX Change: What Does This Mean for You? (Updated)
http://www.fusionauthority.com/News/4604-The-ActiveX-Change-What-Does-This-Mean-for-You-Updated.htm

Testing out the IE Update
http://www.fusionauthority.com/Reviews/4605-Testing-out-the-IE-Update.htm

Compete in the Flex Developer Derby!
http://www.fusionauthority.com/News/4601-Compete-in-the-Flex-Developer-Derby.htm

The ColdFusion Podcast Roundup: Wednesday, March 28, 2006
http://www.fusionauthority.com/Reviews/4598-The-ColdFusion-Podcast-Roundup-Wednesday-March-28-2006.htm

A Review of Helms and Peters Out Loud Podcast Episode 17: Outsourcing
http://www.fusionauthority.com/Reviews/4596-A-Review-of-Helms-and-Peters-Out-Loud-Podcast-Episode-17-Outsourcing.htm

Ray on Model-Glue
http://www.fusionauthority.com/News/4602-Ray-on-Model-Glue.htm



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237026
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: Shopping Cart Recommendations

2006-04-05 Thread Ken Ferguson
www.x-cart.com
I've used this product several times and it is awesome. It's really 
inexpensive, has tons of add-ons as well as an outstanding feature set 
right out of the box. It's easy to customize... I always recommend this 
cart.

--Ferg

Jeff Chastain wrote:
 I am looking for a shopping cart recommendation.  I am putting together a
 simple web site / store front for my wife and don't really have the time to
 write this myself.  The biggest requirement is that it be customizable from
 a UI standpoint and preferably open source so that additional functionality
 could be added later.  I have already tried quite a few different carts, and
 even paid for one, but I have yet to find one that is very easily
 re-skinned.  Having to dig through the source code looking for every bit of
 display code does not count as re-skinnable to me.  Other than that, just a
 general basic cart, probably that would talk with PayPal, is all that I am
 looking for.
  
 Any suggestions?
  
 Thanks
 -- Jeff



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237027
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: help with list values in db

2006-04-05 Thread Ian Skinner
SELECT
[column list]
FROM
[table]
WHERE
catid LIKE '#ID#' 
OR
catid LIKE '#ID#,%' 
OR
catid LIKE '%,#ID#' 
OR
catid LIKE '%,#ID#,%'


Couldn't that WHERE clause be consolidated into one line such as:

WHERE
catid LIKE '%#ID#%'

Or is there some performance benefit of using the four variations?  Since using 
the LIKE clause can be a performance killer.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237028
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: Shopping Cart Recommendations

2006-04-05 Thread Jeff Chastain
Interesting, I was actually looking at the LiteCommerce product by the same
company that makes X-Cart.  LiteCommerce appears to be a bit easier to do UI
customizations on at this point.

This is going way off topic for this list now, but as I have been fighting
it all morning, I will take help any where I can get it.  LiteCommerce
requires PHP 4.x (not 5).  I am running MySQL 5 on my dev box.  However, the
default install of PHP 4.4.2 won't talk to MySQL 5.  Can anybody point me to
some info or give me a little guidance on setting this up (off list)?

Thanks
-- Jeff
 

-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 12:27 PM
To: CF-Talk
Subject: Re: Shopping Cart Recommendations

www.x-cart.com
I've used this product several times and it is awesome. It's really
inexpensive, has tons of add-ons as well as an outstanding feature set right
out of the box. It's easy to customize... I always recommend this cart.

--Ferg

Jeff Chastain wrote:
 I am looking for a shopping cart recommendation.  I am putting 
 together a simple web site / store front for my wife and don't really 
 have the time to write this myself.  The biggest requirement is that 
 it be customizable from a UI standpoint and preferably open source so 
 that additional functionality could be added later.  I have already 
 tried quite a few different carts, and even paid for one, but I have 
 yet to find one that is very easily re-skinned.  Having to dig through 
 the source code looking for every bit of display code does not count 
 as re-skinnable to me.  Other than that, just a general basic cart, 
 probably that would talk with PayPal, is all that I am looking for.
  
 Any suggestions?
  
 Thanks
 -- Jeff



 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237029
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: help with list values in db

2006-04-05 Thread Rob Wilkerson
Yes, there is a reason.  Your version would retrieve any value that
contained a 5 without respect to the list delimiters.  Since, with
SQL, there's no good way to parse/evaluate a list this is the only
option that will properly limit the results.

I don't think anyone would argue that it's inefficient and generally
something to be avoided (vigorously), but sometimes you just have to
handle what you've got.  Ben's code is the only way I can think of to
handle what Patrick's got.

On 4/5/06, Ian Skinner [EMAIL PROTECTED] wrote:
 SELECT
 [column list]
 FROM
 [table]
 WHERE
 catid LIKE '#ID#'
 OR
 catid LIKE '#ID#,%'
 OR
 catid LIKE '%,#ID#'
 OR
 catid LIKE '%,#ID#,%'


 Couldn't that WHERE clause be consolidated into one line such as:

 WHERE
 catid LIKE '%#ID#%'

 Or is there some performance benefit of using the four variations?  Since 
 using the LIKE clause can be a performance killer.

 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237030
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: help with list values in db

2006-04-05 Thread Mike Klostermeyer
No.  In your version, '5' would be incorrectly found in the list
'50,150,250', whereas it would NOT be found in the SQL below.

Another route to go if you are using SQL Server (possibly others as well) is
to find or create a user defined function in SQL that parses lists.  I've
used this before it works very well, though I don't know which is most
efficient.

Mike

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 12:04 PM
To: CF-Talk
Subject: RE: help with list values in db


SELECT
[column list]
FROM
[table]
WHERE
catid LIKE '#ID#'
OR
catid LIKE '#ID#,%'
OR
catid LIKE '%,#ID#'
OR
catid LIKE '%,#ID#,%'


Couldn't that WHERE clause be consolidated into one line such as:

WHERE
catid LIKE '%#ID#%'

Or is there some performance benefit of using the four variations?  Since
using the LIKE clause can be a performance killer.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-

C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237031
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: help with list values in db

2006-04-05 Thread Aaron Rouse
In order I defined a TYPE and then wrote a function to work with that.  It
allows me to treat conditions like this as if they were in a lookup table.
I do not know MSSQL well enough to know how to write the same thing in it,
but might be an idea to consider doing.

On 4/5/06, Mike Klostermeyer [EMAIL PROTECTED] wrote:

 No.  In your version, '5' would be incorrectly found in the list
 '50,150,250', whereas it would NOT be found in the SQL below.

 Another route to go if you are using SQL Server (possibly others as well)
 is
 to find or create a user defined function in SQL that parses lists.  I've
 used this before it works very well, though I don't know which is most
 efficient.

 Mike

 -Original Message-
 From: Ian Skinner [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 05, 2006 12:04 PM
 To: CF-Talk
 Subject: RE: help with list values in db


 SELECT
[column list]
 FROM
[table]
 WHERE
catid LIKE '#ID#'
 OR
catid LIKE '#ID#,%'
 OR
catid LIKE '%,#ID#'
 OR
catid LIKE '%,#ID#,%'


 Couldn't that WHERE clause be consolidated into one line such as:

 WHERE
catid LIKE '%#ID#%'

 Or is there some performance benefit of using the four variations?  Since
 using the LIKE clause can be a performance killer.

 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.






 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237032
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: help with list values in db

2006-04-05 Thread Aaron Rouse
erf ... in Oracle not in order

On 4/5/06, Aaron Rouse [EMAIL PROTECTED] wrote:

 In order I defined a TYPE and then wrote a function to work with that.  It
 allows me to treat conditions like this as if they were in a lookup table.
 I do not know MSSQL well enough to know how to write the same thing in it,
 but might be an idea to consider doing.





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237033
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Che Vilnonis
Andy or anyone, do you have the direct link on Sun's site for the 1.4.2_9
SDK?
Thanks, Che.

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 9:44 AM
To: CF-Talk
Subject: Re: Upgrading JVM to 1.4.2_09


Download the JDK from Sun, and install it.

Then modify your jvm.config file to point to the new location, e.g.
java.home=D:/j2sdk1.4.2_9/jre

Then restart CF. That's it.

Andy

On 05/04/06, powell @ nauticom. net powell @ nauticom. net
[EMAIL PROTECTED] wrote:
 We've been having a rash of JVM crashes (1 per day usually) for the past
7-10 days.  That's better than what it was before then (4-5 per day).  We
opened a ticket with Adobe/MM and made some jvm.config changes they
suggested for heap memory handling (and also moved the client var database
from Access to SQL Server), and that changed the frequency and nature of the
crashes.  The JVM crashes we're seeing now have the JVM apparently running
out of memory (NT memory, not heap memory) and stopping in it's tracks.  The
latest suggestion from Adobe/MM is to upgrade to version 1.4.2_09 of the
JVM, since this could in fact be a JVM bug.

 Anyone out there done this and know of any gotchas before I do this?

 TIA,
 Reed





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237034
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Dave Carabetta
On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
 Andy or anyone, do you have the direct link on Sun's site for the 1.4.2_9
 SDK?
 Thanks, Che.

http://java.sun.com/products/archive/j2se/1.4.2_09/

Regards,
Dave.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237035
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: cfheader breaks my xml

2006-04-05 Thread Rob Wilkerson
Hey Andy -

I just spent the better part of the day (I'm embarrassed to admit)
debugging a problem I was having with one of my XML AJaX requests that
used the code I included in this thread.  Although I looked at every
other piece of code before I got there, it ended up being an omission
in this code so I thought I'd update the list (and its archives) with
what I found.

Short version: I was trying to return XML for parsing via JavaScript. 
What I wasn't doing, though, was specifying the character set for that
returning XML.  Once my returning XML contained so much as an accented
e the functionality failed catastrophically.

To save anyone else the time and frustration, this fixed the problem:

cfcontent type=text/xml; charset=UTF-8 reset=Yes /
cfoutput
...myXML...
/cfoutput

Moral: Be smarter than I am and ALWAYS specify a character set.

On 3/30/06, Andy Jarrett [EMAIL PROTECTED] wrote:
 Hi,

 I'm having some trouble create a valid XML document using cfheader to
 change the page content.

 My simple file looks like this:

 xml.cfm

 ?xml version=1.0 encoding=UTF-8?
 root
 node
 child1/child
 /node
 root

 I open this up and its valid. I know change the content type so the
 file is passed as XML:

 cfheader name=Content-Type value=text/xml
 ?xml version=1.0 encoding=UTF-8?
 root
 node
 child1/child
 /node
 root

 This breaks the page. It seems that cfheader adds three blank lines
 to the top of the page.

 Has anyone else come across this problem?

 Cheers,

 Andy

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237036
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Che Vilnonis
Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well?
Perhaps it is even better?

-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 2:10 PM
To: CF-Talk
Subject: Re: Upgrading JVM to 1.4.2_09


On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
 Andy or anyone, do you have the direct link on Sun's site for the 1.4.2_9
 SDK?
 Thanks, Che.

http://java.sun.com/products/archive/j2se/1.4.2_09/

Regards,
Dave.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237037
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Dave Carabetta
On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
 Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well?
 Perhaps it is even better?


We're testing it in our staging environment, and it works just fine
(we're using web services, cfhttp, etc., so it's getting a good
workout). However, a potentially big caveat is that we do not use
CFLDAP, which is known to have issues with later versions of the 1.4.2
JVM (I think _05 was the last revision that is known to have worked,
and I haven't tried on _09), and I don't believe Adobe will support
you if you call them for support (they'll make you downgrade first I
believe).

Regards,
Dave.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237038
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Andy Allan
You can certainly use it, but Adobe only support up to _09

Andy

On 05/04/06, Che Vilnonis [EMAIL PROTECTED] wrote:
 Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well?
 Perhaps it is even better?

 -Original Message-
 From: Dave Carabetta [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 05, 2006 2:10 PM
 To: CF-Talk
 Subject: Re: Upgrading JVM to 1.4.2_09


 On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
  Andy or anyone, do you have the direct link on Sun's site for the 1.4.2_9
  SDK?
  Thanks, Che.

 http://java.sun.com/products/archive/j2se/1.4.2_09/

 Regards,
 Dave.



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237039
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: Shopping Cart Recommendations

2006-04-05 Thread Troy Montour
One that I have used is Cartweaver. www.cartweaver.com


Thank You
Troy Montour
Vampires Internet Company
4663 Main ST
Fridley, MN 55421
[EMAIL PROTECTED]
P: 763.571.3872
M: 763.458.2368
F: 763.586.0552




On Apr 5, 2006, at 12:26 PM, Jeff Chastain wrote:

 Interesting, I was actually looking at the LiteCommerce product by  
 the same
 company that makes X-Cart.  LiteCommerce appears to be a bit easier  
 to do UI
 customizations on at this point.

 This is going way off topic for this list now, but as I have been  
 fighting
 it all morning, I will take help any where I can get it.  LiteCommerce
 requires PHP 4.x (not 5).  I am running MySQL 5 on my dev box.   
 However, the
 default install of PHP 4.4.2 won't talk to MySQL 5.  Can anybody  
 point me to
 some info or give me a little guidance on setting this up (off list)?

 Thanks
 -- Jeff


 -Original Message-
 From: Ken Ferguson [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 05, 2006 12:27 PM
 To: CF-Talk
 Subject: Re: Shopping Cart Recommendations

 www.x-cart.com
 I've used this product several times and it is awesome. It's really
 inexpensive, has tons of add-ons as well as an outstanding feature  
 set right
 out of the box. It's easy to customize... I always recommend this  
 cart.

 --Ferg

 Jeff Chastain wrote:
 I am looking for a shopping cart recommendation.  I am putting
 together a simple web site / store front for my wife and don't really
 have the time to write this myself.  The biggest requirement is that
 it be customizable from a UI standpoint and preferably open source so
 that additional functionality could be added later.  I have already
 tried quite a few different carts, and even paid for one, but I have
 yet to find one that is very easily re-skinned.  Having to dig  
 through
 the source code looking for every bit of display code does not count
 as re-skinnable to me.  Other than that, just a general basic cart,
 probably that would talk with PayPal, is all that I am looking for.

 Any suggestions?

 Thanks
 -- Jeff







 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237040
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Che Vilnonis
Got it. Now I know. :)

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 2:29 PM
To: CF-Talk
Subject: Re: Upgrading JVM to 1.4.2_09


You can certainly use it, but Adobe only support up to _09

Andy

On 05/04/06, Che Vilnonis [EMAIL PROTECTED] wrote:
 Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well?
 Perhaps it is even better?

 -Original Message-
 From: Dave Carabetta [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 05, 2006 2:10 PM
 To: CF-Talk
 Subject: Re: Upgrading JVM to 1.4.2_09


 On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
  Andy or anyone, do you have the direct link on Sun's site for the
1.4.2_9
  SDK?
  Thanks, Che.

 http://java.sun.com/products/archive/j2se/1.4.2_09/

 Regards,
 Dave.







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


getting the closest number to an increment of 25,000

2006-04-05 Thread Andy Matthews
I'm working on a site for a realtor. It has a search by price feature with
a low and a high end. The realtor would like both dropdowns to start at the
closest increment of $25,000 in the database so that the user could
conceivably just hit the submit button and get results. Right now I'm
prepoulating them both at $25k, the minimum.

Anyway, assuming the max price in the db was $269,000, I need the high
dropdown to max out at $275,000. If the minimum price was $111,000, the low
dropdown needs to min out at $100,000.

Does anyone have suggestions on the best way to accomplish this? I know how
to get the min and max values from the db, just not sure how to round to
the nearest $25,000 mark.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237042
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Ryan Guill
i have to admit, i didnt read your whole thing, but maybe this will work.

take the max, MOD 25000 to get the remainder, and then subtract that
from the max...

On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote:
 I'm working on a site for a realtor. It has a search by price feature with
 a low and a high end. The realtor would like both dropdowns to start at the
 closest increment of $25,000 in the database so that the user could
 conceivably just hit the submit button and get results. Right now I'm
 prepoulating them both at $25k, the minimum.

 Anyway, assuming the max price in the db was $269,000, I need the high
 dropdown to max out at $275,000. If the minimum price was $111,000, the low
 dropdown needs to min out at $100,000.

 Does anyone have suggestions on the best way to accomplish this? I know how
 to get the min and max values from the db, just not sure how to round to
 the nearest $25,000 mark.

 !//--
 andy matthews
 web developer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237043
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Barney Boisvert
#ceiling(price / 25,000) * 25000# should give you the next higher, or
the same value if it's already aligned at a 25,000 border.  Just
reverse it fro the lower bound.  You can also use round, if you
actually want rounding, but that's not the case here.

cheers,
barneyb

On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote:
 I'm working on a site for a realtor. It has a search by price feature with
 a low and a high end. The realtor would like both dropdowns to start at the
 closest increment of $25,000 in the database so that the user could
 conceivably just hit the submit button and get results. Right now I'm
 prepoulating them both at $25k, the minimum.

 Anyway, assuming the max price in the db was $269,000, I need the high
 dropdown to max out at $275,000. If the minimum price was $111,000, the low
 dropdown needs to min out at $100,000.

 Does anyone have suggestions on the best way to accomplish this? I know how
 to get the min and max values from the db, just not sure how to round to
 the nearest $25,000 mark.


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237044
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Jerry Johnson
divide top value by 25000, get the ceiling, and multiply by 25000?

On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote:
 I'm working on a site for a realtor. It has a search by price feature with
 a low and a high end. The realtor would like both dropdowns to start at the
 closest increment of $25,000 in the database so that the user could
 conceivably just hit the submit button and get results. Right now I'm
 prepoulating them both at $25k, the minimum.

 Anyway, assuming the max price in the db was $269,000, I need the high
 dropdown to max out at $275,000. If the minimum price was $111,000, the low
 dropdown needs to min out at $100,000.

 Does anyone have suggestions on the best way to accomplish this? I know how
 to get the min and max values from the db, just not sure how to round to
 the nearest $25,000 mark.

 !//--
 andy matthews
 web developer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237045
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Ryan Guill
Actually, that will just give you the nearest one less than your max. 
to round up or down, take the max MOD 25000, get the remainder, see if
the remainer is greater than or less than half of your rounding
number, so 125000, if less than, subtract the remainder from the max,
if it is more, subtract the remainder from the max and add 25000. You
might be able to trim that up some, but thats basically what I would
try first.

On 4/5/06, Ryan Guill [EMAIL PROTECTED] wrote:
 i have to admit, i didnt read your whole thing, but maybe this will work.

 take the max, MOD 25000 to get the remainder, and then subtract that
 from the max...

 On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote:
  I'm working on a site for a realtor. It has a search by price feature with
  a low and a high end. The realtor would like both dropdowns to start at the
  closest increment of $25,000 in the database so that the user could
  conceivably just hit the submit button and get results. Right now I'm
  prepoulating them both at $25k, the minimum.
 
  Anyway, assuming the max price in the db was $269,000, I need the high
  dropdown to max out at $275,000. If the minimum price was $111,000, the low
  dropdown needs to min out at $100,000.
 
  Does anyone have suggestions on the best way to accomplish this? I know how
  to get the min and max values from the db, just not sure how to round to
  the nearest $25,000 mark.
 
  !//--
  andy matthews
  web developer
  ICGLink, Inc.
  [EMAIL PROTECTED]
  615.370.1530 x737
  --//-
 
 
  

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237046
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Tony
start with this andy, and you can filter out the ones you dont want because
they are too low, or too high based on the search value?

cfloop from = 1 to = 100 step = 25000 index = i
 option value=#i#i
/cfloop



On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote:
 I'm working on a site for a realtor. It has a search by price feature with
 a low and a high end. The realtor would like both dropdowns to start at the
 closest increment of $25,000 in the database so that the user could
 conceivably just hit the submit button and get results. Right now I'm
 prepoulating them both at $25k, the minimum.

 Anyway, assuming the max price in the db was $269,000, I need the high
 dropdown to max out at $275,000. If the minimum price was $111,000, the low
 dropdown needs to min out at $100,000.

 Does anyone have suggestions on the best way to accomplish this? I know how
 to get the min and max values from the db, just not sure how to round to
 the nearest $25,000 mark.

 !//--
 andy matthews
 web developer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237047
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Douglas Knudsen
yes, AFAIK, JVM releases  _05  breaks CFLDAP.

DK

On 4/5/06, Dave Carabetta [EMAIL PROTECTED] wrote:
 On 4/5/06, Che Vilnonis [EMAIL PROTECTED] wrote:
  Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well?
  Perhaps it is even better?
 

 We're testing it in our staging environment, and it works just fine
 (we're using web services, cfhttp, etc., so it's getting a good
 workout). However, a potentially big caveat is that we do not use
 CFLDAP, which is known to have issues with later versions of the 1.4.2
 JVM (I think _05 was the last revision that is known to have worked,
 and I haven't tried on _09), and I don't believe Adobe will support
 you if you call them for support (they'll make you downgrade first I
 believe).

 Regards,
 Dave.

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237048
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Ian Skinner
Thanks Dave. Hey... does anyone know if 1.4.2_11 is viable to use as well? 
Perhaps it is even better?


Viable - maybe.  Official - NO!  So use at your own risk.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237049
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Dave Carabetta
On 4/5/06, Douglas Knudsen [EMAIL PROTECTED] wrote:
 yes, AFAIK, JVM releases  _05  breaks CFLDAP.


Well, this is the one question that I have, seeing as Adobe has upped
the supported JVM. I highly doubt that they would support _09 if they
knew CFLDAP flat-out broke, no? Does this mean CFLDAP works in _09 due
to some underlying JVM bug fix made?

Regards,
Dave.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237050
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: getting the closest number to an increment of 25,000

2006-04-05 Thread Andy Matthews
Thanks everyone. That should work!

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 1:53 PM
To: CF-Talk
Subject: getting the closest number to an increment of 25,000


I'm working on a site for a realtor. It has a search by price feature with
a low and a high end. The realtor would like both dropdowns to start at the
closest increment of $25,000 in the database so that the user could
conceivably just hit the submit button and get results. Right now I'm
prepoulating them both at $25k, the minimum.

Anyway, assuming the max price in the db was $269,000, I need the high
dropdown to max out at $275,000. If the minimum price was $111,000, the low
dropdown needs to min out at $100,000.

Does anyone have suggestions on the best way to accomplish this? I know how
to get the min and max values from the db, just not sure how to round to
the nearest $25,000 mark.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-




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


SOT: OSCommerce

2006-04-05 Thread Bryan Stevenson
Hey All,

I've been asked to quote on a small job to hook OSCommerce into an exisitng 
HTML only site.

Does anyone have experience with OSCommerce for a shopping cart?  If so, can 
you drop me a note about the major steps involved in getting it up and running 
(and any info on re-skinning the cart)?

A few unconfirmed things I think I know about OSCommerce:
-open source ;-)
-PHP
-runs off mySQL

Assumptions:
-web server must run current enough version of PHP and mySQL
-may need to change some/all HTML pages to PHP to allow the hand off of items 
to the cart

TIA for any help

and yes I will be checking out the OSCommerce site for myselfbut 1st 
hand knowlegde is always useful

Cheers

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

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


ColdFusion and Visio

2006-04-05 Thread Anne Girardeau
Has anyone on here used Visio to plan Fusebox and/or Mach-ii applications?  If 
so, what were your thoughts and/or recommendations?  I'm currently using Adalon 
for planning and I'm pretty happy with it.  But my supervisor has asked if I 
would be interested in using Visio instead.  Let me know your thoughts.

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


flash cfgrid -- wtf?!

2006-04-05 Thread S . Isaac Dealey
So, I've generally avoided cfgrid, but I had this very short term
project in which it seemed to make sense to use one. So given that
everyone seems to be in agreement that the new flash grids are an
improvement I decided to use a flash-format grid. (For the record, the
way that the flash version of cfgrid handles adding new rows is
flat-out stupid and never should have been implemented that way.)

Anyway... The problem I have isn't with adding new rows, it's with
even getting data from the grid to the form submission page... I have
this code:

cfgrid format=flash query=qReport name=report
selectmode=edit
  cfgridcolumn name=reportid display=false /
  cfgridcolumn name=reporttypeid display=false /
  cfgridcolumn name=pricerangeid display=false /
  cfgridcolumn name=reporttype header=Type select=false /
  cfgridcolumn name=maxprice header=Max Price select=false /
  cfgridcolumn name=markettime header=Market Time select=true
/
  cfgridcolumn name=inventory header=Inventory select=true /
/cfgrid

Which works fine to create the grid with all the appropriate values.
It displays all the columns I need displayed and allows the user to
update the two right-most columns for markettime and inventory.

The problem is that after filling in data for 12 rows in the grid and
submitting the form, only data for the first 5 rows is passed to the
form submission page.

Thoughts?


s. isaac dealey 434.293.6201
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


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

2006-04-05 Thread Steve Kahn
Nathan,

Thanks, I'll give a try

-Original Message-
From: Nathan Strutz [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 12:05 PM
To: CF-Talk
Subject: Re: cfencode question

Steve,

Interesting question. I would shoot for trial  error. Maybe take it out.
Maybe replace it with other ASCII characters. My guess is that it has to
stay in there, but it's worth a shot.

-nathan strutz
http://www.dopefly.com/


On 4/4/06, Steve Kahn [EMAIL PROTECTED] wrote:

 Im using cfencode, do I have to leave the 'Allaire Cold Fusion Template'
 statement at the top for it to work or can I delete it?

 Thanks

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237055
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: ColdFusion and Visio

2006-04-05 Thread Loathe
I don't like Adalon, although I know it has a lot of fans.  I am just not
impressed by Java based stand alone applications, I hate their interface
objects with a passion that is usually only saved for politicians and
pedophiles.

I would make the jump, especially if they will foot the bill for the
enterprise architect edition.  Great application.


--
Timothy Heald
Analyst, Architect, Developer
[EMAIL PROTECTED]
W: 202-228-8372
C: 703-300-3911
-Original Message-
From: Anne Girardeau [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 4:46 PM
To: CF-Talk
Subject: ColdFusion and Visio

Has anyone on here used Visio to plan Fusebox and/or Mach-ii applications?
If so, what were your thoughts and/or recommendations?  I'm currently using
Adalon for planning and I'm pretty happy with it.  But my supervisor has
asked if I would be interested in using Visio instead.  Let me know your
thoughts.



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


Convert ASP to CFM?

2006-04-05 Thread Jeff Horne
We're in the beginning stages of combining functionality from an ASP based site 
 to our existing CFM based site.  We know nothing about ASP but can run some as 
ASP but others will have to be rewritten as CFM pages.  I found Ben Forta's 
document and Tom Muck's from the Adobe site comparing the two languages and how 
things in ASP are done in CFM.  I need to finish this project by early May and 
would love to use a utility that converts ASP to CFM but I haven't found 
anything.  Does such an animal exist?

Thanks.

Jeff

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237057
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: ColdFusion and Visio

2006-04-05 Thread Anne Girardeau
Lol, I agree Adalon isn't perfect but I want to make sure that Vizio will be as 
good or better.  My supervisor is actually recommending the enterprise 
architect edition.  How has your experience been planning CF apps with it?  
Does it require using MS Visual Studio?


I don't like Adalon, although I know it has a lot of fans.  I am just not
impressed by Java based stand alone applications, I hate their interface
objects with a passion that is usually only saved for politicians and
pedophiles.

I would make the jump, especially if they will foot the bill for the
enterprise architect edition.  Great application.


--
Timothy Heald
Analyst, Architect, Developer
[EMAIL PROTECTED]
W: 202-228-8372
C: 703-300-3911
-Original Message-
From: Anne Girardeau [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 4:46 PM
To: CF-Talk
Subject: ColdFusion and Visio

Has anyone on here used Visio to plan Fusebox and/or Mach-ii applications?
If so, what were your thoughts and/or recommendations?  I'm currently using
Adalon for planning and I'm pretty happy with it.  But my supervisor has
asked if I would be interested in using Visio instead.  Let me know your
thoughts.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237058
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: Convert ASP to CFM?

2006-04-05 Thread Nathan Strutz
There used to be one on sourceforge that did the reverse... ehh, so that's
not helpful.

Hey, it would be a fun project (as if I don't have enough fun projects of my
own already). Post back in mid-May and let us know how you wrote it :)

-nathan strutz
http://www.dopefly.com/


On 4/5/06, Jeff Horne [EMAIL PROTECTED] wrote:

 We're in the beginning stages of combining functionality from an ASP based
 site  to our existing CFM based site.  We know nothing about ASP but can run
 some as ASP but others will have to be rewritten as CFM pages.  I found Ben
 Forta's document and Tom Muck's from the Adobe site comparing the two
 languages and how things in ASP are done in CFM.  I need to finish this
 project by early May and would love to use a utility that converts ASP to
 CFM but I haven't found anything.  Does such an animal exist?

 Thanks.

 Jeff

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237059
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: Convert ASP to CFM?

2006-04-05 Thread Yves Arsenault
I haven't found such an animal

It would be a pretty handy app to have.

Yves

On 4/5/06, Jeff Horne [EMAIL PROTECTED] wrote:

 We're in the beginning stages of combining functionality from an ASP based
 site  to our existing CFM based site.  We know nothing about ASP but can run
 some as ASP but others will have to be rewritten as CFM pages.  I found Ben
 Forta's document and Tom Muck's from the Adobe site comparing the two
 languages and how things in ASP are done in CFM.  I need to finish this
 project by early May and would love to use a utility that converts ASP to
 CFM but I haven't found anything.  Does such an animal exist?

 Thanks.

 Jeff

 

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


Verity operators are great - but what are they in Arabic/french/german/chinese???

2006-04-05 Thread Duncan
On this page in livedocs :
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=1306.htm

at the very bottom in very small text it says something very interesting.

When you search a collection in a language other than English, you
must translate operators such as AND and OR into the language of the
collection.

Where do we find these operators? Does anyone have an exhaustive list
they would like to share?

Thanks!

--
Duncan I Loxton
[EMAIL PROTECTED]

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237061
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: ColdFusion and Visio

2006-04-05 Thread Loathe
You don't need to use it with visual studio.  I don't, I use CF Eclipse for
writing CF.

It's a better application for doing diagrams, although you will not find it
as feature rich when trying to generate reports and wireframes and things.
Now if you tie it in with project 


--
Timothy Heald
Analyst, Architect, Developer
[EMAIL PROTECTED]
W: 202-228-8372
C: 703-300-3911
-Original Message-
From: Anne Girardeau [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 5:28 PM
To: CF-Talk
Subject: Re: ColdFusion and Visio

Lol, I agree Adalon isn't perfect but I want to make sure that Vizio will be
as good or better.  My supervisor is actually recommending the enterprise
architect edition.  How has your experience been planning CF apps with it?
Does it require using MS Visual Studio?


I don't like Adalon, although I know it has a lot of fans.  I am just 
not impressed by Java based stand alone applications, I hate their 
interface objects with a passion that is usually only saved for 
politicians and pedophiles.

I would make the jump, especially if they will foot the bill for the 
enterprise architect edition.  Great application.


--
Timothy Heald
Analyst, Architect, Developer
[EMAIL PROTECTED]
W: 202-228-8372
C: 703-300-3911
-Original Message-
From: Anne Girardeau [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 05, 2006 4:46 PM
To: CF-Talk
Subject: ColdFusion and Visio

Has anyone on here used Visio to plan Fusebox and/or Mach-ii applications?
If so, what were your thoughts and/or recommendations?  I'm currently 
using Adalon for planning and I'm pretty happy with it.  But my 
supervisor has asked if I would be interested in using Visio instead.  
Let me know your thoughts.



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


OT: Asp calling ColdFusion

2006-04-05 Thread Michael Dinowitz
Is there any simple way to make Asp (not .net) call a CF page for processing? 
CF can use the getPageContext.include() to cause an asp page to be processed 
inside the CF context. Is there something on the Asp side that allows a CF page 
to be processed inside the Asp context?

I want to have Asp call a CF page to do a monthly DB cleanup and I can't move 
from Asp to CF for this (yet. its for a client)

Thanks

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237063
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: css file based in screen resolution

2006-04-05 Thread Kay Smoljak
A better way of doing that would be to use JavaScript to control which
file gets loaded. This is the awesomest bestest way of doing this I
have seen:
http://www.themaninblue.com/writing/perspective/2006/01/19/

This keeps the css completely separate from your CF code.

On 4/5/06, Michel Deloux [EMAIL PROTECTED] wrote:
 Hi all

 I'm looking for tips about how to use css files based in screen resolution.

 By now I'm include in application.cfm a template(screenresolution.cfm) with
 Ajax. In Ajax I'll store in session var that screen resolution.

 But when load any template occurs an error: variable
 session.screenresolution is undefined.

 Loading screenresolution.cfm with javascript alert shows me OK.

 What's wrong?

 Cheers

 MD


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237064
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: Asp calling ColdFusion

2006-04-05 Thread Dawson, Michael
If you mean the ASP equiv of CFHTTP, there is/was a product called
ASPTear. 

M!ke

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 5:14 PM
To: CF-Talk
Subject: OT: Asp calling ColdFusion

Is there any simple way to make Asp (not .net) call a CF page for
processing? CF can use the getPageContext.include() to cause an asp page
to be processed inside the CF context. Is there something on the Asp
side that allows a CF page to be processed inside the Asp context?

I want to have Asp call a CF page to do a monthly DB cleanup and I can't
move from Asp to CF for this (yet. its for a client)

Thanks

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237065
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: Asp calling ColdFusion

2006-04-05 Thread Martyn Bowis
At least a couple of options:

1. Have the asp page redirect to the cfm page 
% response.redirect mydbprocessor.cfm %

2. Use an external javascript include method to call the cfm page - you can 
call any type of file using this method, and it doesn't have to return any 
javascript to call it :)
script language=javascript src=mydbprocessor.cfm /script

Either one of these pieces of code would be simply be added to your asp page.  
Note that you could add url parameters to the mydbprocessor.cfm page to tell 
the cfm page additional information:

eg: mydbprocessor.cfm?a=1b=2

Cheers,
M

  - Original Message - 
  From: Michael Dinowitz 
  To: CF-Talk 
  Sent: Thursday, April 06, 2006 10:14 AM
  Subject: OT: Asp calling ColdFusion


  Is there any simple way to make Asp (not .net) call a CF page for processing? 
CF can use the getPageContext.include() to cause an asp page to be processed 
inside the CF context. Is there something on the Asp side that allows a CF page 
to be processed inside the Asp context?

  I want to have Asp call a CF page to do a monthly DB cleanup and I can't move 
from Asp to CF for this (yet. its for a client)

  Thanks

  

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237066
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: Verity operators are great - but what are they in Arabic/french/german/chinese???

2006-04-05 Thread Munson, Jacob
You could use one of those search engine translators like Google's
language tools or babelfish. 

 -Original Message-
 From: Duncan [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, April 05, 2006 4:07 PM
 
 On this page in livedocs :
 http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/ww
 himpl/js/html/wwhelp.htm?href=1306.htm
 
 at the very bottom in very small text it says something very 
 interesting.
 
 When you search a collection in a language other than English, you
 must translate operators such as AND and OR into the language of the
 collection.
 
 Where do we find these operators? Does anyone have an exhaustive list
 they would like to share?


[INFO] -- Access Manager:
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law.  If you are not the 
intended recipient, you are hereby notified that any disclosure, copying, 
distribution, or use of the information contained herein (including any 
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission in 
error, please immediately contact the sender and destroy the material in its 
entirety, whether in electronic or hard copy format.  Thank you.   A2



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237067
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: Verity operators are great - but what are they in Arabic/french/german/chinese???

2006-04-05 Thread Duncan
Thanks Jacob, we thought of that and we also tried a bunch of things
but dont seem to get any different result. I was hoping for a list
that has come from Adobe or Verity or someone who has used these
features.

On 4/6/06, Munson, Jacob [EMAIL PROTECTED] wrote:
 You could use one of those search engine translators like Google's
 language tools or babelfish.

  -Original Message-
  From: Duncan [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, April 05, 2006 4:07 PM
 
  On this page in livedocs :
  http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/ww
  himpl/js/html/wwhelp.htm?href=1306.htm
 
  at the very bottom in very small text it says something very
  interesting.
 
  When you search a collection in a language other than English, you
  must translate operators such as AND and OR into the language of the
  collection.
 
  Where do we find these operators? Does anyone have an exhaustive list
  they would like to share?


 [INFO] -- Access Manager:
 This transmission may contain information that is privileged, confidential 
 and/or exempt from disclosure under applicable law.  If you are not the 
 intended recipient, you are hereby notified that any disclosure, copying, 
 distribution, or use of the information contained herein (including any 
 reliance thereon) is STRICTLY PROHIBITED. If you received this transmission 
 in error, please immediately contact the sender and destroy the material in 
 its entirety, whether in electronic or hard copy format.  Thank you.   A2



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237068
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: Upgrading JVM to 1.4.2_09

2006-04-05 Thread Nathan Strutz
Aaaand I'm late to another thread. Sorry, didn't see your question earlier.

Scott,

Java 5 is incompatible with the Apache Axis stuff that's built into CF.
Basically, you can kiss your web services goodbye if you upgrade past 1.4.
That fact is pretty well confirmed. I heard (but have no proof) that people
were having trouble with XML and LDAP as well. I did it to my test server a
while ago, and it was fine. Everything was running great, but I wasn't doing
anything with XML, web services, LDAP or anything special, really.

-nathan strutz
http://www.dopefly.com/



On 4/5/06, Scott Stewart [EMAIL PROTECTED] wrote:

 Nathan,

 When you upgraded to 1.5, what errors did you see?



 Thanks

 Scott

 Scott A. Stewart
 Webmaster/ Developer
 GlobalNet Services, Inc

 http://www.gnsi.com
 11820 Parklawn Dr
 Rockville, MD 20852
 Voice: (301) 770-9610 x 335
 Fax: (301) 770-9611

 The information contained in this message may be privileged, confidential,
 and protected from disclosure.  If the reader of this message is not the
 intended recipient, or any employee or agent responsible for delivering
 this
 message to the intended recipient, you are hereby notified that any
 dissemination, distribution, or copying of this communication is strictly
 prohibited.  If you have received this communication in error, please
 notify
 us immediately by replying to the message and deleting it from your
 computer.

 -Original Message-
 From: Nathan Strutz [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 05, 2006 12:10 PM
 To: CF-Talk
 Subject: Re: Upgrading JVM to 1.4.2_09

 I've upgraded my JVM a number of times, had no problems, ever. As long as
 you stay in the 1.4.2 space, the _#s are just bugfixes mostly, and you can
 safely upgrade on CFMX 6 or 7 (just watch out for 1.5 if you like web
 services and XML). I won't say that upgrading my JVM solved every one of
 my
 problems with servers crashing, but it did help. Really, the way to go is
 to
 see about re-architecting your applications, upgrading your servers (Java
 can use almost 2GB of RAM on a 32bit server), or considering network load
 balancing.

 -nathan strutz
 http://www.dopefly.com/

 On 4/5/06, powell @ nauticom. net powell @ nauticom. net 
 [EMAIL PROTECTED] wrote:
 
  We've been having a rash of JVM crashes (1 per day usually) for the past
  7-10 days.  That's better than what it was before then (4-5 per
 day).  We
  opened a ticket with Adobe/MM and made some jvm.config changes they
  suggested for heap memory handling (and also moved the client var
 database
  from Access to SQL Server), and that changed the frequency and nature of
 the
  crashes.  The JVM crashes we're seeing now have the JVM apparently
 running
  out of memory (NT memory, not heap memory) and stopping in it's tracks.
 The
  latest suggestion from Adobe/MM is to upgrade to version 1.4.2_09 of the
  JVM, since this could in fact be a JVM bug.
 
  Anyone out there done this and know of any gotchas before I do this?
 
  TIA,
  Reed
 
 



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237069
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: Asp calling ColdFusion

2006-04-05 Thread Michael Dinowitz
I'm thinking more along the lines of the ASP equiv of getPageContext.include().

If you mean the ASP equiv of CFHTTP, there is/was a product called
ASPTear. 

M!ke

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 5:14 PM
To: CF-Talk
Subject: OT: Asp calling ColdFusion

Is there any simple way to make Asp (not .net) call a CF page for
processing? CF can use the getPageContext.include() to cause an asp page
to be processed inside the CF context. Is there something on the Asp
side that allows a CF page to be processed inside the Asp context?

I want to have Asp call a CF page to do a monthly DB cleanup and I can't
move from Asp to CF for this (yet. its for a client)

Thanks

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


Ray's Sounding app - anyone tried allowing question branching?

2006-04-05 Thread Kay Smoljak
I've implemented Ray's Soundings app into a FarCry CMS site  - I
stripped out most of the menus etc and put the limited items that I do
need into the FarCry menu system. It does the job quite nicely.

The client is asking though if they can have question branching - eg,
if Answer N is selected on Question X, jump directly to Question Y.

Has anyone done anything like this? Has anyone got any idea how I'd go about it?

Cheers,
K.

--
Kay Smoljak
http://kay.smoljak.com/

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237071
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: Asp calling ColdFusion

2006-04-05 Thread Dave Watts
 CF can use the getPageContext.include() to 
 cause an asp page to be processed inside the CF context.

I'm pretty certain that this is incorrect.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


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