Re: Save Form Data to XML file

2011-12-15 Thread Tom Jones

Thanks, this works great. I really had thought there might have been a simple 
function to to do this :-)

thanks again,
tom

So, if you have an arbitrary number of columns and when you submit the 
form you get:

form.align=left,left,...
form.dname=Agent Version,Allow Client,...

then you can do:

colCount = listLen(form.align);
xml = ;
for (i = 1;  i LTE colCount; i++) {
 xml = column;
 xml = align#listGetAt(form.align, i)#/align;
 xml = dname#listGetAt(form.dname, i)#/dname;
 ...
 xml = /column;
}
xml = columns#xml#/columns;


On 12/14/11 8:43 PM, Tom Jones wrote:
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349166
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Save Form Data to XML file

2011-12-14 Thread Tom Jones

Hello,
I have been searching all over cf-talk archives and on google and I don't see a 
good example on how to save form data to a xml file. 

So what I'm doing right now is, I have a xml file and read that and then 
display it in a form so the it can be edited. Here is an example on what I'm 
thinking. What I'm struggling with is the form data is not returned as an array 
of structs where I could easily create a xml file from, it's just coma 
separated lists.

Thanks,
tom

!--- Example XML
columns
column
alignleft/align
dnameAgent Version/dname
hiddenfalse/hidden
idx2/idx
nameagent_version/name 
order2/order
width100/width
/column
column
alignleft/align
dnameAllow Client/dname
hiddenfalse/hidden
idx3/idx
nameAllowClient/name 
order1/order
width100/width
/column
/columns
---
form name=colSettings method=post
table width=600 cellpadding=2 cellspacing=1
tr
thOrder/th
thDisplay Name/th
thAlign Text/th
thHide/th
thColumn Width/th
/tr
cfloop index=x array=#sortedColsArray#
tr
cfoutput
tdinput type=text name=order size=3 value=#x.order#/td
tdinput type=text name=dname size=50 value=#x.dname#/td
tdinput type=text name=align size=10 value=#x.align#/td
tdinput type=text name=hidden size=3 value=#x.hidden#/td
tdinput type=text name=width size=10 value=#x.width#/td
/cfoutput 
/tr
/cfloop
/table
input name=submit type=submit value=Save /
/form 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


jqgrid and file upload

2011-04-15 Thread Tom Jones

Hello,
Does anyone have a working example on how to integrate a file upload in to a 
jqgrid edit?

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Create REST based web services?

2011-02-14 Thread Tom Jones

So I dont mean to sound dense, but nearly all of the Google searches I did on 
creating REST web services with coldfusion have turned up next to nothing. I 
found a couple for consuming but not publishing.

Thanks,
tom


Absolutely. It's perfect for it. Just google it and you should see a heap of
tutorials.



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342195
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Create REST based web services?

2011-02-11 Thread Tom Jones

Hello,
I would like to know if it's possible to create REST based web services in 
Coldfusion and if so how? I'm just looking for a little how to, getting started.

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342156
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Using jsTree with Coldfusion

2011-01-12 Thread Tom Jones

Hello,
I was wondering if anyone has an example they would be willing to share on 
using jsTree with Coldfusion? I really dont know php and the example for the 
database driven example is confusing. 

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340699
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


List Sort help

2010-09-22 Thread Tom Jones

Hello,
I have a lit of version numbers and I need to sort them in the right order. 

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

How do I sort these so that they show in the right order starting with the 
highest first?

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337321
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Tom Jones

thanks,
but I get an error saying cant convert 3.6.1 to numeric.

tom

ListSort should work:

http://www.cfquickdocs.com/cf8/#ListSort

Although you might need to use the text sort instead of numeric.



andy 

Hello,
I have a lit of version numbers and I need to sort them in the right order. 

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

How do I sort these so that they show in the right order starting with the
highest first?

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337323
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Tom Jones

Hmm, OK ... I'm using CFMX7 and OpenBD 1.3

Thanks,
tom


What version of CF?

On CF9, the following works:

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

cfoutput#appVers#br /#listSort( appVers, 'numeric', 'desc' )#/cfoutput




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337326
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Tom Jones

Correction, it's only on OpenBD 1.3, that I have the problem. I will file a bug 
with them.

Thanks,
tom


Hmm, OK ... I'm using CFMX7 and OpenBD 1.3

Thanks,
tom


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337329
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


WebService question

2010-09-20 Thread Tom Jones

Hello,
I have a cfc which is used as a SOAP web service. This all works very well. But 
my question has to do with the arguments. I would like to have a argument 
called theXMLData for example ...

cffunction name=CheckIn access=remote returntype=boolean output=no
cfargument name=theXMLData

But I get an error when I try to send straight XML through a web service. I 
know I can use Base64 encoding, but it adds 30 - 40% overhead to the message. 
Is there any way to send the XML data as XML instead of encapsulating it?

The client software which is sending the data is a Objective-C app, which I 
wrote as well. So any suggestions are welcome.

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337237
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFXML and extra lines

2010-08-06 Thread Tom Jones

Hello,
I'm creating some xml using cfxml and I'm noticing empty lines in the xml 
result. When I look at the code I can kind of make out the these extra empty 
lines are in locations where i'm using a cfoutput, and cfset tags to help 
create the xml.

How can I clean up the xml so that it looks nice?

thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336067
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFXML and extra lines

2010-08-06 Thread Tom Jones

There is also an option in CF administrator to control white space.

JPass





Yea, I have the white space compression turned on, but since it's happening in 
the xml it does not get removed. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336071
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFXML and extra lines

2010-08-06 Thread Tom Jones

I finally figured it out, this works like a champ!

tom

cfset myXSLT = 
?xml version=1.0 encoding=UTF-8?
xsl:transform version=1.0 
xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xsl:output method=xml indent=yes /
xsl:strip-space elements=* /
xsl:template match=/
xsl:copy-of select=. /
/xsl:template
/xsl:transform

cfxml variable=root
...
/cfxml
cfset root = #XmlTransform(root,myXSLT)# 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336073
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Does Application.cfm get run by .cfc web service?

2010-07-09 Thread Tom Jones

Hello,
I have a web service (SOAP) file called wsl.cfc and I was wondering if 
Application.cfm got called every time a remote client connected and ran a 
function from the wsl.cfc web service?

Thanks,
tom 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335211
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


sql query builder, web based

2010-03-17 Thread Tom Jones

Hello,
I was wondering if there were any good sql query builders that I can add to my 
application. I found a jquery plugin called Sqlquerybuilder 
(http://plugins.jquery.com/project/SQL_QUERY_BUILDER). It's almost what I need 
but the saved queries will break if the schema changes since all of the table 
columns are stored as integers for point in an array.

Thanks,
tom



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331820
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


sql query builder, web based

2010-03-17 Thread Tom Jones

Hello,
I was wondering if there were any good sql query builders that I can add to my 
application. I found a jquery plugin called Sqlquerybuilder 
(http://plugins.jquery.com/project/SQL_QUERY_BUILDER). It's almost what I need 
but the saved queries will break if the schema changes since all of the table 
columns are stored as integers for point in an array.

Thanks,
tom



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331819
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


WebBased SQL query builder

2010-03-17 Thread Tom Jones

Hello,
I was wondering if there were any good sql query builders that I can add to my 
application. I found a jquery plugin called Sqlquerybuilder 
(http://plugins.jquery.com/project/SQL_QUERY_BUILDER). It's almost what I need 
but the saved queries will break if the schema changes since all of the table 
columns are stored as integers for point in an array.

Thanks,
tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331821
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


sql query builder, web based

2010-03-17 Thread Tom Jones

Hello,
I was wondering if there were any good sql query builders that I can add to my 
application. I found a jquery plugin called Sqlquerybuilder 
(http://plugins.jquery.com/project/SQL_QUERY_BUILDER). It's almost what I need 
but the saved queries will break if the schema changes since all of the table 
columns are stored as integers for point in an array.

Thanks,
tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331822
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


WebBased SQL query builder

2010-03-17 Thread Tom Jones

Hello,
I was wondering if there were any good sql query builders that I can add to my 
application. I found a jquery plugin called Sqlquerybuilder 
(http://plugins.jquery.com/project/SQL_QUERY_BUILDER). It's almost what I need 
but the saved queries will break if the schema changes since all of the table 
columns are stored as integers for point in an array.

Thanks,
tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331824
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Query/Report Builder

2010-01-04 Thread Tom Jones

So, I kind of found something that I'm looking for at 
http://plugins.jquery.com/project/SQL_QUERY_BUILDER;. The Tables and Columns 
are static but I'm looking in to changing that so it's a little bit more real 
time.

Tom



I'm not totally sure what you are after-- I Googled Quick Query and
all I could find was a MS Access plug-in. 
As for allowing your users to write their own queries, I really can't
imagine doing this without an interface that enforced your specific
business rules and limited them from running something really stupid. 
This is probably why the query builders I have seen before were
specific to an application and its entities/relationships.

There may or may not be something built in CF out there, but if you
really trust your users to run anything they want on the DB, then
install Query Analyzer and give them a log in with only select
permissions (The thought of that kind of scares me...), or try to define
a handful of reports that funnel them in a specific direction where you
can control the SQL statement, but they can filter, group, and sort by
themselves. 

~Brad


Hello,
I have been looking through the archives but really did not find much on
this. I'm looking for a web based query builder. I want to let my users
create their own queries. 
It must have been done before, so I really dont want to re-invent the
wheel. I came across something called Quick Query but it's a ASP.Net
thing and I'm not running on Windows nor do I really want to use ASP.
:-)

Are there any projects or something that will give me a head start or do
I need to write it from scratch?

Thanks,
tom

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329396
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Query/Report Builder

2010-01-03 Thread Tom Jones

Hello,
I have been looking through the archives but really did not find much on this.  
I'm looking for a web based query builder. I want to let my users create their 
own queries. 
It must have been done before, so I really dont want to re-invent the wheel. I 
came across something called Quick Query but it's a ASP.Net thing and I'm not 
running on Windows nor do I really want to use ASP. :-)

Are there any projects or something that will give me a head start or do I need 
to write it from scratch?

Thanks,
tom

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329391
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using XML to Create schema/database

2009-12-09 Thread Tom Jones

Wow, the DataMgr project is very cool. I can use it right away for other parts 
of my application.

thanks,
tom



 Tom,
 
 As Isaac mentioned his DataFaucet project and my DataMgr project will 
 both create tables and columns from XML. DataMgr will also allow you 
 to define the data (not sure about DataFaucet):
 
 http://www.bryantwebconsulting.
 com/docs/datamgr/synchronize-database-structure-activeschema.cfm
 http://www.bryantwebconsulting.com/docs/datamgr/seed-data.cfm
 
 Thanks,
 
 Steve
 
  Hello,
  I was wondering if there were any libraries or functions which can 
 be 
  used to create database tables on the fly based on XML data and then 
 
  insert the data. So all I had to worry about was formatting the xml 
 
  data.
  
  Thanks,
  tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329026
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using XML to Create schema/database

2009-12-09 Thread Tom Jones

I do have one question on the loadXml function.

I'm getting a error that says LoadXML Failed(verify datasource MySQLDS is 
correct). The DSN is valid, where/ how can I trouble shoot this?

Thanks,
tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329032
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using XML to Create schema/database

2009-12-08 Thread Tom Jones

Hello,
I was wondering if there were any libraries or functions which can be used to 
create database tables on the fly based on XML data and then insert the data. 
So all I had to worry about was formatting the xml data.

Thanks,
tom


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328990
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFLDAP SSL

2009-12-08 Thread Tom Jones

Yes, you have to install the cert, and you have to restart the cfm service as 
well. The other thing I'm not seeing in your cfldap tag is the port. If it's 
missing it's will default to 389 not the standard 636 for ssl.

tom

On Dec 8, 2009, at 8:50 AM, Jake Churchill wrote:

 
 I'm working on an SSL integration of CFLDAP for a client and am consistently
 getting Connection to LDAP server failed.
 
 All attributes are correct and for testing I'm attempting a simple query
 with * for attributes and maxrows of 10.  Snippet below.  Everything is
 straight from the IT staff that controls the LDAP server.  I read this
 article: http://kb2.adobe.com/cps/191/tn_19139.html#enableCF which stated
 that you have to install the certificate of the remote LDAP server in the CF
 local keystore.  Is that true?  Is that the only way?
 
 Here's that snippet:
 
 cfldap
 action=query
 server=client.domain.com
 username=username
 password=password
 name=ldapResult
 attributes=*
 start=DN_PROPERTIES_COMMA_SEPARATED_LIST
 secure=CFSSL_BASIC
 maxrows=10
 /
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328992
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Sign String with RSA key

2009-11-03 Thread Tom Jones

Hello,
I'm looking for a tag or extension which will allow me to sign a string with a 
RSA private key so that I can verify it with the public key. What can I use to 
do this?

Thanks,
tom 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327963
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: WildCard query

2009-07-23 Thread Tom Jones

Sorry, I thin I might not explained my self very well. Al though the  
cfdbinfo looks really cool and I think I can use it in a report  
generator tool I want to do, so thanks.

So what I want is a single form field that will search the entire  
table without having to specify which column.

Thanks,
tom



On Jul 23, 2009, at 9:24 AM, cftalk wrote:


 You can also this little gem (cfdbinfo)
 http://www.cfquickdocs.com/cf8/#cfdbinfo


 -Original Message-
 From: David McGuigan [mailto:davidmcgui...@gmail.com]
 Sent: July-22-09 9:23 PM
 To: cf-talk
 Subject: Re: WildCard query


 You can grab a list of all of the columns of any table and loop  
 through them
 pretty easily ( they syntax varies with your database vendor ).

 MySQL is just:

 describe tableName


 On Wed, Jul 22, 2009 at 9:10 PM, Tom Jones tjo...@acworld.com wrote:


 Hello,
 I'm migrating some pages from Lasso to Coldfusion and one of the
 current pages in Lasso has a query to search any field/column for a
 value. I have never done this with coldsuion before so I'm not sure
 how to go about this.

 thanks,
 tom









 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324913
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


WildCard query

2009-07-22 Thread Tom Jones

Hello,
I'm migrating some pages from Lasso to Coldfusion and one of the  
current pages in Lasso has a query to search any field/column for a  
value. I have never done this with coldsuion before so I'm not sure  
how to go about this.

thanks,
tom



  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324843
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Regex help...

2009-05-29 Thread Tom Jones

Hello,
I'm trying to use cfhttp to download and parse a directory listing from one of 
my sites. I can download the page but the parsing is a whole different story 
:-).

I'm trying to use REFind to get all of the anchor/href tags but I'm coming up 
short.

If I use the following regular expression in a script it works fine, I just 
dont know with CF, I have not used much RE in CF yet.

Thanks,
tom

cfset rawHTTP=#CFHTTP.FileContent#
cfset reMatch = 
REFind(a.*?href=['](?url.*?)['].*?(?name.*?)/a,rawHTTP,1,TRUE)
cfdump var=#reMatch# 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322972
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


FusionCharts (Free) and Data DrillDown

2009-05-13 Thread Tom Jones

Hello,
Does anyone have some sample code they would be willing to share on using 
FusionCharts and drilling down on data in a bar chart?

Thanks,
tom 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322486
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Digitally Sign XML as part of web service

2009-01-24 Thread Tom Jones
Hello,
Are there any tags/classes which would allow me to sign and xml  
response from my web service? I have created a self-signed private and  
public key for testing but I'm not sure what to do next.

Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318479
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfgrid with and auto size cfgridcolumn

2008-12-17 Thread Tom Jones
Hello,
I have found if I specify the width of a cfgrid of html type, the  
columns do not auto size to fit the width. Without having to specify  
the column widths what can I do?


Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316882
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfchart and item label not showing

2008-11-25 Thread Tom Jones
Hello,
I have a bar chart and i'm having an issue where the item/label on the x-axis 
does not always show. Is it possible for me to force it/them to show?

thanks,
tom 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315901
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Question on cfgrid and xml format

2008-11-19 Thread Tom Jones
Hello,
I wanted to see what the xml format looks like on cfgrid. The problem is 
nothing shows on the page. If I use flash or java it works. What am I doing 
wrong?

I'm using CFMX 7, I have also tried the developer edition of 8 as well.

Here is my code...

   cfform format=xml skin=basiccss 
cfgrid name=FirstGrid format=xml height=800 fontsize=12 
selectmode=edit query=qGet
cfgridcolumn name=id header=Add/Remove width=80 type=boolean 
select=yes target=yes
cfgridcolumn name=Name header=Name width=260
cfgridcolumn name=Description header = Description
/cfgrid
/cfform 


Thanks,
tom 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315553
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Bind Syntax question...

2008-08-24 Thread Tom Jones
Hello,
I've been reading through the CFML docs and I cant seem to find he  
answer to this. If I use and the bind property in a tag does the cfc  
have to be in the same parent directory as the cfm file? I usually  
like to pt all of my cfc files in a separate directory.

Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311477
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bind Syntax question...

2008-08-24 Thread Tom Jones
Thanks!

tom

On Aug 24, 2008, at 3:26 PM, MariusMilosav wrote:

 No, you can put it in another directory and then specify the full  
 path when
 calling it:
 bind=cfc:fullpath.toyour.cfcs.cfcName.functionName()...

 so the directory structure will be like this:
 fullpath/toyour/cfcs/cfcName.cfc

 Regards
 Marius Milosav
 ScorpioSoft Corp.
 www.scorpiosoft.com

 -Original Message-
 From: Tom Jones [mailto:[EMAIL PROTECTED]
 Sent: August 24, 2008 5:55 PM
 To: CF-Talk
 Subject: Bind Syntax question...

 Hello,
 I've been reading through the CFML docs and I cant seem to find he
 answer to this. If I use and the bind property in a tag does the cfc
 have to be in the same parent directory as the cfm file? I usually
 like to pt all of my cfc files in a separate directory.

 Thanks,
 tom



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311479
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfgrid with flash form type...

2008-08-14 Thread Tom Jones
Hello,
I've been hammering away at this and now I'm nt sure if it's possible.

I have a cfgrid in a flash based form and I would like to select a row
and have it populate the cfinput fields with in the form.

Can this be done using the flash based form type?

Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310963
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Align cfformgroup using hdividedbox, help please...

2008-08-10 Thread Tom Jones
Hello,
I'm starting to play with the cfformgroup tag and I'm hitting a snag.  
I would like to have two hdividedbox(s) side-by-side but I can not  
seem to get it to work. Can someone please tell me what I'm doing wrong.

Thanks,
tom

Here is my test code...

cfform format=flash width=800 height=600 action=flash_form.cfm
cfformgroup type=tabnavigator

 !--- TAB - Client  ---
cfformgroup type=page label=Client
 !--- Group Box - Left Side---
 cfformgroup type=hdividedbox
 cfformgroup type=horizontal label=Client ID
 cfinput name=ClientID type=text width=60  
readonly=yes /
 cfinput name=Active type=checkbox  
label=Active
 /cfformgroup
 cfformgroup type=horizontal label=1) First/Last  
Name
 cfinput name=FirstName1 type=text  
width=120 /
 cfinput name=LastName1 type=text  
width=120 /
 /cfformgroup
 cfformgroup type=horizontal label=2) First/Last  
Name
 cfinput name=FirstName2 type=text  
width=120 /
 cfinput name=LastName2 type=text  
width=120 /
 /cfformgroup

 cfformitem type=spacer/cfformitem

 cfformgroup type=vertical label=Address
 cfinput name=Address1 type=text width=250 /
 cfinput name=Address2 type=text width=250 /
 /cfformgroup
 cfformgroup type=horizontal label=City/State/Zip
 cfinput name=City type=text width=110 /
 cfinput name=State type=text width=40 /
 cfinput name=Zip type=text width=84 /
 /cfformgroup

 cfformitem type=spacer/cfformitem

 cfformgroup type=vertical
 cfinput name=PhoneHome label=Home  
type=text width=250 /
 cfinput name=PhoneWork label=Work  
type=text width=250 /
 cfinput name=PhoneMobile label=Mobile  
type=text width=250 /
 cfinput name=EMail label=Email type=text  
width=250 /
 /cfformgroup
/cfformgroup
  !--- Group Box - Right Side---
 cfformgroup type=hdividedbox
 cfformgroup type=vertical label=Age next birthday
 cfinput name=Age1 type=radio label=18-30  
value=18-30 /
 cfinput name=Age1 type=radio label=31-40  
value=31-40 /
 /cfformgroup
 /cfformgroup
/cfformgroup

 !--- TAB - More Info  ---
cfformgroup type=page label=Patients
cfformgroup type=horizontal label=Age next 
birthday
cfinput name=Age type=radio label=18-30 
value=18-30 /
cfinput name=Age type=radio label=31-40 
value=31-40 /

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310642
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Align cfformgroup using hdividedbox, help please...

2008-08-10 Thread Tom Jones
I figured it out i was not using the hbox and vbox properly.

tom

On Aug 10, 2008, at 10:11 AM, Tom Jones wrote:

 Hello,
 I'm starting to play with the cfformgroup tag and I'm hitting a snag.
 I would like to have two hdividedbox(s) side-by-side but I can not
 seem to get it to work. Can someone please tell me what I'm doing  
 wrong.

 Thanks,
 tom

 Here is my test code...

 cfform format=flash width=800 height=600  
 action=flash_form.cfm
   cfformgroup type=tabnavigator
   
 !--- TAB - Client  ---
   cfformgroup type=page label=Client
 !--- Group Box - Left Side---
 cfformgroup type=hdividedbox
 cfformgroup type=horizontal label=Client ID
 cfinput name=ClientID type=text width=60
 readonly=yes /
 cfinput name=Active type=checkbox
 label=Active
 /cfformgroup
 cfformgroup type=horizontal label=1) First/Last
 Name
 cfinput name=FirstName1 type=text
 width=120 /
 cfinput name=LastName1 type=text
 width=120 /
 /cfformgroup
 cfformgroup type=horizontal label=2) First/Last
 Name
 cfinput name=FirstName2 type=text
 width=120 /
 cfinput name=LastName2 type=text
 width=120 /
 /cfformgroup

 cfformitem type=spacer/cfformitem

 cfformgroup type=vertical label=Address
 cfinput name=Address1 type=text  
 width=250 /
 cfinput name=Address2 type=text  
 width=250 /
 /cfformgroup
 cfformgroup type=horizontal label=City/State/Zip
 cfinput name=City type=text width=110 /
 cfinput name=State type=text width=40 /
 cfinput name=Zip type=text width=84 /
 /cfformgroup

 cfformitem type=spacer/cfformitem

 cfformgroup type=vertical
 cfinput name=PhoneHome label=Home
 type=text width=250 /
 cfinput name=PhoneWork label=Work
 type=text width=250 /
 cfinput name=PhoneMobile label=Mobile
 type=text width=250 /
 cfinput name=EMail label=Email type=text
 width=250 /
 /cfformgroup
/cfformgroup
  !--- Group Box - Right Side---
 cfformgroup type=hdividedbox
 cfformgroup type=vertical label=Age next  
 birthday
 cfinput name=Age1 type=radio label=18-30
 value=18-30 /
 cfinput name=Age1 type=radio label=31-40
 value=31-40 /
 /cfformgroup
 /cfformgroup
   /cfformgroup

 !--- TAB - More Info  ---
   cfformgroup type=page label=Patients
   cfformgroup type=horizontal label=Age next 
 birthday
   cfinput name=Age type=radio label=18-30 
 value=18-30 /
   cfinput name=Age type=radio label=31-40 
 value=31-40 /

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310644
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfimage and Copy/Paste

2008-08-10 Thread Tom Jones
Hello,
I have a flash form and I would like to be able to copy/paste or drag  
and drop a image into a cfimage tag. Is this possible?

Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310645
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfgrid with flash form type...

2008-08-10 Thread Tom Jones
Hello,
I've been hammering away at this and now I'm nt sure if it's possible.

I have a cfgrid in a flash based form and I would like to select a row  
and have it populate the cfinput fields with in the form.

Can this be done using the flash based form type?

Thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310649
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Productizing a Coldfusion web app, question

2008-08-07 Thread Tom Jones
Hello,
I have been working on a web application to sell as a product, is  
there some way that I can protect the app by making the cfm or cfc  
files in some kind of binary format?

thanks,
tom

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310369
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Productizing a Coldfusion web app, question

2008-08-07 Thread Tom Jones
Oh, this is cool!

Thanks,
tom

On Aug 7, 2008, at 8:33 AM, Paul Giesenhagen wrote:

 cfexecute
name=C:\CFusionMX\bin\CFCompile.bat
arguments=-deploy C:\CFusionMX\wwwroot C:\CFusionMX\wwwroot 
 \compile\tocompile\ C:\CFusionMX\wwwroot\compile\compiled\
 /cfexecute

 Obvisouly make sure you have the right directories

 -Original Message-
 From: Tom Jones [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 07, 2008 10:26 AM
 To: CF-Talk
 Subject: Productizing a Coldfusion web app, question

 Hello,
 I have been working on a web application to sell as a product, is
 there some way that I can protect the app by making the cfm or cfc
 files in some kind of binary format?

 thanks,
 tom



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310373
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfgrid with Ajax question...

2008-08-02 Thread Tom Jones
Hello,
I have just started to play with Coldfusion 8 and I really like the  
Ajax integration. I have been following some the guide info on how to  
use it and I have a question. I have the following code here that  
allows me to edit in place, which is really cool, but I would like to  
have the first column be a link to the full client record and also not  
editable.

Is it possible to make the first column a link and non-editable?

thanks,
tom


cfform name=form02
 cfgrid format=html name=grid02 pagesize=10 sort=true  
bind=cfc:places.getClients({cfgridpage},{cfgridpagesize},
 {cfgridsortcolumn},{cfgridsortdirection})
delete=yes selectmode=edit
 onchange=cfc:places.editData({cfgridaction},{cfgridrow}, 
{cfgridchanged})  

 cfgridcolumn name=rid display=true header=id href=/ 
client.cfm/
 cfgridcolumn name=FirstName1 display=true header=First  
Name1/
 cfgridcolumn name=LastName1 display=true header=Last  
Name1 /
 /cfgrid
/cfform

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310100
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfgrid with Ajax question...

2008-08-02 Thread Tom Jones
Nevermind, I just figured it out, by adding (select=no) to the  
cfgridcolumn that did the trick.

tom

On Aug 2, 2008, at 5:21 PM, Tom Jones wrote:

 Hello,
 I have just started to play with Coldfusion 8 and I really like the
 Ajax integration. I have been following some the guide info on how to
 use it and I have a question. I have the following code here that
 allows me to edit in place, which is really cool, but I would like to
 have the first column be a link to the full client record and also not
 editable.

 Is it possible to make the first column a link and non-editable?

 thanks,
 tom


 cfform name=form02
 cfgrid format=html name=grid02 pagesize=10 sort=true
 bind=cfc:places.getClients({cfgridpage},{cfgridpagesize},
 {cfgridsortcolumn},{cfgridsortdirection})
   delete=yes selectmode=edit
 onchange=cfc:places.editData({cfgridaction},{cfgridrow},
 {cfgridchanged})  
   
 cfgridcolumn name=rid display=true header=id href=/
 client.cfm/
 cfgridcolumn name=FirstName1 display=true header=First
 Name1/
 cfgridcolumn name=LastName1 display=true header=Last
 Name1 /
 /cfgrid
 /cfform

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310101
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


postgresql.cfm not found in MX 6.1

2003-08-14 Thread Tom Jones
I've now run into a problem with a fresh install of MX 6.1 (RH 9, Apache
2.0.47, PostgreSQL 7.3.2). No problems with the basic install and CF and
Apache are playing nice.

Administrator, however, is causing problems. I am trying to configure a
PostgreSQL datasource - CF Administrator allows me to provide the datasource
details, but when I try to verify, edit, or delete the datasource, I get a
file not found error for  /CFIDE/administrator/datasources/postgresql.cfm!

Well, it turns out that I had PostgreSQL mis-configured--it wasn't accepting TCP/IP 
connections. 

The -i start up parameter was commented out in postgres/postmaster.conf (forget what 
it was called at this point--it's been a long two-days), which is what enables the 
TCP/IP connections to the db, apparently.

What is odd is that I still don't have a 
/CFIDE/administrator/datasources/postgresql.cfm file, but the administrator doesn't 
seem to mind anymore, though the datasources I had set up prior to the .conf update 
still error out if I try to edit or remove them.

I don't know if this is truly the answer to the problem, but I will take it!

For the record, I am using the PostgreSQL 7.3 JDBC2 driver for JDK 1.2  1.3, 
available at postgresql.org.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



postgresql.cfm not found in MX 6.1

2003-08-14 Thread Tom Jones
I've now run into a problem with a fresh install of MX 6.1 (RH 9, Apache
2.0.47, PostgreSQL 7.3.2). No problems with the basic install and CF and
Apache are playing nice.

Administrator, however, is causing problems. I am trying to configure a
PostgreSQL datasource - CF Administrator allows me to provide the datasource
details, but when I try to verify, edit, or delete the datasource, I get a
file not found error for  /CFIDE/administrator/datasources/postgresql.cfm!

Well, it turns out that I had PostgreSQL mis-configured--it wasn't accepting TCP/IP 
connections. 

The -i start up parameter was commented out in postgres/postmaster.conf (forget what 
it was called at this point--it's been a long two-days), which is what enables the 
TCP/IP connections to the db, apparently.

What is odd is that I still don't have a 
/CFIDE/administrator/datasources/postgresql.cfm file, but the administrator doesn't 
seem to mind anymore, though the datasources I had set up prior to the .conf update 
still error out if I try to edit or remove them.

I don't know if this is truly the answer to the problem, but I will take it!

For the record, I am using the PostgreSQL 7.3 JDBC2 driver for JDK 1.2  1.3, 
available at postgresql.org.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX 6.1 on RedHat Didn't work. Need Updater 3 for Linux

2003-08-09 Thread Tom Jones
  mate of mine installed the update on RedHat last nite his words:

  --
FYI, Installation of the 6.1 update on RH Linux 7.3 sucks ass. Going
back to 6.0... got it working briefly, and it is super fast, but some
how we could only see one site of 4 on the box, and no CF Administrator.
  ==

Thanks Critz. I've moved on to trying a fresh install of MX6.1 on RH9. Still 
interested in a copy of Updater 3, though, as I've run into some laughable file not 
found problems in CF admin (seperate post).

Oh joy!

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX 6.1 on RedHat Didn't work. Need Updater 3 for Linux

2003-08-07 Thread Tom Jones
  mate of mine installed the update on RedHat last nite his words:

  --
FYI, Installation of the 6.1 update on RH Linux 7.3 sucks ass. Going
back to 6.0... got it working briefly, and it is super fast, but some
how we could only see one site of 4 on the box, and no CF Administrator.
  ==

Thanks Critz. I've moved on to trying a fresh install of MX6.1 on RH9. Still 
interested in a copy of Updater 3, though, as I've run into some laughable file not 
found problems in CF admin (seperate post).

Oh joy!
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4