Re: Accessing data returned from json call

2015-03-06 Thread Rob Parkhill

Well, I don't know what standardiseCfQueryJSON does, but here's what I do:
cffunction name=listFields displayname=List Fields  access=remote
returntype=query
cfargument name=growerID displayName=Grower ID type=numeric hint=I
am the Grower ID required=true /

cfset var q = ''/
 cfquery name=q
Select * from `field`
where g_id = cfqueryparam value=#arguments.growerid#
cfsqltype=cf_sql_integer /
order by fieldname
/cfquery
 Cfif q.recordcount eq 0
Cfset q = queryNew(f_id,FieldName)
Cfset queryAddRow(q,1)/
Cfset q.f_id = 0/
Cfset q.fieldname=''/
/cfif
 Cfreturn q/
/cffunction

and then on the calling page:

  $.ajax({
type: 'get',
url: '/cfcs/field/fields.cfc',
data: {
method: 'fieldData',
fieldID: $(#fielder).val()
},
dataType: 'json',
success: function (result) {
$(#fieldname).val(result.DATA[0][2]);
$(#acres).val(result.DATA[0][12]);
$(#911num).val(result.DATA[0][6]);
}
});

You are taking a Query and putting it in a struct.  I would either leave it
a query (as Above) or put it in an array

HTH,

Rob




On Fri, 6 Mar 2015 at 10:20 Torrent Girl moniqueb...@gmail.com wrote:


 Hello

 I have the following json call:

 script
 $.ajax({
 url:data.cfc?method=getData
 ,dataType:json
 ,success: function( cfdata ){
 data=   $.standardiseCfQueryJSON( cfdata );
 // do something with the data
  return data;
 }
 });
 /script




 Here is my cfc

 cffunction name=getData access=remote returntype=any
 returnformat=json

 cfquery name=qryLoc datasource=cfartgallery
 select * from artists
 /cfquery

 cfoutput
 cfset i = 1
 cfset data = ArrayNew(1)
 cfloop query=qryLoc
 cfset row = StructNew()
 cfset row[artistID] = #qryLoc.artistID#
 cfset row[firstName] = #qryLoc.firstName#
 cfset row[locfstname] = #qryLoc.lastname#
 cfset data[i]  = row
 cfset i = i + 1
 /cfloop

 cfreturn #serializeJSON(data)#
 /cfoutput
 /cffunction




 How do I access and then output the data returned?


 Thanks

 

~|
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:360219
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Accessing data returned from json call

2015-03-06 Thread Rob Parkhill

Well, I actually had to look at the result set from the CFC, to know which
columns in the result.DATA array were the right ones.  There's also a
result.COLUMNS that gives you the list of column names, so for me
result.DATA[0][2] was the name and the Acres field was in
result.DATA[0][12] - hence why those are there.

Basically what you are getting are two arrays from the CFC, that are both
stored in the result object.  there is the COLUMNS array and the DATA
array, so you need to know which item of each you are trying to access.  So
in my case, I am setting the values of a form, based on what the request is.

As with all AJAX requests, Chrome Dev Tools, IE Dev Tools and Firebug are
your friends.  Throw a console.log(result); in there, open up whatever tool
of choice and inspect what the console is telling you.  From that assign
the data to whatever input/output containers you have.

Rob

On Fri, 6 Mar 2015 at 14:15 Torrent Girl moniqueb...@gmail.com wrote:


 Thanks Rob

 I recreated your example with the cfartgallery data source in CF.


 Here is my method:

 cffunction name=data access=remote returntype=query

 cfset var q = ''/

 cfquery name=q datasource=cfartgallery
 select * from artists
 /cfquery

  Cfif q.recordcount eq 0
 Cfset q = queryNew(artistID,firstName)
 Cfset queryAddRow(q,1)/
 Cfset q.artistID = 0/
 Cfset q.firstName=''/
 /cfif
  Cfreturn q/
 /cffunction


 Here is my call:


 script
 $.ajax({
 type: 'get',
 url: 'data.cfc',
 data: {
 method: 'data',

 },
 dataType: 'json',
 success: function (result) {
 $(#artistID).val(result.DATA[0][2]);
 $(#firstName).val(result.DATA[0][12]);

 }
 });

   /script



 So how do I output the data on the page?



 Well, I don't know what standardiseCfQueryJSON does, but here's what I do:
 cffunction name=listFields displayname=List Fields  access=remote
 returntype=query
 cfargument name=growerID displayName=Grower ID type=numeric hint=I
 am the Grower ID required=true /
 
 cfset var q = ''/
  cfquery name=q
 Select * from `field`
 where g_id = cfqueryparam value=#arguments.growerid#
 cfsqltype=cf_sql_integer /
 order by fieldname
 /cfquery
  Cfif q.recordcount eq 0
 Cfset q = queryNew(f_id,FieldName)
 Cfset queryAddRow(q,1)/
 Cfset q.f_id = 0/
 Cfset q.fieldname=''/
 /cfif
  Cfreturn q/
 /cffunction
 
 and then on the calling page:
 
   $.ajax({
 type: 'get',
 url: '/cfcs/field/fields.cfc',
 data: {
 method: 'fieldData',
 fieldID: $(#fielder).val()
 },
 dataType: 'json',
 success: function (result) {
 $(#fieldname).val(result.DATA[0][2]);
 $(#acres).val(result.DATA[0][12]);
 $(#911num).val(result.DATA[0][6]);
 }
 });
 
 You are taking a Query and putting it in a struct.  I would either leave
 it
 a query (as Above) or put it in an array
 
 HTH,
 
 Rob
 
 
 
 
 On Fri, 6 Mar 2015 at 10:20 Torrent Girl moniqueb...@gmail.com 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:360221
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Twitter feed

2014-03-14 Thread Rob Parkhill

Why not just use what Twitter provides? dev.twitter.com

You can embed a bunch of stuff straight from Twitter, no muss, no fuss.


On Fri, Mar 14, 2014 at 5:36 PM, Rick Sanders r...@webenergy.ca wrote:


 Hey guys n' gals!

 I want to put a Twitter live feed on a CF site like Wordpress. Is there
 anything like that already out there or do I need to code it from scratch?

 If I need to code it, has anyone done it? Is it difficult? Thanks!

 Kind Regards,

 Rick Sanders
 T: 902-401-7689
 W: www.webenergy.cahttp://www.webenergy.ca/




 

~|
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:357940
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: # in variables

2014-02-07 Thread Rob Parkhill

Run a Replace on the string of data, and change the single # to a double ##
that then CF would process as a single one?


On Fri, Feb 7, 2014 at 11:58 AM, Bryan Stevenson 
br...@electricedgesystems.com wrote:


 Hey All,

 I've got an issue where an external program written in Adobe AIR is
 passing a pipe delimited list of values to CF via a webservice and that
 list may contain strings like so #94; (a caret symbol)or just a
 straight up # (like someone saying x# of y - short form for x number of
 y).  BTW in Adobe AIR caret symbols in the data values in the list are
 being replaced with #94; because the caret is a special character in
 the pipe delimited list (it's used as a sub-list delimiter).

 CF chokes on the single pound in the variable (or confuses everything
 between 2 # as a variable name instead of simple values).

 I'm having quite the brain fart day and so I'm looking for a way to deal
 with this reality - any thoughts?

 TIA

 Take care

 -Bryan

 --
 *Bryan Stevenson*B.Comm.
 President  CEO
 Electric Edge Systems Group Inc. - makers of FACTS^(TM)
 phone: 250.480.0642
 cell: 250.920.8830
 e-mail: br...@electricedgesystems.com mailto:
 br...@electricedgesystems.com
 web: www.electricedgesystems.com http://www.electricedgesystems.com
 and www.fisheryfacts.com http://www.fisheryfacts.com

 

 Please consider the environment before printing this e-mail

 -CONFIDENTIALITY--
 This message, including any attachments, is confidential and may contain
 information that is privileged or exempt from disclosure. It is intended
 only for the person to whom it is addressed unless expressly authorized
 otherwise by the sender. If you are not an authorized recipient, please
 notify the sender immediately and permanently destroy all copies of this
 message and attachments.


 

~|
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:357615
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: # in variables

2014-02-07 Thread Rob Parkhill

I thought the #'s were inside the list.  If not and you control the AIR
app, then just add the replace on the other end, as Russ suggested.


On Fri, Feb 7, 2014 at 12:20 PM, Bryan Stevenson 
br...@electricedgesystems.com wrote:


 Thanks Robsorry I should have mentioned that was the first thing I
 tried (ye old double up the #), but the issue seems to be that when a
 variable arrives on CF's door with a single # in it, CF bombs when
 attempting to run the replace.  Now I did say seemsthe way my day
 has goneI will re-test that to make dang sure ;-)

 Cheers

 On 14-02-07 09:08 AM, Rob Parkhill wrote:
  Run a Replace on the string of data, and change the single # to a double
 ##
  that then CF would process as a single one?



 

~|
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:357619
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Windows 8.1 Pro 64

2014-01-29 Thread Rob Parkhill

I am successfully running CF10 on IIS 8.5 and Windows 8.1 for my
development machine.  Works like a treat, you just have to make sure you
run the Web Server Config Tool every time you add a new site, and I had to
modify the web.config file to allow error messages to pass through to CF
and not be caught by IIS, but nothing that a few minutes of Googling didn't
solve.

HTH,

Rob


On Wed, Jan 29, 2014 at 12:29 PM, Chad Gray cg...@careyweb.com wrote:


 Anyone know if we can run CF 9 and IIS on Windows 8.1 Pro?

 I am looking at getting a Lenovo Carbon Ultrabook.

 Thanks!
 Chad

 

~|
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:357519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Barcodes

2013-08-29 Thread Rob Parkhill

You can use jQuery:

http://barcode-coder.com/en/barcode-jquery-plugin-201.html

There might be others too


On Thu, Aug 29, 2013 at 11:39 AM, Chad Gray cg...@careyweb.com wrote:


 Well since Efflare's CFX gFont does not work with 64 bit systems I need to
 find a new way to make a barcodes on my websites.

 Anyone recommend a way to create and display barcodes on a webpage?

 Thanks,
 Chad

 

~|
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:356650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Getting output into a div using cfdocument

2013-08-29 Thread Rob Parkhill

Could you call a CFC that created the Barcode, and then saved the HTML (or
whatever the result is) to a DB, and then have CF call it out inside the
CFdocument just to display? It's an extra step, but it _should_ allow you
to get around the CFDocument issue.


On Thu, Aug 29, 2013 at 4:35 PM, Bruce Sorge sor...@gmail.com wrote:


 I'm starting to figure that out. I even included the JS library in the
 cfdocument tag and still nada. This sucks. If I were on my own server I'd
 have no issues downloading BBQ or something like that, but since I am on a
 hosted server I am pretty much limited in what I can do.

 Bruce

 On Aug 29, 2013, at 4:20 PM, Dave Watts dwa...@figleaf.com wrote:

 
  I don't think you'll be able to use client-side barcode generation
  with CFDOCUMENT. The jQuery barcode plugin uses JavaScript, not just
  CSS.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.
 


 

~|
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:356663
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How can I view arguments in a CFC on-screen?

2013-04-01 Thread Rob Parkhill

Sure

cfdump var=#arguments# output=c:/temp.html format=html /

That will throw all the arguments into an html file on the c drive.

Cheers,

Rob
On 2013-04-01 1:36 PM, Rick Faircloth r...@whitestonemedia.com wrote:


 I wouldn't think this would be that difficult! Normally, I would include
 variables in a struct (when I'm using AJAX, whichis almost always) and view
 the variables when they're returned to the calling page. However, there are
 times, like right now, when I just want to have a look at allthe argument
 variables that a CFC is receiving and verify their accuracy. Isn't there an
 easy way to do this? I'm using CF 9. Thanks! Rick

 

~|
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:355215
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-07 Thread Rob Parkhill

I did not have any time out issues.  I'd do what Bobby suggests and add the
flag, that way a timeout doesn't kill what you had accomplished.  I'm
presuming you are doing this in a dev environment, so you can always
increase your timeout times so that it runs.

Cheers,

Rob
On 2013-03-07 12:58 PM, Torrent Girl moniqueb...@gmail.com wrote:


 Here you go.
 
 Cfquery name=GetUserPasswords
 select memberid, password from users
 /cfquery
 cfoutput#getUserPasswords.RecordCount#/cfoutput!---Just to see how
 many we have ---
 Cfset salt = ''/
 cfset newpassword = ''/
 Cfset count = 0/
 cfloop query=GetUserPasswords
 cfset salt = generateSecretKey(DESEDE )/
 Cfset newpassword = hash( hash(password[currentrow]) 
 user.salt,SHA-256,us-ascii)/
  cfquery name=updateUser
 UPdate users set password = '#user.password#', salt = '#user.salt#'
 where memberid = '#memberid[currentrow]#'
  /cfquery
 Cfset salt= ''/
 cfset newpassword = ''/
 Cfset count = count +1/
 /cfloop
   and we changed cfoutput#count#/cfoutput
 
 Again, you will want to change one account and test it to make sure that
 your login routine will validate the password and login the user.  Then
 you
 can just run this on the whole table, no muss no fuss.  You won't have to
 make the users change anything, their passwords will just be secure.  You
 will also have to come up with a Forgot Password routine, since the
 passwords are irretrievable.
 
 Cheers,
 
 Rob
 
 


 Hi Rob

 Did you have a problem with timeouts or out of memory errors?

 I have quite a bit of records

 

~|
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:354877
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-06 Thread Rob Parkhill

Here you go.

Cfquery name=GetUserPasswords
select memberid, password from users
/cfquery
cfoutput#getUserPasswords.RecordCount#/cfoutput!---Just to see how
many we have ---
Cfset salt = ''/
cfset newpassword = ''/
Cfset count = 0/
cfloop query=GetUserPasswords
cfset salt = generateSecretKey(DESEDE )/
Cfset newpassword = hash( hash(password[currentrow]) 
user.salt,SHA-256,us-ascii)/
 cfquery name=updateUser
UPdate users set password = '#user.password#', salt = '#user.salt#'
where memberid = '#memberid[currentrow]#'
 /cfquery
Cfset salt= ''/
cfset newpassword = ''/
Cfset count = count +1/
/cfloop
  and we changed cfoutput#count#/cfoutput

Again, you will want to change one account and test it to make sure that
your login routine will validate the password and login the user.  Then you
can just run this on the whole table, no muss no fuss.  You won't have to
make the users change anything, their passwords will just be secure.  You
will also have to come up with a Forgot Password routine, since the
passwords are irretrievable.

Cheers,

Rob


On Wed, Mar 6, 2013 at 9:33 AM, Torrent Girl moniqueb...@gmail.com wrote:


 When I performed this same task a few months ago, I basically wrote a page
 that did all the salting and updating as a loop.  Obviously I had decided
 on the actual process for login and tested it to make sure it worked.  I
 just increased the size of the password column, added a salt column and
 ran
 all users through the salting processing page.  I can find the code if you
 are interested.
 
 Rob
 On 2013-03-05 7:15 AM, Torrent Girl moniqueb...@gmail.com wrote:
 
 


 Rob that would be GREAT.

 Thank you

 

~|
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:354852
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-05 Thread Rob Parkhill

When I performed this same task a few months ago, I basically wrote a page
that did all the salting and updating as a loop.  Obviously I had decided
on the actual process for login and tested it to make sure it worked.  I
just increased the size of the password column, added a salt column and ran
all users through the salting processing page.  I can find the code if you
are interested.

Rob
On 2013-03-05 7:15 AM, Torrent Girl moniqueb...@gmail.com wrote:


 Hello all

 I am implementing salt/password hash to an application that is being
 redeveloped.

 Adding salt/hash to newly created accounts is going well but of course
 there are hundreds of existing accounts.

 What would be the best practice for adding salt/hash to all of the
 existing records?

 Thanks in advance.

 

~|
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:354811
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-05 Thread Rob Parkhill

I guess I didn't make myself clear.  I wrote a routine that salted and
hashed all of the plain text passwords that were in the system.  It was a
simple routine that only needed to run once.  There was no inconvenience to
the users, as their passwords didn't change, they just were secure from
anyone else accessing them.

I guess the question becomes, is, can you take the site off line for an 20
minutes to run the routine and update your login security to be based on
salts and hashes?

Cheers,

Rob


On Tue, Mar 5, 2013 at 1:29 PM, Roger Austin raust...@nc.rr.com wrote:


 On 3/5/2013 7:15 AM, Torrent Girl wrote:
 
  Hello all
 
  I am implementing salt/password hash to an application that is being
 redeveloped.
 
  Adding salt/hash to newly created accounts is going well but of course
 there are hundreds of existing accounts.
 
  What would be the best practice for adding salt/hash to all of the
 existing records?

 A field for PasswordExpiration or MustResetPassword in the database is
 helpful for this and other things. You can check on login to see if it
 is set and force a password change. I've used both in different
 situations. That way, you can force the issue once you have your
 salt-hash function set up.

 --
 LinkedIn: http://www.linkedin.com/pub/8/a4/60
 Twitter:  http://twitter.com/RogerTheGeek
 Google+:  https://plus.google.com/117357905892731200369

 

~|
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:354832
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Truncating pages SQL 2000

2013-02-18 Thread Rob Parkhill

Jenny,

There is a limit on the amount of text that can be written to the database
in CF.  It's a part of the advanced settings for the database connection.
Limit is 65000 characters by default.  You can up that to anything.

Hope that helps,

Rob
On 2013-02-18 8:06 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk
wrote:


 Hi all,

 Is there anything that could cause truncation of data in an ntext field,
 either by sql or coldfusion, or some other way?

 I have a CMS app that has been running a site for a few years and the
 content field of the CMS pages has become truncated. I need to determine
 whether this was user error, or if it could have happened in any other way.

 Many thanks,
 Jenny


 --
 I am using the free version of SPAMfighter.
 SPAMfighter has removed 8643 of my spam emails to date.
 Get the free SPAMfighter here: http://www.spamfighter.com/len

 Do you have a slow PC? Try a Free scan
 http://www.spamfighter.com/SLOW-PCfighter?cid=sigen



 

~|
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:354559
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Truncating pages SQL 2000

2013-02-18 Thread Rob Parkhill

So, the data is fine in the db, but not displaying all of it?  What does
the variable look like upon retrieval?  Is there something odd in the data
that it's causing the truncation?
On 2013-02-18 10:39 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk
wrote:


 Actually, looking at it again.  It's not the writing of the data, it's the
 retrieval, so no actual truncation takes place?

 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: 18 February 2013 15:28
 To: cf-talk
 Subject: RE: Truncating pages SQL 2000


 Hi Rob,

 Thanks for your reply.  I'm getting rusty!  I forgot to enable long text
 retrieval on a new server.

 Cheers,
 Jenny

 -Original Message-
 From: Rob Parkhill [mailto:robert.parkh...@gmail.com]
 Sent: 18 February 2013 13:49
 To: cf-talk
 Subject: Re: Truncating pages SQL 2000


 Jenny,

 There is a limit on the amount of text that can be written to the database
 in CF.  It's a part of the advanced settings for the database connection.
 Limit is 65000 characters by default.  You can up that to anything.

 Hope that helps,

 Rob
 On 2013-02-18 8:06 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk
 wrote:

 
  Hi all,
 
  Is there anything that could cause truncation of data in an ntext
  field, either by sql or coldfusion, or some other way?
 
  I have a CMS app that has been running a site for a few years and the
  content field of the CMS pages has become truncated. I need to
  determine whether this was user error, or if it could have happened in
 any
 other way.
 
  Many thanks,
  Jenny
 
 
  --
  I am using the free version of SPAMfighter.
  SPAMfighter has removed 8643 of my spam emails to date.
  Get the free SPAMfighter here: http://www.spamfighter.com/len
 
  Do you have a slow PC? Try a Free scan
  http://www.spamfighter.com/SLOW-PCfighter?cid=sigen
 
 
 
 





 

~|
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:354573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Date Truncation on CFquery Update

2012-06-13 Thread Rob Parkhill

Probably Max data length in cf admin.  Look at the advanced DB connection
settings.  Will be set to default of 6 characters.  I ran into
something similar saving a wddx variable.

Cheers,

Rob
On Jun 13, 2012 12:17 PM, Robert Harrison rob...@austin-williams.com
wrote:


 I have a client who is essentially entering a document of 50+ pages into a
 text area field (tiny MCE). The data is being saved to a data base via
 CFquery Update.  The data base is MS SQL server and the field length is set
 to VARCHAR(MAX).  Data is being truncated on update to data base (same
 place every time).

 I have checked and the data is not being lost by the text area. If I
 display the post field after the Update Query, all the data is there. It's
 definitely being truncated either by CFQuery or by the data base.

 I have (temporarily) removed cfqueryparam, so that is not the culprit.

 Any ideas what is causing the truncation?

 Thanks



 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austin_

 

~|
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:351566
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF9 .NET Integration

2012-01-20 Thread Rob Parkhill

Good Morning,

I'm having an issue getting the .NET integration working with CF 9.01.  I've 
downloaded and replaced the .NET integration stuff, to make sure that that is 
all good, but now it won't reference any class inside the assembly.  NOTE:  
This is my first time with .NET integration...

I have help docs for a .NET SDK that is part of a program we use at work.  
Seems that it can access the assembly fine, but not see any of the functions 
inside of it.  From the help docs for the SDK, it seems that the classes are 
all in various name spaces.  Should I reference the namespace when indicating 
the class name?  Do I use dot notation or replace the dots with underscores?

Right now I have the following:

cfobject type=.NET name=labber assembl=path.to.dll class=COM_Batch/

then I get an error COM_Batch not found in specified assembly and regardless 
of how I reference the class 'COM_Batch' the error doesn't change.

Are there any suggestions for what I might be missing here?

Cheers,

Rob 

~|
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:349569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 .NET Integration

2012-01-20 Thread Rob Parkhill

Scott,

Thanks, but I had that issue and fixed it.  It can open the assembly, but
it never finds the class inside of it.  I'm not sure if it is a problem
with the source dll, or if it has to do with name spaces.

Cheers,

Rob
On Jan 20, 2012 10:40 AM, Scott Stewart webmas...@sstwebworks.com wrote:


 It sounds like you've run into an issue that I ran into when I upgraded to
 9.0.1

 See if this blog entry helps:
 http://www.sstwebworks.com/index.cfm?mode=archivemonth=7year=2011

 Hope this helps



 On Fri, Jan 20, 2012 at 10:15 AM, Rob Parkhill robert.parkh...@gmail.com
 wrote:

 
  Good Morning,
 
  I'm having an issue getting the .NET integration working with CF 9.01.
   I've downloaded and replaced the .NET integration stuff, to make sure
 that
  that is all good, but now it won't reference any class inside the
 assembly.
   NOTE:  This is my first time with .NET integration...
 
  I have help docs for a .NET SDK that is part of a program we use at work.
   Seems that it can access the assembly fine, but not see any of the
  functions inside of it.  From the help docs for the SDK, it seems that
 the
  classes are all in various name spaces.  Should I reference the namespace
  when indicating the class name?  Do I use dot notation or replace the
 dots
  with underscores?
 
  Right now I have the following:
 
  cfobject type=.NET name=labber assembl=path.to.dll
  class=COM_Batch/
 
  then I get an error COM_Batch not found in specified assembly and
  regardless of how I reference the class 'COM_Batch' the error doesn't
  change.
 
  Are there any suggestions for what I might be missing here?
 
  Cheers,
 
  Rob
 
 

 

~|
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:349573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 .NET Integration

2012-01-20 Thread Rob Parkhill

But it won't instantiate unless I indicate the correct class... Hence my
current problem... :-)
On Jan 20, 2012 11:16 AM, Scott Stewart webmas...@sstwebworks.com wrote:


 After you instantiate the assembly, dump it. This will show you what CF
 sees.. it ain't always what you think it should be.

 On Fri, Jan 20, 2012 at 11:10 AM, Rob Parkhill robert.parkh...@gmail.com
 wrote:

 
  Scott,
 
  Thanks, but I had that issue and fixed it.  It can open the assembly, but
  it never finds the class inside of it.  I'm not sure if it is a problem
  with the source dll, or if it has to do with name spaces.
 
  Cheers,
 
  Rob
  On Jan 20, 2012 10:40 AM, Scott Stewart webmas...@sstwebworks.com
  wrote:
 
  
   It sounds like you've run into an issue that I ran into when I upgraded
  to
   9.0.1
  
   See if this blog entry helps:
   http://www.sstwebworks.com/index.cfm?mode=archivemonth=7year=2011
  
   Hope this helps
  
  
  
   On Fri, Jan 20, 2012 at 10:15 AM, Rob Parkhill 
  robert.parkh...@gmail.com
   wrote:
  
   
Good Morning,
   
I'm having an issue getting the .NET integration working with CF
 9.01.
 I've downloaded and replaced the .NET integration stuff, to make
 sure
   that
that is all good, but now it won't reference any class inside the
   assembly.
 NOTE:  This is my first time with .NET integration...
   
I have help docs for a .NET SDK that is part of a program we use at
  work.
 Seems that it can access the assembly fine, but not see any of the
functions inside of it.  From the help docs for the SDK, it seems
 that
   the
classes are all in various name spaces.  Should I reference the
  namespace
when indicating the class name?  Do I use dot notation or replace the
   dots
with underscores?
   
Right now I have the following:
   
cfobject type=.NET name=labber assembl=path.to.dll
class=COM_Batch/
   
then I get an error COM_Batch not found in specified assembly and
regardless of how I reference the class 'COM_Batch' the error doesn't
change.
   
Are there any suggestions for what I might be missing here?
   
Cheers,
   
Rob
   
   
  
  
 
 

 

~|
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:349575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: MAX and CF

2011-10-04 Thread Rob Parkhill

Terry Ryan posted yesterday to twitter that there would be no CF love in the
adobe keynotes this year, but not too worry things were still a go...

Rob
On Oct 4, 2011 3:46 PM, Judah McAuley ju...@wiredotter.com wrote:

 Not making keynotes, but Ray Camden has a MAX presentation on Zeus
 posted the Adobe TV site:

 http://tv.adobe.com/watch/max-2011-develop/whats-next-in-coldfusion/

 Cheers,
 Judah

 On Tue, Oct 4, 2011 at 12:39 PM, Alan Rother alan.rot...@gmail.com
wrote:

 DISCLAIMER -

 I DO NOT WORK FOR ADOBE - I AM JUST GUESSING LIKE EVERYONE ELSE




 Odds are we'll see some sneak peeks tonight at the event. Based on the
 development cycle of CF, it's not due out for another 6 months or so, so
 they really have no reason to show it off yet.

 =]

 

~|
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:347914
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: Workstation recommendations

2011-09-07 Thread Rob Parkhill

I have an Asus laptop, that although posted as a gaming system, has tons of
power and runs anything I want.  I have everything you described running
with no issues.

So +1 for Asus from me

Rob
On Sep 7, 2011 11:47 AM, Alan Rother alan.rot...@gmail.com wrote:

 +1 for Lenovo

 +0.5 for Dell, I've had pretty good luck with Dell

 =]
 --
 Alan Rother
 Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org
 Twitter: @AlanRother


 

~|
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:347275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Shameful

2011-05-11 Thread Rob Parkhill

No, there is an issue with the SWF.  I have the debug version of Flash
player, and I get the following error (Chrome 11)

TypeError: Error #1009: Cannot access a property or method of a null object
reference.
at fs.media.player::SWFPlayer/onLoadComplete()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at br.com.stimuli.loading.loadingtypes::LoadingItem/onCompleteHandler()
at br.com.stimuli.loading.loadingtypes::ImageItem/onCompleteHandler()

Then when I hit play, I hear the voice, but see nothing on screen or
anything.  I would imagine that this issue may not be limited to the CF
Demos solely, but may also be in a few other places where they use video to
display features.

Cheers,

Rob

On Wed, May 11, 2011 at 9:33 AM, Russ Michaels r...@michaels.me.uk wrote:


 perhaps try re-installing Air ?

 On Wed, May 11, 2011 at 2:26 PM, Jason Durham jqdur...@gmail.com wrote:

 
  I've had problems yesterday and today loading the AIR demo.  I tried FF4,
  Chrome 11 and IE8 on two different internet connections.  The modal opens
  and the player appears but the movie never starts.  If I click play, the
  movie turns dark gray and stops.
 
  Also, the cfspreadsheet demo has a dark overlay on it that makes it very
  difficult to read.  I haven't tried any others.
 
  Me.setAttire(flamesuit);
 
  Jason Durham
 
 
  On Tue, May 10, 2011 at 10:55 PM, Maureen mamamaur...@gmail.com wrote:
 
  
   Sounds like short between the chair and keyboard.
  
   On Tue, May 10, 2011 at 5:30 PM, Gerald Guido gerald.gu...@gmail.com
   wrote:
   
Works on this end. Mac and PC. IE and FF.
   
 ID ten T error by chance??
   
Curious -G!
   
On Tue, May 10, 2011 at 8:03 PM, Irvin Gomez ir...@pixel69.com
  wrote:
   
   
The Adobe Coldfusion 9 demos do not work and have not worked for who
   knows
how long. I guess that's the best way to show Adobe's commitment to
  its
comatose product.
   
http://www.adobe.com/products/coldfusion/demos
  
  
 
 

 

~|
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:35
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF and GIS?

2011-03-16 Thread Rob Parkhill

Bryan,

Well it really sounds like what you need to do is the number crunching.  Are
the coordinates going to be stored in a database?  or read straight off of a
shape file lets say?  All you really need to do is incrementally check your
bounds or your coordinate pairs to the location. You should basically need
to determine the min/max lat/long at each point in the polygon.  I guess I
would start off with a few simple tests. check the min/max for lat/long for
the entire polygon, against the coordinate to immediately identify points
that are going to outside of the possible shape.  Then I would look at the
point itself, and check its lat/long against similar lat/long pairs in the
shape file.  Probably wouldn't really need to do too much number crunching
really.

Pseudo-code:

set point.lat = points latitude
set point.long = point.longitude

set polyMinLat = minimum latitude from the poly
set polyMaxLat = maximum latitude from the poly
set polyMinLong = minimum poly long
set polyMaxLong = maximum poly long

if (point.lat polyminlat or point.lat  polymaxlat) and (point.long 
polyMinLong or pointl.long  polyMaxLong){
!--- point is outside of polygon bounds as defined as a rectangle, no
further anything necessary ---
}
Else{
get polyLatMin and polyLatMax where polylat like point.lat !--- get the
min/max for the same latitude ---
get polyLongMin and polyLongMax where polyLong like point.long !--- get the
min/max for the same longitude ---

If (point.lat between polyLatMin and polyLatMax) and (point.long between
polyLongMin and PolyLongMax){
point is within polygon!
}
else {
!--- here you could do specific tests to see if it was just out in long or
lat or outside of it regardless as well ---
Point is not in the polygon.
}

Again, I guess it depends on the data structure you are using, but probably
not really all that difficult, they are just numbers after all.

Hope that helps,

Rob

On Wed, Mar 16, 2011 at 12:12 PM, Bryan Stevenson 
br...@electricedgesystems.com wrote:


 Hi All,

 Quite new to GIS, but not CF..

 I'm wondering if anyone has any advice on performing a task that
 involves determining if a given lat/long is within a given oddly shaped
 (not a simple rectangle) area/box?

 I would assume the hard part is defining the boundaries of an irregular
 shaped box, but once defined the check to see if the co-ordinates are
 within it is probably more straightforward.

 I'm also guessing that the number crunching may be via some sort of Java
 package?

 Any insight is greatly appreciatedand please blow away my
 assumptions if I'm off base ;-)

 TIA

 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: br...@electricedgesystems.com
 web: www.electricedgesystems.com

 Notice:
 This message, including any attachments, is confidential and may contain
 information that is privileged or exempt from disclosure. It is intended
 only for the person to whom it is addressed unless expressly authorized
 otherwise by the sender. If you are not an authorized recipient, please
 notify the sender immediately and permanently destroy all copies of this
 message and attachments.
 Please consider the environment before printing this e-mail



 

~|
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:343070
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Getting information from a cfquery/cfloop to display in a table or div

2011-02-08 Thread Rob Parkhill

Michelle,

Try the following:

table
trtdFirst Name/tdtdLast Name/tdtdStarship/td/tr

cfoutput query=member
trtd#fname#/tdtd#lname#/tdtd#starship#/td/tr
/cfoutput
/table

Cheers,

Rob

On Tue, Feb 8, 2011 at 1:01 PM, Rick Faircloth r...@whitestonemedia.comwrote:


 Try leaving out the cfoutput/cfoutput
 in the your cfloop.

 Rick

 -Original Message-
 From: Michelle Dupray [mailto:mdup...@gmail.com]
 Sent: Tuesday, February 08, 2011 12:24 PM
 To: cf-talk
 Subject: Getting information from a cfquery/cfloop to display in a table or
 div


 Hello,

 I'm trying to get information from our database to display in horizontal
 form (table or div). I'm able to pull information from our database with
 the
 following code. Everytime I try to incorporate a table the same information
 will display in on each row; different information will not display in each
 cell. Any ideas?

 cfquery name=member datasource=ASAGOV
 SELECT fname, lname, Starship, Rank
FROM   Star_Trek
 where rank  'Captain' AND
 rank  'Science Officer'


 /cfquery
  cfloop query=membercfoutput



 #fname# #lname#, #starship#



 /cfoutput/cfloop



 

~|
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:341990
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: why is cf_builder so expensive?

2011-01-25 Thread Rob Parkhill

I would suggest two things:

1)  Check out this page for all the awesome features of CFB -
http://www.adobe.com/products/coldfusion/cfbuilder/features/ - sorry Adobe
does a better job of listing the features than I will
http://www.adobe.com/products/coldfusion/cfbuilder/features/2) Sign up and
get the trial, I am pretty sure that you get a 30 day trial of the software
to try out the awesome features listed above - If you are already into
CFEclipse it should be familiar enough for you.

Cheers,

Rob

On Tue, Jan 25, 2011 at 9:48 PM, Michael Firth mfsqlser...@gmail.comwrote:


 M.  So how exactly does one afford the best tools when they don't have
 the dollars?  Easy to say when you got a job.  You say people at Adobe have
 to eat, but most people at Adobe also make 60-8 easily.

 And if your a developer the educational use is of no real benefit because
 if I remember that was only for college students.

 I am surprised that nobody has really tried to say why cf builder is so
 good likes it features.  in other words, nobody has really provided a good
 reason as to why should I invest in it.


 On Jan 25, 2011, at 9:44 PM, Dave Watts wrote:

 
  Contrary to popular belief not everybody makes the big bucks.
 
  In that case, it's even more important to have the best tools you can
 afford.
 
  What would be nice to see some sort of discount for developers or trim
 it
  down like they do for the server so that use developers can at least
 practice using it.
 
  It would be nice if unicorns shit rainbows too. But people at Adobe
  have to eat just like everyone else. And I don't think they could
  easily differentiate between practice and real coding.
 
  That said, Adobe has offered bundling - buy CF server, get two or
  three seats of CF Builder. Adobe's also offered Flash Builder for free
  to unemployed developers, and ColdFusion Builder free for educational
  use:
 
  http://freeriatools.adobe.com/
 
  If you have a valid student ID, you're good to go.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.
 
 

 

~|
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:341283
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: decrypt coldfusion admin password

2010-11-18 Thread Rob Parkhill

Rusty,

You don't need to decryt it, you can reset it.

Depending on which version of course!

Here is the link that I have used for other customers that works.

http://www.tek-tips.com/faqs.cfm?fid=3731

http://www.tek-tips.com/faqs.cfm?fid=3731Cheers,

Rob

On Thu, Nov 18, 2010 at 4:01 PM, Rusty Owens rusty_ow...@hotmail.comwrote:


 The company I work for has a coldfusion application that is being migrated
 to our servers.  We need to log in to the admin but no one who wrote it is
 here any longer.  I used to have code to decrypt and display the admin
 password. Can anyone get me that?

 

~|
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:339383
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Report Builder

2010-11-04 Thread Rob Parkhill

Depending on how much you like Report Builder, you can always come up with a
main template (header footer, etc) then a series (different data positions)
of sub-reports (just the details really) and allow the users to select which
'layout' they want to use, and what data goes where.  Then it is just a
matter of having the data in the correct spot when calling the CFR.  I have
worked this into a few sites for 'custom' Reporting.

Cheers,

Rob

On Thu, Nov 4, 2010 at 12:03 PM, Scott Spurlock spurlock.sc...@yahoo.comwrote:


 The users aren't going to be too technically proficient.  Just your average
 group of users.  I think Report Builder is going to make their heads
 explode.

 I was hoping for something user-friendly that would allow them to customize
 what data appears in a report and where (allow them to change the layout
 somewhat).  Should I simply be thinking of making my own AJAXy kind of
 front-end?

 Thanks,
 Scott

 --- On Wed, 11/3/10, Dave Watts dwa...@figleaf.com wrote:
 It really depends on two things. First, how technically proficient are
 these users? Do they have experience using banded report generators?

 Second, do you want to allow them the level of access to the server
 needed to generate reports with Report Builder?





 

~|
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:338833
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: Canadian CF Hosting

2010-09-29 Thread Rob Parkhill

Larry,

I have used cfhosting.ca

Not the cheapest CF Solution, but good uptime - mostly, and knowledgeable
staff.

Cheers,

Rob

On Wed, Sep 29, 2010 at 10:45 AM, Larry Lyons larrycly...@gmail.com wrote:


 Greetings,

 Pardon for the slightly off topic posting, but I thought I'd try the
 collective wisdom of the list here. Anyhow this is a favour I'm doing for a
 colleague. He's looking for a  Canadian web hosting firm that offer CF as
 part of the package. Does anyone have recommendations?

 many thanks,

 larry
 --
 Larry C. Lyons
 web: http://www.lyonsmorris.com/lyons
 LinkedIn: http://www.linkedin.com/in/larryclyons
 --
 People need to realize that the plural of anecdote is not data.


 

~|
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:337638
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Rob Parkhill

Rick,

Paul Kukiel has this on his blog. It uses some Flex etc. but it is a good
starting point.  I know that Paul has created a system for chatting with
just him, which I am sure you could expand.

http://blog.kukiel.net/2009/03/pushing-data-to-flex-clients-with.html

http://blog.kukiel.net/2009/03/pushing-data-to-flex-clients-with.htmlRob


~|
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:337185
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-24 Thread Rob Parkhill

No, I wouldn't say that.  It just means that there is no longer a committee,
whose goal is to have a standard set of tags available in all three engines.
 It means that if Adobe pushes a new tag into CFX, there is no one saying
that that tag should then become a part of the common language base with
Railo and OpenBD, of course the opposite is true that any tag that resides
in Railo and OpenBD do not need to be integrated into ACF as part of a
standard language.

Rob

On Sat, Jul 24, 2010 at 2:06 PM, Arsalan Tariq Keen
arsalk...@hotmail.comwrote:


 Does this mean CFML is or will be dying ?

 --
 From: Mark Drew mark.d...@gmail.com
 Sent: Friday, July 23, 2010 9:19 PM
 To: cf-talk cf-talk@houseoffusion.com
 Subject: Re: Adobe no longer part of the OpenCFML committee

 
  Well, is Ben not part of it too?
 
  Just saying
 
  MD
  On 23 Jul 2010, at 17:06, Cutter (ColdFusion) wrote:
 
 
  http://www.adrocknaphobia.com/post.cfm/adobe-no-longer-part-of-opencfml
 
  Steve Cutter Blades
  Adobe Community Professional - ColdFusion
  Adobe Certified Professional
  Advanced Macromedia ColdFusion MX 7 Developer
 
  Co-Author of Learning Ext JS
  http://www.packtpub.com/learning-ext-js/book
  _
  http://blog.cutterscrossing.com
 
 
 
  Dan Baughman wrote:
  Is there an official adobe announcement that it pulled out?
 
  On Thu, Jul 22, 2010 at 5:10 PM, Sean Corfield
  seancorfi...@gmail.comwrote:
 
 
  On Thu, Jul 22, 2010 at 12:20 PM, Gerald Guido 
 gerald.gu...@gmail.com
  wrote:
 
  Or support for Amazon Web services:  S3 (well before Adobe did),
 
  My bad. Before I get a public tongue lashing...  I got Railo mixed up
 
  with
 
  OBD with the S3 support.
 
  Yup, Railo introduced the concept of resources quite a long time ago
  (in Railo 2.0, back in 2007) that allows standard file tags to work
  with ram, S3, ZIP files, FTP sites and even database tables.
  --
  Sean A Corfield -- (904) 302-SEAN
  Railo Technologies, Inc. -- http://getrailo.com/
  An Architect's View -- http://corfield.org/
 
  If you're not annoying somebody, you're not really alive.
  -- Margaret Atwo
 
 
 
 
 
 
 
 
 

 

~|
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:335699
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What has happened to my Firebug?

2010-07-20 Thread Rob Parkhill

Just be careful with Chrome and the now built-in Flash player.  You need to
go into chrome://plugins and disable  Flash Player if you want access to the
debug version of Flash player.  I still prefer Firebug for the Javascript
debugging on AJAX requests.

Cheers,

Rob

On Tue, Jul 20, 2010 at 3:04 PM, Andy Matthews li...@commadelimited.comwrote:


 Chrome's developer tools are not bad, but they're nothing compared to
 Firebug. It's the only thing I ever open Firefox any more these days.


 andy

 -Original Message-
 From: Rick Faircloth [mailto:r...@whitestonemedia.com]
 Sent: Tuesday, July 20, 2010 1:27 PM
 To: cf-talk
 Subject: RE: What has happened to my Firebug?


 Oh, really?  Good to know.

 Liking Chrome these days, are we Ray? :o)

 Rick

 -Original Message-
 From: Raymond Camden [mailto:rcam...@gmail.com]
 Sent: Tuesday, July 20, 2010 1:44 PM
 To: cf-talk
 Subject: Re: What has happened to my Firebug?


 Don't forget if you switch to Chrome you've got pretty much the same
 toolset built in.

 On Tue, Jul 20, 2010 at 11:36 AM, Rick Faircloth
 r...@whitestonemedia.com wrote:
 
  Well, thanks anyway...
 
  I just uninstalled Firebug and all customizations,
  then reinstalled, and everything is back to normal.
 
  I hadn't realized just how dependent on Firebug I had become!
 
  If you don't use it, try it!
 
  Rick





 

~|
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:335559
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Using two submit buttons to control form action

2010-04-28 Thread Rob Parkhill

You will need to have a different name, and then check that value. Since
your buttons both have the same name, the value for both will be in the form
scope as you have seen.


 I always just do a regular button, and change the form action via
Javascript.

Cheers,

Rob

On Wed, Apr 28, 2010 at 8:24 PM, John Pullam jpul...@mcleansystems.comwrote:


 I have seen several examples of using multiple form buttons on a single
 form. The idea is that you can get the value of the respective form variable
 when you are posted and then take the appropriate action.

 But I'm getting odd results. Instead of getting a single value, I get both
 values every time, and the examples I've seen suggest that you should only
 get the one that was pressed.

 Can anyone tell me what I'm doing wrong or what I need to do to get a
 single value? My code for the buttons is as follows:

 input name=Choose value=Change type=submit class=EditButton /
 input name=Choose value=Full type=submit class=EditButton /

 When I CFDump it, FORM.Choose is Change,Full


 

~|
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:333216
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfmail

2010-04-19 Thread Rob Parkhill

just add a cfif around the mail

cfif qgetdetails.recordcount gt 0

cfmail.

/cfmail
/cfif

Rob

On Mon, Apr 19, 2010 at 11:52 AM, Damo Drumm
damien.dr...@quinn-group.comwrote:


 Hi
 Ive the below code and im trying to get it to check first that the
 confirmation field in the comments table is equal to 1 before it send

 at the minute its sending anyway

 any tips
 Thanks

 cfquery name=qgetdetails datasource=#test#
 Select *
 From comments
 where confirmation = 1
 /cfquery


 cfmail to=t...@123.com
bcc=t...@123,t...@123
from=m...@test.com
subject=Test

 Persons Name:#Name#
 Persons Email:#Email#
 Comments:#comments#
 /cfmail

 

~|
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:332979
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error attempting to process PDF form...

2010-01-26 Thread Rob Parkhill

I've had the tags working with forms Created with Acrobat, not just
LiveCycle, but can't say that I've tried a third party PDF Creator.

Can you read and dump the PDF form Fields?

Rob

On Tue, Jan 26, 2010 at 10:00 AM, Dave Watts dwa...@figleaf.com wrote:


  One question I had was whether or not the CF 8 PDF tags would work with
  anything not created by Acrobat or LiveCycle.

 I'm pretty sure they only work with LiveCycle forms, not other Acrobat
 forms.

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

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
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:330138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


WDDX in CF9

2010-01-22 Thread Rob Parkhill

Good Day,

Just checking to see if anyone else has experienced any issues with converting 
WDDX in CF9.

I have the following that converts a Query object to WDDX and then I insert it 
into the DB:

Cfwddx action=cfml2wddx input=#arguments.myQuery# output=local.wddxQuery 
usetimezoneinfo=true /

I then ready it from the DB and convert it back using the following:

Cfwddx action=wddx2cfml input=#local.getReport.reportData# 
output=local.myQuery

looking at the results through a CFDump, everything is fine, but if I try and 
send the Query Data to a CFReport file, it tells me that there is an invalid 
character '' in the CFR, when this is not the case (as it works with the same 
query data before being written to the DB).  I wrote the code on CF8, and it 
works fine.  

Has anyone else had a problem with the WDDX conversion?

Thanks,

Rob 

~|
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:330026
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Sending a Fax

2009-12-09 Thread Rob Parkhill

How are you making the document to send the fax?   What format is it in?

A little code might help.

Cheers,

Rob

On Wed, Dec 9, 2009 at 10:40 AM, Damo Drumm damien.dr...@quinn-group.comwrote:


 Ive a text box on a fom and when I fill it in, and enter the Fax Number The
 Info is sent to the fax machine, The Text which I entered on the form
 appears on the 1st page of the Fax then the info follows, Im trying to move
 this text about half way down the page and put a brder around it,
 How do I do this using coldfusion?
 Thanks

 

~|
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:329011
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Education

2009-10-23 Thread Rob Parkhill

I have my BA in Geography, with a Minor in Computing - course that focused
on Physics and Math, not coding :)
And I have a Post-Secondary diploma as a GIS- Cartographic Specialist -
where I got more programming experience than my Minor

Rob

On Fri, Oct 23, 2009 at 10:43 AM, Dominic Watson 
watson.domi...@googlemail.com wrote:


 1st Class Honours in Musical Theatre here...

 Of around 8-9 devs in our team over the last 18 months we had one developer
 with a comp science degree. He was worse than an appalling programmer,
 though I suspect that is not typical.

 Dominic

 2009/10/23 Phillip Vector vec...@mostdeadlygame.com

 
  Just curious..
 
  I've seen allot of jobs require lately BA/BS and not accept experience
  in it's place. What in your estimation is the percent of coldfusion
  people who have these and do you have one yourself?
 
  For me, I don't have any college experience and I would guess that
  about 5% of the coldfusion community actually have a BA/BS.
 
  Has your experience been different?
 
 

 

~|
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:327579
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Whitespace markers in CF Builder

2009-10-13 Thread Rob Parkhill

it is CTRL+. on Windows - Show Whitespace and CTRL+. removes it
HTH

Rob

On Tue, Oct 13, 2009 at 2:29 PM, David Mineer min...@gmail.com wrote:


 I pressed some key combination that added some whitespace markers.  for
 tabs (although smaller) and \r\n at the end of each line.

 Anyone know where the setting to turn this off is located?  Little
 annoying.

 Thanks,

 --
 David Mineer Jr
 -
 The critical ingredient is getting off your
 butt and doing something. It's as simple
 as that. A lot of people have ideas, but
 there are few who decide to do
 something about them now. Not
 tomorrow. Not next week. But today.
 The true entrepreneur is a doer.


 

~|
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:327143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Its Friday please dont be mad! - checkbox which corresponded with the value?

2009-09-25 Thread Rob Parkhill

You would give it an ID, that would correspond to the ID of the ValueID you
were looping on
so

cfoutput
 cfset current =
storeService.getCurrentOptions(prodID=#rc.ProdcutBean.getprodId()#,valueID=#rc.option.valueID#)
!--- cfdump var=#current#---
 tr
   td class=borderleftnbsp; input id=checker#valueID#
type=checkbox cfif current.idexists eq 1 checked=checked /cfif
//td
   tdnbsp;nbsp;nbsp;nbsp;#rc.option.value#/td
   td+ pound; input value=#NumberFormat(current.optionPrice,99.99)#
type=text name=optionPrice#valueID# size=3 / extra/td
   tdnbsp;/td
   tdnbsp;/td
 /tr
 input type=hidden value=valueId name=#rc.option.valueId# /
 /cfoutput

Then on the processing page, you need to loop over the form fields/list of
valueids and see what ones are checked

so, you can evaluate the form names dynamically with:

cfif structkeyExists(form,'checker[currentrecord]')

do whatever

/cfif

HTH

Rob

On Fri, Sep 25, 2009 at 10:24 AM, Glyn Jackson
glyn.jack...@newebia.co.ukwrote:


 Going a bit mad! I should know how to do this but my brain is not working
 today

 when the form below is submitted if the checkbox is checked I want to
 update the option on the valueId (which is a hidden field) and keep looping
 all the results only updating option have is ticked. however once submitted
 how will I know what checkbox ticked corresponded with what valueId?


 cfoutput query=rc.option group=name
  tr class=tableBG2
td class=borderleftnbsp;/td
tdb#rc.option.name#/b/td
tdnbsp;/td
tdnbsp;/td
tdnbsp;/td
  /tr

  cfoutput
  cfset current =
 storeService.getCurrentOptions(prodID=#rc.ProdcutBean.getprodId()#,valueID=#rc.option.valueID#)
 !--- cfdump var=#current#---
  tr
td class=borderleftnbsp; input type=checkbox cfif
 current.idexists eq 1 checked=checked /cfif //td
tdnbsp;nbsp;nbsp;nbsp;#rc.option.value#/td
td+ pound; input value=#NumberFormat(current.optionPrice,99.99)#
 type=text name=optionPrice size=3 / extra/td
tdnbsp;/td
tdnbsp;/td
  /tr
  input type=hidden value=valueId name=#rc.option.valueId# /
  /cfoutput


 /cfoutput

 

~|
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:326631
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Rob Parkhill

Flex SDK : http://www.adobe.com/products/flex/
http://www.adobe.com/products/flex/Rob

On Wed, Aug 12, 2009 at 10:48 AM, Phillip Vector
vec...@mostdeadlygame.comwrote:


 Any idea where I can find the free compiler?


 On Wed, Aug 12, 2009 at 7:44 AM, Will Swainw...@hothorse.com wrote:
 
  AFAIK, Flex is free, and the it's the flex builder ide that costs. You
 could
  theoretically build your flex apps in a free ide and use the free
 compiler
  to compile them. I'm sure if that's wrong someone will correct me.
 
  Will
 
  -Original Message-
  From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
  Sent: 12 August 2009 15:22
  To: cf-talk
  Subject: Re: .NET or JAVA? Which is a more natural step for a CF
 Developer
 
 
  I'm watching this convo and I'm convinced that I need to learn some
  Flex. But I went to the adobe site and saw only Flex Builder and
  it's only good for 60 days. No developer edition that I could find.
 
  Is there something I am missing? Is there a way to install flex on my
  desktop and play around with it without being limited to 60 days to
  learn it or is it a program that companies would have to buy with CF
  as well?
 
 
 
 

 

~|
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:325388
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: .NET or JAVA? Which is a more natural step for a CF Developer

2009-08-12 Thread Rob Parkhill

http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk
http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdktakes you to
the SDK download.  And yes, you have to compile through the command line.

Rob

On Wed, Aug 12, 2009 at 10:54 AM, Phillip Vector
vec...@mostdeadlygame.comwrote:


 If you can point me to where that is (or if you have the install file
 for it), it would be appricated because everywhere on the site that I
 am looking, it says that it is only for 60 days and I can't seem to
 find a developers version anywhere.

 On Wed, Aug 12, 2009 at 7:53 AM, Jake Churchillj...@cfwebtools.com
 wrote:
 
  If you are out of a job, Adobe is (or at least was) giving away flex
 builder
  for free.  It's for learning purposes only so you can't actually use it
 for
  anything work related.
 
  Jake Churchill
  CF Webtools
  11204 Davenport, Ste. 100
  Omaha, NE  68154
  http://www.cfwebtools.com
  402-408-3733 x103
  -Original Message-
  From: Will Swain [mailto:w...@hothorse.com]
  Sent: Wednesday, August 12, 2009 9:45 AM
  To: cf-talk
  Subject: RE: .NET or JAVA? Which is a more natural step for a CF
 Developer
 
 
  AFAIK, Flex is free, and the it's the flex builder ide that costs. You
 could
  theoretically build your flex apps in a free ide and use the free
 compiler
  to compile them. I'm sure if that's wrong someone will correct me.
 
  Will
 
  -Original Message-
  From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
  Sent: 12 August 2009 15:22
  To: cf-talk
  Subject: Re: .NET or JAVA? Which is a more natural step for a CF
 Developer
 
 
  I'm watching this convo and I'm convinced that I need to learn some
  Flex. But I went to the adobe site and saw only Flex Builder and
  it's only good for 60 days. No developer edition that I could find.
 
  Is there something I am missing? Is there a way to install flex on my
  desktop and play around with it without being limited to 60 days to
  learn it or is it a program that companies would have to buy with CF
  as well?
 
 
 
 
 
 

 

~|
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:325393
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Limiting the display of an image to certain times of the day with CF?

2009-06-16 Thread Rob Parkhill

Wrap it up in a CFIF or CFCASE statement.
cfset currentHour = timeformat(now(),'hh')

cfif currentHour gte '08' and currentHour lt '12'
  cfset imagetoDisplay = 'morning.png'
cfelseif currentHour gte 12 and currentHour lt 5
  cfset imagetoDisplay = 'afternoon.png'
cfelse
   cfset imagetoDisplay = 'restoftheday.png'
/cfif

img src='images/#imagetoDisplay#' border=0

That should do it.

HTH

Rob

On Tue, Jun 16, 2009 at 9:10 AM, Ian Vaughan 
i.vaug...@neath-porttalbot.gov.uk wrote:


 Hi

 In Coldfusion can you restrict the display of a certain image for only
 certain times of the day?

 For example only display the image before 8pm 12pm-2pm and after 5pm on
 the site homepage

 If so any ideas on the best way to achieve this?

 TIA


 

~|
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:323527
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: insert trouble...zero length

2009-06-16 Thread Rob Parkhill

You will have to make sure that the table you are inserting into can have a
NULL as a value, or you will need to modify your code to look at each value
and change any NULLs to either a space or a zero depending on the datatype
you are inserting.
HTH

Rob

On Tue, Jun 16, 2009 at 1:33 PM, Mark Fuqua MdProfinish 
m...@mdprofinish.com wrote:


 Having trouble with the following code.having trouble with zero length
 values.  The field in the database is empty and when it goes to insert it
 into another table, it chokes.  Is there a way to set a   value as
 default?  Or do I have to do a cfif on each value?  I'm sure I'm missing
 something simple here.





 cfquery name=transferData datasource=brooklineOld

 SELECT *

 FROM plumUser

 Where ContactType = 3 and userId = 34

 /cfquery





 cfloop query=transferData

 cfquery name=insertNew datasource=brookline

 INSERT INTO PlumUser(address1,  CellPhone, CellPhoneCarrier,
 CellPhoneEmail,
 City,

  CompanyName, ContactType, Country, DateCreated, Email, Extension, Fax,
 FirstName, HomePhone,

  LastName, OfficePhone, Password, State, Status, SubShortName, UserName,
 ZipCode)

  VALUES( '#transferData.Address1#', '#transferData.CellPhone#',

  '#transferData.CellPhoneCarrier#', '#transferData.CellPhoneEmail#',
 '#transferData.City#',

  '#transferData.CompanyName#',#transferData.ContactType#,
 '#transferData.Country#',

  #CreateODBCDate(transferData.DateCreated)#,  '#transferData.Email#',
 '#transferData.Extension#',

  '#transferData.Fax#',  '#transferData.FirstName#',
 '#transferData.HomePhone#',  '#transferData.LastName#',

  '#transferData.OfficePhone#',  '#transferData.Password#',
 '#transferData.State#',#transferData.Status#,
 '#transferData.SubShortName#',   '#transferData.UserName#',

'#transferData.ZipCode#'  )

  /cfquery

  /cfloop



 Thanks,



 Mark






 

~|
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:323532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Proper returntype of a cfc

2009-06-12 Thread Rob Parkhill

You would need to return it as a struct.  then just reference any parts of
the struct that contain the data you want.  I have one cfc that returns a
struct of arrays...
Rob

On Fri, Jun 12, 2009 at 8:25 PM, Ryan Letulle bayous...@gmail.com wrote:


 Is it a common/best practice to return multiple variables from a cfc?  Like
 if I wanted perform some processing in a cfc and return several variables.
  For the most part I have always returned either a query or 1 variable.

 If so, what would be the best return type for this?

 Does that make sense?  I'd like to do this in the most popular way.  I feel
 like I can really consolidate some code on a certain project.

 --
 Ryan LeTulle


 

~|
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:323468
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: captcha

2009-06-02 Thread Rob Parkhill

Awesome form protection

http://cfformprotect.riaforge.org/
http://cfformprotect.riaforge.org/Rob

On Tue, Jun 2, 2009 at 9:46 AM, Chad Gray cg...@careyweb.com wrote:


 Anyone have recommendations for CAPTCHA?

 I know about CFImage's captcha, but what other programming can be used to
 figure out if the submission was done by a human?

 I thought about timing the form page load and time to submission.  If it
 took a user less than 5 seconds to fill out the form then assume they are
 not human.


 

~|
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:323074
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can I not use the name variable in cfftp getFile action?

2009-05-27 Thread Rob Parkhill

Rick,
I have one that is similar however, I have it like so:

cfftp connection=lskdf action=getfile
remotefile=#currentdir#/#name# localfile=#localfile#
transfermode=binary
timeout=30 retrycount=3 stoponerror=no failifexists=no

where above the cfftp, I set the Local file to g:/DailyFile/ #name#

works no problem, as the name file and currentdir, are both coming from a
previous cfftp that lists the dir, and then loops then and the files as a
query.

HTH

Rob


On Wed, May 27, 2009 at 9:34 PM, Rick Faircloth r...@whitestonemedia.comwrote:


 Why do I get the error, the system cannot find the file specified when I
 used this line:

 localFile =
 f:\inetpub\webroot\real_estate_data\smlc\daily_downloads\zip_files\#name#

 as part of this code:

 cfftp connection   =   lskdjf
 action  =   getFile
 passive=   yes
 remoteFile   =   #name#
 localFile  =
 f:\inetpub\webroot\real_estate_data\smlc\daily_downloads\zip_files\#name#
 failIfExists=   yes
 timeout=   60
 stopOnError =   yes

 It seems, based on the documentation, that localFile ought to be a file
 that
 exists already on the local system.
 However, that doesn't make a lot of sense.  There no way to know what the
 file name will be.  And other uses
 of cfftp getFile have allowed a variable...just name the same name as the
 remoteFile.  I gave it a different name.

 Can the localFile filename not be #name# ?

 Rick


 --

 --
 Ninety percent of the politicians give the other ten percent a bad
 reputation.  Henry Kissinger


 

~|
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:322849
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adobe Livedocs throwing lock error???

2009-05-15 Thread Rob Parkhill

It has been happening off and on for a couple of weeks now, and I think that
someone even blogged about it.
Hopefully, Adobe will get the necessary steps taken to resolve the issue.

Rob

On Fri, May 15, 2009 at 3:30 PM, Phillip B philthylab...@gmail.com wrote:


 Great. I was needing some help.

 I grabbed a screen shot of it so I wont feel so bad next time one of my
 apps has an issue. :-)

 Works from here.
 
 
 Robert B. Harrison

 

~|
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:322575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: YIKES! I must let internet users write SQL queries for our database!

2009-04-23 Thread Rob Parkhill

Ian,
What about creating a Flex based tool that allows users to choose the table
they want to get the data from and then the columns for the table (that you
wanted to be able to select by) would be available.  Basically making a
'drag and drop' kinda query builder.  where the users don't type anything,
but are allowed to select what they want that is available.

That's my $.02

Rob

On Thu, Apr 23, 2009 at 10:34 AM, Ian Skinner h...@ilsweb.com wrote:


 Did I get your attention? Luckily these are read-only queries, but still!

 I have a meeting this afternoon to discuss reworking/developing an
 interface to allow anonymous, anybody in the world, users to develop add
 hock queries on a respectably large database.  This database gets about
 2.5 million transactions, and growing, a year and has been around since
 1973.  It is public data, so we need to provide public access to it.  We
 would like it to be self service public access so the public can stop
 bothering us for the data and we can spend more time on fun projects :)

 There is currently a form based interface, but it has serious
 limitations and is no longer serving its role well.  So this meeting is
 to discuss what to do about this and how much time and effort it might
 take.  I am soliciting you all for ideas I may be overlooking on
 possible solutions and|or gotcha's for something like this.  So fire
 away please.

 Thank You
 Ian






 

~|
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:321852
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BOLT!

2009-04-17 Thread Rob Parkhill

I think that there are a bunch of people in that boat, who applied and have
not been notified...
Rob

On Fri, Apr 17, 2009 at 9:15 AM, Rick Faircloth r...@whitestonemedia.comwrote:


 Hi, Jose...

 I applied for beta participation, too, but was apparently turned down.
 I also expected news from Adobe sooner than this.
 Disappointed so far...

 Rick

 On Fri, Apr 17, 2009 at 9:07 AM, Jose Diaz bleached...@gmail.com wrote:

 
  Hello All,
 
  I have applied to Adobe for the Bolt beta but not heard a peep. Has
 anybody
  had any news on when we can get to play with the new shiney toy?
 
  Jose Diaz
 
 
 

 

~|
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:321727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cffile action=write file as XML. Put spacing in lines, but resave file on mac spaces disappear

2009-04-16 Thread Rob Parkhill

Try wrapping the content in a cfprocessingdirective
suppresswhitespace=true
Rob

On Thu, Apr 16, 2009 at 12:56 PM, Ben Nadel b...@bennadel.com wrote:


 This might be a line-delimiter problem. I believe windows uses both the
 return and newline characters:

 \r\n

 Linux based machines, on the other hand, I think only use one of the
 them...\n maybe? Not sure.

 --
 Ben Nadel
 Adobe Community Expert
 Adobe Certified Advanced ColdFusion Developer
 Manager New York ColdFusion User Group
 http://www.bennadel.com

 Need ColdFusion Help?
 http://www.bennadel.com/Ask-Ben


 

~|
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:321660
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Server Monitoring

2009-04-14 Thread Rob Parkhill

Good Day,

Can't come up with a better title, so here is what I want to do.

I have two servers, one DB and one web.  My DB server is having MASSIVE issues 
at the moment. CPUs blowing up, and the server shutting down randomly, at 
night.  I would like to use the webserver (with CF8) to monitor the status of 
the DB server, and was wondering what everyone thought was the best method? I 
was thinking of checking to see if the domain server (which is controlled by 
the DB server) was in existence, although I am not sure if that is possible 
with CF.  The other thing I could test would be the connection to the database, 
but I can't seem to find the references to accessing the admin tools in CF8, 
where I thought that would be possible, so any resource direction would be much 
appreciated.

Thanks,

Rob 

~|
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:321567
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Open Source E-Commerce

2009-03-18 Thread Rob Parkhill

http://cfcommerce.riaforge.org/
Rob

On Wed, Mar 18, 2009 at 3:10 PM, Phillip Vector
vec...@mostdeadlygame.comwrote:


 There is something in RIAforge that is free that works well. I forget
 the name, but a search on Store will find it.

 2009/3/18 Jake Churchill j...@cfwebtools.com:
 
  SiteDirector from http://www.quilldesign.com
 
  http://www.quilldesign.com/sitedirector/features.cfm
 
  Jake Churchill
  CF Webtools
  11204 Davenport, Ste. 100
  Omaha, NE  68154
  http://www.cfwebtools.com
  402-408-3733 x103
 
 
 
  Sean Sekora wrote:
  Does anyone know of a good open-source or inexpensive e-commerce
 solution?
 
 
 
 

 

~|
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:320667
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Select the last n rows in oracle.

2009-03-12 Thread Rob Parkhill

Selct top N stuff from aTable orderby query_seq desc.
Rob

On Thu, Mar 12, 2009 at 9:59 AM, Ian Skinner h...@ilsweb.com wrote:


 I would like to select the last n records from a table as defined by a
 sequence field.

 I tried SELECT stuff FROM aTable WHERE rownum  n ORDER BY query_seq desc.

 But this just sorts the first n records in descending order where I want
 the last n records.



 

~|
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:320440
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfqueryparam with cfstoredprocparam

2009-03-06 Thread Rob Parkhill

No, the stored procedure will look after it.
Rob

On Fri, Mar 6, 2009 at 10:09 AM, Scott Stewart sstwebwo...@bellsouth.netwrote:


 Hey all,



 I'm calling a stored procedure using cfstoredproc.

 Within the cfstoredproc I have two procparams,

 The values are function arguments



 They currently look like this:

 cfprocparam type=in cfssqltype=cf_sql_varchar
 value=#arguments.login#
 null=no



 Do I still need to wrap the arguments.login in cfqueryparam statements?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835





 

~|
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:320163
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Implementing FCK Editor in CF8.01

2009-02-06 Thread Rob Parkhill

is the CFIDE directory mapped?  or inside your webroot for the hosting
provider?  I usually upload the CFIDE directory, and add the scriptsrc=CFIDE
location, and then you should have no problems.
HTH

Rob

On Fri, Feb 6, 2009 at 3:13 PM, Terry Troxel te...@it-werks.com wrote:


 My provider updated my server to cf801 and I have been calling FCK Editor
 from the siteroot/admin/fckeditor folder structure very successfully with
 the install from fckeditor's site.

 My question is what do I do to switch to the embedded version in stead of
 the one I downloaded?

 This is how I am trying to call the embedded editor:

 cfform
 cftextarea richtext = true name=richtext11234/cftextarea
 /cfform
 It gives me a plain textbox.


 This is how I call it with the downloaded version:

 cfmodule
 template=fckeditor/fckeditor.cfm
 basePath=fckeditor/
 instanceName=pagecontent
 value='1234'
 width=760
 height=400
 

 This works.

 Any positive help will be greatly appreciated.

 Terry



 

~|
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:319000
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simplest forum

2009-02-05 Thread Rob Parkhill

+10 Galleon forums.  Set up in less than 5 minutes.  Now to customize :)

On Thu, Feb 5, 2009 at 11:48 AM, John M Bliss bliss.j...@gmail.com wrote:


 Check out http://galleon.riaforge.org

 On Thu, Feb 5, 2009 at 10:33 AM, Don L do...@yahoo.com wrote:

 
  This question has probabaly been raised hundreds of times and yet I feel
  necessary to do so again.
 
  First, Rrequirements, simply three:
  a) interactive discussion like this forum;
  b) without authentification (username and password) but a degree of
  security,
  on the latter part, how about generating three random number and ask the
  poster to paste it in clear view (not the crappy difficult to read
  obsfucation) prior to posting?   For a heavy-duty site, probably strict
  security would be good idea but ...
  c) cf-driven
 
  Secondly, oh How, cook it up myself, should be fairly easy but time
  consideration, ~ 5 hours?  your guess?  Would HoF be willing to share its
  code for free or cheap?  Other source?
 
  Thanks.
 
  Don
  Chunshen Li
 
 
 

 

~|
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:318941
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simplest forum

2009-02-05 Thread Rob Parkhill

Don,
Galleon has a feature, where you can set just everyone to post.  Seriously,
just download the zip, and open the readme file for the installation.  It's
five pages long and explains all the security and management that you need.

Rob

On Thu, Feb 5, 2009 at 7:06 PM, Don L do...@yahoo.com wrote:


 +10 Galleon forums.  Set up in less than 5 minutes.  Now to customize :)
 
 On Thu, Feb 5, 2009 at 11:48 AM, John M Bliss bliss.j...@gmail.com
 wrote:
 
 
 John and Rob, it looks great.  My only concern is user registration, as
 Peter asked, my target audience is students (some college, some high
 school), and my guess is that this demographics is much less patient than
 the business demographics, hence, I intend to make it even simpler for them.
  Now, a question is, probably not for this forum, but you guys who know
 Galleons well would be in the know, is there a way to disable the
 registration feature to make an open forum?  Then run the risk of it being
 attacked by bad people.  Tough call.

 Many thanks.

 Don
 Chunshen Li


 

~|
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:318953
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Easy Form

2009-01-30 Thread Rob Parkhill

Steven,

Why don't you use the built in validation for a CFFORM?  It can validate Email 
etc, BEFORE submitting, that way your action page can basically send the 
comments to the webmaster and display the thank you as well.

As for blocking spammers, check out:  http://cfformprotect.riaforge.org/

Of course there are lots of ways to protect yourself from spammers.  As for 
protecting yourself from sql injection, well cfqueryparam is the way to go 
there.

HTH,

Rob

 I just cannot seem to wrap my head around creating a simple CF 
 feedback form. I've got the front-end side with the correct form 
 fields, but when it comes to the action file, I always mess it up. All 
 I want is a form that will validate that someone typed their name, a 
 valid email address and some comment. I want to be able to direct them 
 back to the form if they didn't enter their information properly, and 
 to a thank you page if they did. I'm looking for it to block spammers 
 somehow with the validation and make it so that they can't enter code 
 into any of the fields. I want their comments to be mailed to a 
 Webmaster.
 
 Can anyone help explain the entire process to me? I have books upon 
 books, but never seem to do this properly. 


~|
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:318654
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Rob Parkhill
You can try this if you are still interested in Eclipse
http://www.yoxos.com/ondemand/

it basically allows you to choose what plugins/whatever you want for
Eclipse, and then puts it all into a single package that you download and
install (1 step, pretty sure anyways)

HTH

Rob

On Mon, Jan 26, 2009 at 10:20 PM, Torrent Girl torrentg...@gmail.comwrote:

  I am having the same problem with DW
 
  I found this posting online http://kb.adobe.
  com/selfservice/viewContent.do?externalId=kb402776 followed the
  directions and it is still crashing.
 
  I have been so unproductive behind this that i decided to install
  eclipse. That became a nightmare as there is not good documentation on
  how to set it up.
 
  Does anyone know of a good free CF editor?


 P.S. I have been sitting here for 3 hours restarting DW and trying to
 install CFECLIPSE. I have resorted to downloading a trial version of
 HOMESITE (I can't believe they are still selling HS) which is SAD. I am
 praying that IT works.

 A word to all current and aspiring software developers and tutorial
 writers, bloggers, whoever

 PLEASE PLEASE PLEASE PLEASE make sure your software works properly and if
 you write a tutorial PLEASE PLEASE PLEASE PLEASE make sure your instructions
 work INCLUDING PROPER SYNTAX and PLEASE PLEASE PLEASE PLEASE write a
 detailed description of how to install, setup and use your product.

 I have wasted so much production time on Dreamweaver crashing - it's
 pathetic.

 I know I am ranting but I've had it.

 Make it work or make it free so others can make it work. And if you do make
 it free like ECLIPSE, hire a darn tech writer so people can learn how to use
 your software



 

~|
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:318583
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Serving GIS data on the cheap.

2009-01-20 Thread Rob Parkhill
We have plans to do such a thing.  We are looking at Manifold.  It comes
with a IMS built in, and it is very inexpensive (relative to 'other'
solutions).
http://www.manifold.net/

Rob

On Tue, Jan 20, 2009 at 3:33 PM, Ian Skinner h...@ilsweb.com wrote:

 Anybody out there work with serving GIS data on a website.

 We have our own, custom GIS data and we would like to serve it on our
 website.  I have looked an using the Google Map API and it can serve up
 custom data, if you can get it 'tiled'.  But I am finding that it can be
 very challenging to get data out of a GIS editor and into Google Map API
 or another other without software that costs 10's of thousands of
 dollars or more.

 Ian


 

~|
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:318240
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Serving GIS data on the cheap.

2009-01-20 Thread Rob Parkhill
Ian
Manifold comes with a 'web server' or at least a version of the program that
will serve up maps from a specified directory.  You have to put Manifold
onto a computer and then set it up with your map data.  As I read it, it
seems relatively straight forward (although I am sure that there are some
gotchas in there).

We have not yet implemented this solution. (we are in rural Ontario - high
speed is, well not reliable)  We were basically going to take one of our old
workstations and have it serve the maps and the website.  It seemed like a
good solution, except for the un-reliableness of our access, so the site
would be down when our internet was.  From reading the docs (we have a
variety of GIS systems here) it seems as though you can just serve up you
shape files, but converting them to the Manifold format made it faster?

Anyways, it was a while ago that we looked at it, but it seemed like the
best solution to us at the time.

Ping me off list if you would like anything else.

Rob

On Tue, Jan 20, 2009 at 3:57 PM, Ian Skinner h...@ilsweb.com wrote:

 Rob Parkhill wrote:
  We have plans to do such a thing.  We are looking at Manifold.  It comes
  with a IMS built in, and it is very inexpensive (relative to 'other'
  solutions).
  http://www.manifold.net/
 
  Rob

 Thanks for the link, I'm reading now and the first thing I do see is a
 price tag much more in line with our shoe string budget.

 Do you know off the top of your head if this is just an GIS editor of
 somekind or does it support exporting GIS data for web consumption
 either with existing map API's and user interfaces or it own?  I.E.  If
 it has a web deliverable feature does this require custom software on
 the server?


 

~|
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:318245
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SOT: CFUG in Southern Ontario

2009-01-07 Thread Rob Parkhill
Good afternoon,

Just looking to see if there is anyone in Southern Ontario, around the London 
ON area that are or would be interested in starting a CFUG.  

contact me off list: robert (dot) parkhill (shift 2) gmail (dot) com

Thanks

Rob 

~|
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:317552
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Personalizing a CFLoop

2009-01-05 Thread Rob Parkhill
Well I am sure that there is a more elegant REGEX solution, but you can
always do a FIND and then a LEFT
so:

cfset fisttoat = find(#recipient#, '@')

cfset firstname = left(#recipient#, #firsttoat#)

I am sure someone will post something more elegant, but that will work.

Rob


~|
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:317408
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Personalizing a CFLoop

2009-01-05 Thread Rob Parkhill
well in your original post, your list contained only email addresses.
If you are going to do a list with a pairing of information (ie Name, email,
name, email, name, email)  I would think that going with a 2d array as brad
suggested would make your life easier.  Of course if it is stored in the DB
somehow, you can always just query out what you want as well, and loop the
query.

HTH

Rob

On Mon, Jan 5, 2009 at 2:48 PM, cfcom cf...@aceligent.com wrote:

 Not sure if I have this right. Some of the recipients Names are not used in
 their email, such as ('Mark Jones', 'mana...@zzz.com') How would that
 structure work?



 cfset fisttoat = find(#recipient#, '@')

 cfset firstname = left(#recipient#, #firsttoat#)

 cfset recipients=b...@domain.com, a...@domain.com, em...@domain.com,
 j...@domain.com

cfloop list=#recipients# index=recipient delimiters=,

cfmail to=#recipient# from=#sender_email# subject=My Message
 To You 2009  

   Dear #left#,

  This is my message to the recipient.  This is my message to the
 recipient.

  Yours truly,

  #sender_firstname# #sender_lastname#
 /cfmail
 /cfloop

 -Original Message-
 From: Rob Parkhill [mailto:robert.parkh...@gmail.com]
 Sent: 2009-01-05 2:08 PM
 To: cf-talk
 Subject: Re: Personalizing a CFLoop

 Well I am sure that there is a more elegant REGEX solution, but you can
 always do a FIND and then a LEFT
 so:

 cfset fisttoat = find(#recipient#, '@')

 cfset firstname = left(#recipient#, #firsttoat#)

 I am sure someone will post something more elegant, but that will work.

 Rob




 

~|
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:317414
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Personalizing a CFLoop - validation error

2009-01-05 Thread Rob Parkhill
I know this will sound odd, but put them on separate lines... so this:
 cfmail to=#GetRecipients.recip_email#  from=#form.sender_email#
subject=My Message To You 2009  

becomes this:

 cfmail to=#GetRecipients.recip_email#
 from=#form.sender_email#
 subject=My Message To You 2009  

I have always found that with CFMAIL, it likes it better when the arguments
are on different lines.

HTH

Rob


~|
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:317421
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simply Amin Panel

2008-12-18 Thread Rob Parkhill
well the alert will never equal the form.alert unless they are updating with
the same text.  Perhaps remove the where clause and change your if statement
so perhaps:

cfquery datasource=text
UPDATE alert
cfif isdefined(form.alert) and form.alert neq 

SET alert = '#form.alert#'
cfelse
set alert = NULL
/cfif
/cfquery


HTH

Rob
On Thu, Dec 18, 2008 at 3:04 PM, Steve LaBadie slaba...@po-box.esu.eduwrote:

 Is this correct? I am not getting any errors, but the updated text is
 not showing on the page.

 cfquery datasource=text
 UPDATE alert
 SET alert = 'cfif IsDefined(FORM.alert) AND #FORM.alert# NEQ '
 WHERE alert = '#FORM.alert#';
 cfelse
 NULL
 /cfif
 /cfquery
 cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.
 /cfif

 Steve LaBadie, Web Manager
 East Stroudsburg University
 200 Prospect St.
 East Stroudsburg, Pa 18301
 570-422-3999
 http://www.esu.edu
 slaba...@po-box.esu.edu
 -Original Message-
 From: Ravi Gehlot [mailto:r...@ravigehlot.net]
 Sent: Thursday, December 18, 2008 1:59 PM
 To: cf-talk
 Subject: Re: Simply Amin Panel

 Hello Steve,

You want to update and not insert if you want to replace the text.

 Good Luck,
 Ravi Gehlot.

 

~|
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:316923
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is it not possible to skip js with cfif?

2008-12-16 Thread Rob Parkhill
Rick,
You will need to put the JS in a CFinclude file

cfif not isDefined(session.manager_id)
   cfinclude file=loginscript.cfm
/cfif

Rob

On Tue, Dec 16, 2008 at 10:59 PM, Rick Faircloth
r...@whitestonemedia.comwrote:

 True, true...

 However, I'm trying to run this:

 cfif not isDefined(session.manager_id)

run ajax login code

 /cfif

 But it seems that the condition cfif is being ignored.
 I know session.manager_id is defined because I output
 the variable on the login form itself if it's defined.

 ???



  -Original Message-
  From: Charlie Griefer [mailto:charlie.grie...@gmail.com]
  Sent: Tuesday, December 16, 2008 10:55 PM
  To: cf-talk
  Subject: Re: Is it not possible to skip js with cfif?
 
  it is.
  (it's also good to use the right comparison operator)
 
  On Tue, Dec 16, 2008 at 7:50 PM, Rick Faircloth 
 r...@whitestonemedia.comwrote:
 
   Is it not possible to use conditional statements
   to skip javascript?
  
   cfif 1=0
  
  javascript code
  
   /cfif
  
   Rick
  
  
  
 
 

 

~|
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:316845
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Source Control Method

2008-12-11 Thread Rob Parkhill
I use tortise SVN, and find it quite simple and straight forward.
http://tortoisesvn.tigris.org/

Rob

On Thu, Dec 11, 2008 at 11:53 AM, John M Bliss [EMAIL PROTECTED] wrote:

 I like http://www.visualsvn.com/server/

 On Thu, Dec 11, 2008 at 10:48 AM, Torrent Girl [EMAIL PROTECTED]
 wrote:

  Hello All
 
  I need to set up a source control solution and am not familiar with doing
  this.
 
  Doesn't Dreamweaver allow you to manage code?
 
  Also can someone suggest a free, easy to implement solution?
 
  Thanks
 
 
 

 

~|
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:316617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dreamweaver Locking

2008-12-11 Thread Rob Parkhill
well Tortise SVN has a lock and release lock function, however, being the
only one developing here, I just use it for Version Control.  However you
could look into it, I am sure that there are docs on it.
HTH

Rob

On Thu, Dec 11, 2008 at 12:51 PM, Casey Dougall 
[EMAIL PROTECTED] wrote:

 On Thu, Dec 11, 2008 at 12:46 PM, Phillip M. Vector 
 [EMAIL PROTECTED] wrote:

 
  What I'm asking is.. Does anyone know of any program that allows me to
  check in and out files on the server, but not actually use dreamweaver.
 
 
 I don't personally know of anyway to do that except to use Dreamweaver.


 

~|
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:316624
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rob Parkhill
I like the built in tag reference, so if I am trying to do something that I
haven't done in a while (or perhaps never) there is the built in tag
reference, which gives usage examples.  And since I got the CS4 demo
installed and working, my RDS is actually RDSing which I had not been able
to get to work before, and I am finding that I am referencing that quite a
bit now too... course now I have to convince someone to pay for the
upgrade
Rob

On Thu, Dec 11, 2008 at 2:39 PM, s. isaac dealey i...@turnkey.to wrote:

  As another few people have stated, a sweet timesaver is the
  smart-close tag feature.

 Oh yeah, I forget about that one... it's become second nature, so I take
 it for granted. But I'm sure I would notice if I started using another
 editor again. :) I use the insight some too, although possibly not as
 much as other folks do. I type pretty fast and I can remember a few
 years ago when I first saw code insight in an IDE thinking I should
 take advantage of that but then there were lots of times that by the
 time I realized that I had an insight menu, I'd basically already filled
 in the text. That's also partly memory -- for tags I use less often it's
 more helpful, because I actually pause after entering the tag name or
 the attribute name to see what it suggests. Tags I use often I don't
 typically pause, because I'm not really thinking about typing, I'm just
 thinking about the tag I want there and then BAM it's there. That's what
 happens when something becomes habituated/automaticized.


 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
 ph: 781.769.0723

 http://onTap.riaforge.org/blog



 

~|
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:316644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Is Dreamweaver CS4 taking off as an IDE?

2008-12-11 Thread Rob Parkhill
yes

On Thu, Dec 11, 2008 at 4:57 PM, Rick Faircloth r...@whitestonemedia.comwrote:

 My current TortoiseSVN version is 1.4.5... is that compatible with DW?

  -Original Message-
  From: s. isaac dealey [mailto:i...@turnkey.to]
  Sent: Thursday, December 11, 2008 4:18 PM
  To: cf-talk
  Subject: Re: Is Dreamweaver CS4 taking off as an IDE?
 
   So, is it just TortoiseSVN that's not working with DW CS4?
 
  I posted a longer answer to this a minute ago, but the thumbnail
  synopsuis is that DW's SVN support is not current and that support for
  the current format is not backward compatible. So it's not just a
  TortoiseSVN+Dreamweaver thing, it's just a Dreamweaver thing... but
  whether or not it works may depend on your needs. If you aren't
  already using or don't have any need to use a separate and current
  client, then you may never even run into the problem I have.
 
  --
  s. isaac dealey  ^  new epoch
   isn't it time for a change?
   ph: 781.769.0723



 

~|
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:316668
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT - Shrinking a .pst file (without losing any emails)

2008-12-10 Thread Rob Parkhill
Same goes for any user using Outlook Express, and want to migrate to
Outlook.  If the file is large (as Express does not have separate pst files)
Outlook has a real issue when you try and use it... (I just went through
this...)
Rob

On Wed, Dec 10, 2008 at 6:17 AM, Adrian Lynch [EMAIL PROTECTED]wrote:

 No, once the file topped 2GB and I closed Outlook it corrupted the file and
 that was that. Outlook won't then open it.

 I tried various tools including MS's own one for truncating the file but
 had
 no luck.

 I also tried a demo of Disk Doctors Outlook Mail Recovery which ran for 10
 hours (I kid you not) and then crashed! The good(ish) news was that it was
 reading the email so I live in hope that they get back to me with a
 solution
 to the problem.

 If anyone is using Outlook 2000 (I've since upgraded to 2007) check out
 your
 ..pst file and if it's close to 2 GB, start Googling for ways to shrink
 that
 bad boy!

 Adrian

  -Original Message-
  From: Rob Parkhill [mailto:[EMAIL PROTECTED]
  Sent: 27 November 2008 18:05
  To: cf-talk
  Subject: Re: OT - Shrinking a .pst file (without losing any emails)
 
  Adrian,
  can you open it with Outlook, and then run the Auto-Archive function.
  That
  should move older sent items etc. into a different pst folder for
  archived
  items.
 
  HTH
 
  Rob
 
  On Thu, Nov 27, 2008 at 6:39 AM, adrian lynch
  [EMAIL PROTECTED]wrote:
 
   Sorry for the OT, just need to see if anyone has had any experience
  of a
   .pst file in Outlook 2000 going over 2GB and ways to shrink it.
  
   I'm told the deleted items folder contains a load of things that
  could be
   deleted so I'm looking for a way to navigate the .pst file to pick
  and
   choose which things to delete to get it down in size.
  
   We've tried SCANPST.EXE but that isn't designed to solve this
  problem. MS
   also supply a tool to truncate the file but you have no control over
  what's
   removed and we'd like all data to be recovered.
  
   Cheers all.
  
   Adrian
  
  
 
 

 

~|
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:316549
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion IIS on different servers

2008-12-09 Thread Rob Parkhill
http://www.houseoffusion.com/groups/cf-server/thread.cfm/threadid:1539#6429
from the archives of this list

On Tue, Dec 9, 2008 at 2:46 PM, Paul Kukiel [EMAIL PROTECTED] wrote:

 Suggest a reverse proxy to face the net and the IIS/CF box behind it?

 I didn't think it was possible to separate IIS and CF and have it work I
 could be wrong though.

 Paul.

 -Original Message-
 From: Andrew Clarke [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, 9 December 2008 2:33 PM
 To: cf-talk
 Subject: ColdFusion  IIS on different servers

 I have a client who insists on separating the web server from the
 application server, putting them on different physical servers.  This is
 because they say it's more secure as the app server has no access to/from
 the internet.  Their current servers are set up this way but I can't figure
 out how they have iIS and ColdFusion set up with IIS on one server and
 ColdFusion on the other.

 Are there any actual security advantages to doing this?  I'm not sure if
 they are just following general best practices that aren't applicable in
 this instance or if they know something about ColdFusion security that I
 don't know.

 Also, I can't find any information on how to install IIS on one computer
 but
 have ColdFusion on another.  If anybody can quickly explain that to me or
 point me to an article on how to do that I'd really appreciate it.

 Thanks,
 - Andrew.



 

~|
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:316502
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Use Wordpress or BlogCFC?

2008-12-05 Thread Rob Parkhill
I set up blog CFC for a development blog for a project that I am working on.
 I think it took me about 10 minutes MAX to have it up and running on a
MSSQL 2005 server and CF8.  Heck I even took some time and changed some of
the colors in the CSS...
On Fri, Dec 5, 2008 at 4:15 PM, Matt Quackenbush [EMAIL PROTECTED]wrote:

 Use mangoblog.  :)


 

~|
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:316355
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Use Wordpress or BlogCFC?

2008-12-05 Thread Rob Parkhill
well, hasn't everyone always wanted a bounty on their heads?
I also set up CanvasWiki on the same day and DB, and although it also seemed
daunting it was a pretty quick up too.  The only thing I haven't done is
change the security stuff, but that is a ways away from being required as I
will be filling out 90-95% of the wiki first BEFORE other users have the
chance or need.

Rob

On Fri, Dec 5, 2008 at 4:44 PM, Dan Vega [EMAIL PROTECTED] wrote:

 I have been using BlogCFC forever and have no reason to change. Plus if you
 do decide to use other software Ray will personally hunt you down, you
 don't
 want that now do you? We have some exciting changes coming in 6 so stay
 tuned for those.

 Thank You
 Dan Vega
 [EMAIL PROTECTED]
 http://www.danvega.org


 On Fri, Dec 5, 2008 at 4:29 PM, Rob Parkhill [EMAIL PROTECTED]
 wrote:

  I set up blog CFC for a development blog for a project that I am working
  on.
   I think it took me about 10 minutes MAX to have it up and running on a
  MSSQL 2005 server and CF8.  Heck I even took some time and changed some
 of
  the colors in the CSS...
  On Fri, Dec 5, 2008 at 4:15 PM, Matt Quackenbush [EMAIL PROTECTED]
  wrote:
 
   Use mangoblog.  :)
  
  
  
 
 

 

~|
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:316359
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


(ot) Canon Developer?

2008-11-27 Thread Rob Parkhill
Good Morning,

Does anyone know a Canon Developer with access to their SDKs?  According to 
Canons Developers website, the SDKs are written in C++ 6.  and I just want to 
confirm, as then I won't be able to access them from CF right?

Thanks,

Rob 

~|
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:316014
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Canon Developer?

2008-11-27 Thread Rob Parkhill
could I write a .NET class that referenced the C++ and then access the .NET
directly in CF?
All I want to do is access their methods for sending faxes to the damn
machine, so that i can do it directly.  $500 developers fee IF they think my
cause is worthy enough just to see the code... kinda want to make sure
it is worth it :)

Rob

On Thu, Nov 27, 2008 at 10:53 AM, JediHomer [EMAIL PROTECTED] wrote:

 You could possibly wrap all the functionality into a C++6 CFX DLL then
 access it as a CFX Custom tag?

 2008/11/27 Rob Parkhill [EMAIL PROTECTED]:
  Good Morning,
 
  Does anyone know a Canon Developer with access to their SDKs?  According
 to Canons Developers website, the SDKs are written in C++ 6.  and I just
 want to confirm, as then I won't be able to access them from CF right?
 
  Thanks,
 
  Rob
 
 

 

~|
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:316017
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT - Shrinking a .pst file (without losing any emails)

2008-11-27 Thread Rob Parkhill
Adrian,
can you open it with Outlook, and then run the Auto-Archive function.  That
should move older sent items etc. into a different pst folder for archived
items.

HTH

Rob

On Thu, Nov 27, 2008 at 6:39 AM, adrian lynch [EMAIL PROTECTED]wrote:

 Sorry for the OT, just need to see if anyone has had any experience of a
 .pst file in Outlook 2000 going over 2GB and ways to shrink it.

 I'm told the deleted items folder contains a load of things that could be
 deleted so I'm looking for a way to navigate the .pst file to pick and
 choose which things to delete to get it down in size.

 We've tried SCANPST.EXE but that isn't designed to solve this problem. MS
 also supply a tool to truncate the file but you have no control over what's
 removed and we'd like all data to be recovered.

 Cheers all.

 Adrian

 

~|
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:316018
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Read an uploaded file.

2008-11-25 Thread Rob Parkhill
But I thought that in the upload process the CF Server made a temp copy of
the file.  Can you use that to read the data from?  I know that I have to
explicitly tell the form results page that I want to put the uploaded file
in a specific place with a specific name when I upload files.  I thought if
you looked at the form field with the filename you would have access to the
temp file.
Now, I am not sure what CF does with the temp file when you are done, but
you could just set up a scheduled task to clear those out.

Rob

On Tue, Nov 25, 2008 at 12:40 PM, Ian Skinner [EMAIL PROTECTED] wrote:

 Here is a new one for me.

  I'm in the middle of creating a simple tool that is going to take a
 data file and display a grid of the data for users to review.  So I have
 a basic form for the user to select a local data file they would like to
 review.  What occurred to me is I have no need to store this file on the
 server.  There is no purpose for it.  I am just going to take the data
 from the file, parse it into a grid and display it.

 My question is, is there a simple way to just read the data from the
 http request?  Looking at the cffile action=upload... tag I have
 used for years, it is geared to saving the uploaded file to the server.
 But I don't need this.  It would require me to write the file to the
 server, read the file to get its content, and then delete the file as I
 do not want it hanging around the server.  It could be simpler if I
 could just get the data from the request and use it from there.




 

~|
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:315896
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Where are dreamweaver's snippets held?

2008-11-22 Thread Rob Parkhill
my custom CS4 snippets are in:
c:\Documents and Settings\User\Application Data\Adobe\Dreamweaver
CS4\en_us\configuration\snippets\

I would guess that CS3 put them somewhere similar

you could do a search for .csn  files

HTH

Rob

On Sat, Nov 22, 2008 at 10:32 PM, Mike Kear [EMAIL PROTECTED] wrote:

 I've finally downloaded the new Dreamweaver CS4 and I like it!

 I'm wanting to copy my snippets across from the previous version, and
 i was just going to copy the folder across from the previous version.
  But as far as i can see, the snippets in \Adobe Dreamweaver
 CS3\configuration\Snippets  are just the ones that install out of the
 box.   Where will I find all the snippets that I've configured?  (It's
 a default installation as far as locations are concerned).

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

 

~|
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:315807
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT (slightly): Question re: Contracting Rate for Medium-sized Contract

2008-11-20 Thread Rob Parkhill
As well as the cost of the other things that you might need... computer,
software etc, as well as the cost of a room in your house, phone, fax etc
etc etc... Business Name registration or incorporation or whatever as well
All those things that come with having your own business,   I have dabbled
independently for a while, and my wife still has her business..  Course I
can't speak to taxes etc, as our taxes are different than yours :)

Rob

On Thu, Nov 20, 2008 at 11:14 AM, Wil Genovese [EMAIL PROTECTED] wrote:

  (I'm sure it's also good advise to contact a good tax
 acct., in addition to lawyer when considering move to self employment.)

 Yes it is, but then don't forget to subtract their fees from your expected
 income as well.

 Wil Genovese



 On Thu, Nov 20, 2008 at 10:05 AM, Dakota Burns [EMAIL PROTECTED]
 wrote:

  Thanks for feedback Jason.  I forgot about the expected double FICA tax,
  which essentially drops $100k income as self employed down to $92k, plus
  other standard taxes.  (I'm sure it's also good advise to contact a good
  tax
  acct., in addition to lawyer when considering move to self employment.)
 
  ~ Dakota
 
  On Wed, Nov 19, 2008 at 6:35 PM, Jason Fisher [EMAIL PROTECTED] wrote:
 
   I'm sure that others will be able to provide more specific responses,
 but
   my primary advice to friends and family who contemplate a move to solo
 /
   consulting as primary income is to remember the impact of covering all
  your
   own FICA taxes (Social Security and Medicare) and your own health
  insurance,
   which can be quite rough.  FICA alone will run you an additional 7.65%
 on
   top of your current marginal tax rate.
  
  
 
 

 

~|
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:315692
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Faxing with CF

2008-11-19 Thread Rob Parkhill
Okay,
I have  a Canon printer/fax on the network, that we use.  It has a static
IP, etc.  Is there a way to send the required information here?  I don't
really want to use the server to send faxes through the modem.  Maybe I will
have to talk to Canon and see if they have a COM object or something that I
can interact with through CF.

Thanks,

Rob

On Wed, Nov 19, 2008 at 5:39 AM, Tom Chiverton [EMAIL PROTECTED]
 wrote:

 On Tuesday 18 Nov 2008, Alan Rother wrote:
  Not the answer you are looking for I am sure...
  The most common ways people accomplish this task are:
  There are many vendors who produce hardware that is capable of being
  accessed over the network through various protocols that CF can access to

 You can build your own email to fax gateway using an analogue modem and the
 free hylafax project:http://www.hylafax.org/content/Main_Page

 --
 Tom Chiverton
 Helping to revolutionarily consolidate one-to-one distributed back-end
 fourth-generation segments



 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office. Any
 reference to a partner in relation to Halliwells LLP means a member of
 Halliwells LLP.  Regulated by The Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.com.

 

~|
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:315536
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Faxing with CF

2008-11-18 Thread Rob Parkhill
Good Day all,

I know that this was talked about some time ago, but I was hoping that there 
might be some new information about this topic.  I really want to be able to 
send a fax through CF, and not have to write something else to do it.  I have 
tried using the CFPRINT tag, but it does not have any way to accept any fax 
numbers.  Are there any suggestions?  I will look at other solutions, but no I 
don't want a pay for use service.  We have a lovely fax machine at the office, 
and I would like to just leverage that...

Thanks in advance.

Rob 

~|
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:315434
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: (Probably) Simple SQL Question?

2008-11-18 Thread Rob Parkhill
select top 2 * from tables order by date asc
should get you there.

Rob

On Tue, Nov 18, 2008 at 5:00 PM, Sung Woo [EMAIL PROTECTED] wrote:

 There's probably a really simple answer to this.  Here's the sample
 dataset:

 id  namedate_duedate_modified
 1   Woo 1/1/200911/18/2008 4:55PM
 1   Woo 2/1/200911/18/2008 4:57PM
 1   Woo 3/1/200911/18/2008 4:59PM
 2   Smith   1/1/200911/18/2008 5:02PM
 2   Smith   2/1/200911/18/2008 5:03PM
 2   Smith   3/1/200911/18/2008 5:04PM

 What SQL can I run to return the two latest records for each user?

 id  namedate_duedate_modified
 1   Woo 3/1/200911/18/2008 4:59PM
 2   Smith   3/1/200911/18/2008 5:04PM

 SELECT id, name, date_due, date_modified
 WHERE ?

 

~|
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:315475
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdumperror: unexpected constant #1 83

2008-11-11 Thread Rob Parkhill
shouldn't you wrap your cfdump var with #'s as follows?
cfdump var=#glDataArray#

unless it is in a cfoutput?

Just thinking that might be the issue?

Rob

On Tue, Nov 11, 2008 at 10:53 AM, Marco de l'Isle [EMAIL PROTECTED]
 wrote:

 Since yesterday suddenly all CFDUMPs return the following error structure.

 Error Occurred While Processing Requestunexpected constant #1 83
 Nothing was changed in the admin section.

 Any ideas on how to solve this issue, use this for all debugging ;-)

 Detailed error msg below.


 Error Occurred While Processing Request
 unexpected constant #1 83

 The error occurred in C:\ColdFusion8\wwwroot\abcf\ATM
 Reconciliation\fileUpload.cfm: line 406

 404 :
 405 : !--- matched data with details ---
 406 : cfdump var=glDataArray
 407 : !--- _ ---
 408 :

 Resources:

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

 Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3)
 Gecko/2008092417 Firefox/3.0.3
 Remote Address  127.0.0.1
 Referrer
 http://localhost:8501/abcf/ATM%20Reconciliation/fileUpload.cfm?CFID=7702CFTOKEN=53085212
 Date/Timehttp://localhost:8501/abcf/ATM%20Reconciliation/fileUpload.cfm?CFID=7702CFTOKEN=53085212Date/Time
   11-Nov-08 11:50 AM
 Stack Trace
 at cffileUpload2ecfm2077094297._factor11(C:\ColdFusion8\wwwroot\abcf\ATM
 Reconciliation\fileUpload.cfm:406) at
 cffileUpload2ecfm2077094297.runPage(C:\ColdFusion8\wwwroot\abcf\ATM
 Reconciliation\fileUpload.cfm:1)

 java.lang.IllegalStateException: unexpected constant #1 83
at coldfusion.compiler.ClassReader.readCpool(ClassReader.java:155)
at
 coldfusion.compiler.ClassReader.findEndOfClass(ClassReader.java:224)
at
 coldfusion.compiler.NeoTranslator.parseClasses(NeoTranslator.java:401)
at
 coldfusion.compiler.NeoTranslator.translateJava(NeoTranslator.java:278)
at
 coldfusion.compiler.NeoTranslator.translateJava(NeoTranslator.java:119)
at
 coldfusion.runtime.TemplateClassLoader$1.fetch(TemplateClassLoader.java:310)
at coldfusion.util.LruCache.get(LruCache.java:180)
at
 coldfusion.runtime.TemplateClassLoader$TemplateCache.fetchSerial(TemplateClassLoader.java:254)
at coldfusion.util.AbstractCache.fetch(AbstractCache.java:58)
at coldfusion.util.SoftCache.get(SoftCache.java:81)
at
 coldfusion.runtime.TemplateClassLoader.findClass(TemplateClassLoader.java:476)
at
 coldfusion.runtime.TemplateClassLoader.newInstance(TemplateClassLoader.java:432)
at
 coldfusion.tagext.lang.IncludeTag.setTemplate(IncludeTag.java:156)
at coldfusion.tagext.lang.ModuleTag.setTemplate(ModuleTag.java:572)
at
 coldfusion.tagext.lang.ModuleTag.setTemplatePath(ModuleTag.java:187)
at coldfusion.tagext.lang.ImportedTag.setName(ImportedTag.java:66)
at
 cffileUpload2ecfm2077094297._factor11(C:\ColdFusion8\wwwroot\abcf\ATM
 Reconciliation\fileUpload.cfm:406)
at
 cffileUpload2ecfm2077094297.runPage(C:\ColdFusion8\wwwroot\abcf\ATM
 Reconciliation\fileUpload.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
at
 coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
at
 coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
at
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
 coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:175)
at
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at
 coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at
 coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
at
 jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
 jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
at
 

Re: Coldfusion +Ajax, best route?

2008-11-11 Thread Rob Parkhill
Confirmed:  From Adobe website re: Dreamweaver
Write JavaScript more efficiently with improved support for JavaScript core
objects and primitive data types. Put the extended coding functionality of
Dreamweaver CS4 to work by incorporating popular JavaScript frameworks,
including jQuery, Prototype, and Spry.

Rob

On Tue, Nov 11, 2008 at 9:26 AM, Andy Matthews [EMAIL PROTECTED]wrote:

 I've read that jQuery is also included in Dreamweaver CS4. Can anyone
 confirm this?


 andy

 -Original Message-
 From: Gerald Guido [mailto:[EMAIL PROTECTED]
 Sent: Monday, November 10, 2008 7:27 PM
 To: cf-talk
 Subject: Re: Coldfusion +Ajax, best route?

 +1 to what Charlie said.

 As far as lessening the learning curve, definitely use one of the JS
 libraries. jQuery is great. I have been using Spry the last week or so and
 I
 really like it a *lot*. It is really easy to use and is rolled into DW CS3
 and CS4, as well as Aptana. I have been able to do some really cool stuff
 with very little code with both Spry and jQuery.

 ~G~


 On Mon, Nov 10, 2008 at 7:58 PM, Charlie Griefer
 [EMAIL PROTECTED]wrote:

  On Mon, Nov 10, 2008 at 4:51 PM, Don [EMAIL PROTECTED] wrote:
 
   Should I look into the built-in Ajax stuff with cf8 or go with a
   third party like JQuery?
  
 
  If you're comfortable with JavaScript, I'd recommend the jQuery method.
 
  The CF AJAX stuff shields you from having to write JS... which I guess
  is a good thing if you don't know it and don't have a desire to learn
  it.  But there are some drawbacks:
 
  1) uses an older version of Ext.  If you want something more
  up-to-date, you'll have to roll your own anyway.
  2) imports a LOT of script tags.  i've herad that there are some
  tweaks to reduce the number of included scripts... but out of the box,
  there's an awful lot of .js being imported for something as simple as a
 tool tip.
 
  using jQuery (or any of the other external libraries) really gives you
  full control.
 
 
  --
  I have failed as much as I have succeeded. But I love my life. I love
  my wife. And I wish you my kind of success.
 
 
 



 

~|
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:315086
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


(ot) Code Evaluation Criteria

2008-11-10 Thread Rob Parkhill
Good Day,

I know that this is a subjective type of question, but I was hoping for a 
little insight.  My company decided about 2 years ago to redesign the internal 
windows-based program that is used to track orders and billing etc.  Now the 
program has a huge number of features and checks that need to be run, almost 
constantly.  I did not feel (at the time) that I had the knowledge/skill set to 
re-write said program (mostly cause I am a GIS person that also does web dev), 
so we contracted the design/development out.  Now two years have passed, and I 
hear nothing but heartache at work as the current system is becoming more 
unstable, and the new system (according to the developers) is still at least 6 
months away.  They suggested some time ago to go with a web-interface for some 
parts of the programming, which I thought was a great idea (and even suggested 
CF, but they thought I was mad, and wanted to do ASPX, although now I have come 
to find out it is mostly in java)

Anyways, the General Manager has had enough of the contracted developers, and 
so last week, I got a ton of code written in C#/VB for .NET.  However, the 
coding doesn't all work, although *some* parts do... I have been asked to 
evaluate what they have done, to assess whether it is worth the money that we 
have paid or not.

What types of criteria is useful for this type of exercise?  I mean, without a 
fully working system, obviously it is hard to evaluate, but looking at code 
structure/comments isn't overly revealing either (except the comment that 
referenced that they were being lazy at some point in the coding).  Is it 
possible to put a monetary value on a system that doesn't work?  By programmers 
who seem incapable of finishing it?  I mean I do have a DB that has been 
redesigned, although the more I look at it, it seems over normalized

Any thoughts/comments/suggestions are welcome!

Thanks and sorry for the long-ish post.

Rob 

~|
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:315031
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: (ot) Code Evaluation Criteria

2008-11-10 Thread Rob Parkhill
Dave,
The initial contract set out that we would have code updates on a monthly
basis, so the progress could be reviewed etc.  The intent was that we would
be provided with a complete system that functioned as the old system did,
but with some new features and not in C++ 6.  It was a contract, and there
were a ton of milestone deadlines, none of which were met, ever.  We kept
moving things and obviously kept developing, trying to get a functioning
beta out, or well anything.  Don't get me wrong, I did see functioning work,
just not by the appointed deadlines.

Well, I can see using some of the .NET stuff I guess.  I mean it is already
written right?  I can access the library from CF8 (which I do have) and the
couple of functions that are written seem to work, but I have not been able
to put it under a huge load yet.  I have already started planning an
interface through CF using ColdExt to replicate the web-side that we were
initially shown (course I got mine together way faster)

Part of my problem, with not having a beta that works properly, is that I
cannot evaluate the programs speed across my network, which I know sounds
like it wouldn't really matter, but if something takes 7 seconds to
complete, rather than 2, then after having staff do that something 100 times
a day, their productivity goes WAY down just for having to wait for
something to complete.

And I know that the monetary evaluation is subjective, but I am trying to do
some due diligence before hand.

Thanks!

Rob

On Mon, Nov 10, 2008 at 12:16 PM, Dave Watts [EMAIL PROTECTED] wrote:

  Is it possible to put a monetary value on a system that doesn't work?  By
 programmers who seem incapable of finishing it?

 Yes, it is, but only if you paid for code (as opposed to a functioning
 application). Were the developers paid on a time and materials basis?
 Were there development milestones? Were these milestones met? Most of
 these questions aren't technical, obviously.

 Does the code actually have any value in the sense that you'd use it
 to finish the application yourself? Or would your manager hire other
 ..NET developers to do so?

 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!

 

~|
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:315034
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Radio Button settings

2008-11-10 Thread Rob Parkhill
as follows
input type=radio id=apple name=Fruit value=Applecfif databasevalue
eq apple checked=checked /cfif /

and then add the rest for the other buttons.
Rob

On Mon, Nov 10, 2008 at 2:31 PM, Me Gupta [EMAIL PROTECTED] wrote:

 HI,
 I guess this is a rather basic question, but I am really having a hard time
 finding a solution.

 I have a group of radio buttons. Data from the db should determine which
 button is checked. How do I set this?

 It is like this - the code for intitial display of the page is like-

 input type=radio id=apple name=Fruit value=Apple
 checked=checked/
 input type=radio id=mango name=Fruit value=Mango 
 input type=radio id=orange name=Fruit value=Orange

 Depending on data I retrieve, I may want to change the button selection to
 Orange. How do I do this?

 Thanks a lot
 DG


 

~|
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:315050
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Passing URL variables to cfwindow?

2008-11-06 Thread Rob Parkhill
Cool Pete,  I think that I will just have to borrow that
Rob

On Thu, Nov 6, 2008 at 5:17 PM, Pete Ruckelshaus [EMAIL PROTECTED]wrote:

 OK, figured out a solution:

 a
 href=javascript:ColdFusion.Window.show('mywin');ColdFusion.navigate('test2.cfm?a=1','mywin');Show/a
 cfwindow source=test2.cfm width=350 height=350 name=mywin
 initshow=false modal=true title=Edit center=true /

 Basically, create the window, then navigate to the desired URL.

 On Thu, Nov 6, 2008 at 4:33 PM, Pete Ruckelshaus [EMAIL PROTECTED]
 wrote:
  Won't that create an excessive number of instances of cfwindow?  I was
  trying to be efficient by creating a single instance and then passing
  the variable to it.
 
  Pete
 

 

~|
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:314923
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: EOF error message in email.log

2008-11-05 Thread Rob Parkhill
Nick,

I usually just loop over the single e-mail address, and do not send a
single e-mail to like 200 recipients at one time.  I usually will
customize the e-mail body, rather than using a BCC.  Taking this
approach would probably save you on both accounts of a possible time
out, and any bad e-mails, as they would be identified.  The load on
the mail server would increase, but I think the results would be
easier to manage.  Of course that is just my 2 cents.

Is there anyway that you could check the e-mails to see that they are
all properly formed? Or  perhaps there is an unusual character in one
of them?

Or you could set a limit of lets say 100 emails in the bcc and just
divide the list up and try sending it that way?  I think that limiting
the # of e-mail addresses will help with any potential time-out
issues.

Rob

On 11/5/08, Nick Gleason [EMAIL PROTECTED] wrote:
 Rob,

 Thanks for your response.  To answer your question, this is part of a
 member search feature on a web site where you can search a directory for a
 list of contacts with a certain criteria (e.g. members in chicago).  Then,
 you can email a message to the list.  It's an old feature and was created by
 adding the full list of emails into the bcc line.  It could add them into
 the to line I suppose, but I imagine that would still have the same
 problem.

 So, are you saying that a single (or multiple) bad email addresses in a list
 on the bcc (or to) line of the email could lead to it being rejected by the
 mail server?

 We can go into the undelivr folder and manualy drag it back into the spool
 folder.  After trying this several times, the email finally sends?  Does
 that suggest that it might be more of a timeout issue?

 N

 -Original Message-
 From: Rob Parkhill [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, November 04, 2008 9:29 PM
 To: cf-talk
 Subject: Re: EOF error message in email.log

 I would guess that it is a bad e-mail causing the problem.
 Why are you BCC-ing a bunch of e-mails?  Why not just send
 direct?  Of course looking at the e-mails may lead you to the
 problem, or see what is in the undeliverable folder.
 Rob

 On Tue, Nov 4, 2008 at 7:56 PM, Nick Gleason
 [EMAIL PROTECTED] wrote:

  Hey there - another cfmail related question.  A client is having
  problems sending out an email through our application using
 cfmail.
  We are seeing the following record in mail.log:
  Error,scheduler-8,11/04/08,15:10:23,,[EOF]
 
  I gather that EOF stands for end of file, but I'm not sure
 what that
  really means in this case.  Is it a timeout?  If so, why?
 
  In this case, there are a lot of email addresses in the bcc
 field, so
  that may be the culprit.  But, even so, we're not sure if there are
  bad email addresses in the list that are causing the
 problem or just
  too many to process before a timeout, or something else.
 
  Any ideas about how to further diagnose this?
 
  Thanks again in advance!
 
  Nick
 
 
 
 
 
 



 

~|
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:314863
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Passing URL variables to cfwindow?

2008-11-05 Thread Rob Parkhill
Pete,
The following works no problem for me

cfwindow name=job#jobID# height=500 width=600 draggable=true
closable=true title=Job Information source=job_view.cfm?id=#jobid#
resizable=true /

I have it nested inside a loop that loops a query for job data.

Rob

On Wed, Nov 5, 2008 at 9:18 PM, Pete Ruckelshaus [EMAIL PROTECTED]wrote:

 I'd like to use the cfwindow tag to pop up a modal window that
 contains a form that allows me to edit a specific record.  This window
 will be spawned via a normal hyperlink (i.e. a
 href=javascript:ColdFusion.Window.show('mywin');Show /a )
 However, I would like to pass a record id in to this window so that I
 can load a specific record for editing.  I've tried a number of
 JavaScript-y things (such as a

 href=javascript:ColdFusion.Window.show('mywin');mywin.src='test2.cfm?a=1';Show
 /a ), to no avail.  Is there any way to do this with cfwindow without
 having to bind to a form field (which I don't want to do)?

 Thanks,

 Pete

 

~|
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:314893
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Passing URL variables to cfwindow?

2008-11-05 Thread Rob Parkhill
And it gets called using the following, damn send is so tempting to hit
a href=# onClick=javacript:ColdFusion.Window.show('job#jobID#')  Click
here for more /a

Rob

On Wed, Nov 5, 2008 at 9:51 PM, Rob Parkhill [EMAIL PROTECTED]wrote:

 Pete,
 The following works no problem for me

 cfwindow name=job#jobID# height=500 width=600 draggable=true
 closable=true title=Job Information source=job_view.cfm?id=#jobid#
 resizable=true /

 I have it nested inside a loop that loops a query for job data.

 Rob


 On Wed, Nov 5, 2008 at 9:18 PM, Pete Ruckelshaus [EMAIL PROTECTED]wrote:

 I'd like to use the cfwindow tag to pop up a modal window that
 contains a form that allows me to edit a specific record.  This window
 will be spawned via a normal hyperlink (i.e. a
 href=javascript:ColdFusion.Window.show('mywin');Show /a )
 However, I would like to pass a record id in to this window so that I
 can load a specific record for editing.  I've tried a number of
 JavaScript-y things (such as a

 href=javascript:ColdFusion.Window.show('mywin');mywin.src='test2.cfm?a=1';Show
 /a ), to no avail.  Is there any way to do this with cfwindow without
 having to bind to a form field (which I don't want to do)?

 Thanks,

 Pete

 

~|
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:314894
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: creating a CSV file from a CF Query

2008-11-05 Thread Rob Parkhill
Geez, I always just use the cffile tag with the write and then append
actions.  and you can access a .csv through the web, so you can just use
that extension.
Rob

On Wed, Nov 5, 2008 at 8:20 PM, Mike Chabot [EMAIL PROTECTED] wrote:

 If you get rid of cfconent then load the page in a browser does it
 render as a normal CF page such that if you view source you see
 exactly the content that you expect to see in a CSV file?

 If it is a text file then use a regular line break instead of a BR tag.

 -Mike Chabot

 On Wed, Nov 5, 2008 at 8:08 PM, Toby King [EMAIL PROTECTED] wrote:
  I have a program - very simple to query a db and geta  result set and
 save to a CSV verything seemend to work OK initially but when I run the
 program now I keep getting a message cannot download the .cfm file.
 
  Here is the code.
 
  cfquery name=getUsers datasource=#request.AppDS#
  SELECT *
  FROM Users
  order by lastname
  /cfquery
 
  !--- Now output as simple comma-separated text ---
  !--- Put the column names on first line, then ---
  !--- the actual data rows on their own lines ---
 
  cfheader name=Content-Disposition value=Attachment;
 filename=scusers3.txt
 
  cfcontent type=text/plainTitle,FirstName,LastName,Emailbr
 /br /
  cfoutput
 query=getUsers#Title#,#FirstName#,#LastName#,#Email#br
 //cfoutput
 
 
  THanks in advance for any feedback.
 
 
 
 

 

~|
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:314895
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdExt

2008-11-04 Thread Rob Parkhill
Good Day,

I have a relatively simple question that I need an answer for.  I have just 
started looking into ColdExt as a client of mine has seen it and likes it.  I 
have downloaded everything and have it running just fine.  However, I can't 
seem to find an example or the smallest shred of code that allows me to get a 
menu to link to something.  I have tried quite a few things an nothing seems to 
work.  I am sure that I just need a  little JS function to do this, which is 
fine but I can't get the right reference from the ColdExt tags.  I am going for 
the toolbars etc.  Code below.

Any help would be greatly appreciated!

Thanks,

Rob

ext:toolbarbutton text=Reports
ext:menu
ext:textItem Text=Print/Fax/Email Reports /
ext:textItem Text=Request Additional Tests /
ext:textItem Text=Request Retest /
ext:textItem Text=Analysis Certificate /
ext:textItem Text=Request Output /  
ext:textItem Text=Generate Reports /

/ext:menu
/ext:toolbarbutton


~|
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:314814
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: EOF error message in email.log

2008-11-04 Thread Rob Parkhill
I would guess that it is a bad e-mail causing the problem.  Why are you
BCC-ing a bunch of e-mails?  Why not just send direct?  Of course looking at
the e-mails may lead you to the problem, or see what is in the undeliverable
folder.
Rob

On Tue, Nov 4, 2008 at 7:56 PM, Nick Gleason [EMAIL PROTECTED] wrote:

 Hey there - another cfmail related question.  A client is having problems
 sending out an email through our application using cfmail.  We are seeing
 the following record in mail.log:
 Error,scheduler-8,11/04/08,15:10:23,,[EOF]

 I gather that EOF stands for end of file, but I'm not sure what that really
 means in this case.  Is it a timeout?  If so, why?

 In this case, there are a lot of email addresses in the bcc field, so that
 may be the culprit.  But, even so, we're not sure if there are bad email
 addresses in the list that are causing the problem or just too many to
 process before a timeout, or something else.

 Any ideas about how to further diagnose this?

 Thanks again in advance!

 Nick





 

~|
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:314833
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
or on riaforge
http://cf4em.riaforge.org/

Rob


On Wed, Oct 29, 2008 at 10:17 AM, Steve LaBadie [EMAIL PROTECTED]wrote:

 We use phpbb

 Steve LaBadie, Web Manager
 East Stroudsburg University
 200 Prospect St.
 East Stroudsburg, Pa 18301
 570-422-3999
 http://www.esu.edu
 [EMAIL PROTECTED]

 -Original Message-
 From: Mallory Woods [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, October 29, 2008 10:19 AM
 To: cf-talk
 Subject: Best Open Source Message Board?

 Hello All,

 I have a quick project to do and there is no time for re-inventing the
 wheel. What is the best open source message board? It will be installed
 on a
 system that is using CF7.

 Thanks in Advance!




 

~|
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:314538
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
is that ahem ray, or Amen?
Rob

On Wed, Oct 29, 2008 at 11:12 AM, Raymond Camden [EMAIL PROTECTED] wrote:

 On Wed, Oct 29, 2008 at 9:39 AM, Mallory Woods [EMAIL PROTECTED]
 wrote:

  I am working on getting cf4em setup but its throwing lots of errors for
 some
  reason.
 

 Then try Galleon. It never has errors. Seriously.

 (Ahem)

 -Raymond Camden

 

~|
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:314551
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Lines of credit or credit account online

2008-10-28 Thread Rob Parkhill
Why not just have them provide a credit card that you can keep on file.  It
is already a line of credit :)
Rob

On Tue, Oct 28, 2008 at 3:26 PM, ColdFusion Developer [EMAIL PROTECTED]wrote:

  Are you looking for an actual credit-check service with an API? or are
  you looking for the bank that would actually back the credit line?
 

 That's a very good question. I'm not sure my client really knows which one
 is needed and I have absolutely no knowledge of how this process works ...
 so my answer is Dunno!

 The client's exact words were: I want visitors to fill out a form and
 submit it and get approved for a line of credit they can use to pay for
 services on my site.



 

~|
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:314456
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Adding Updating empty values

2008-10-28 Thread Rob Parkhill
wrap it in a cfif so..
cfif isundefined(form.q1)
   cfset form.q1 = 
/cfif

Rob

On Tue, Oct 28, 2008 at 3:33 PM, Rick Sanders [EMAIL PROTECTED] wrote:

 Hey all,



 In my form some values may be left empty. For example a form field named
 q1.

 It's fine if it's empty because the user can go back and fill it in later
 if
 they wish.



 How do I get passed the q1 is not defined in Form CF error? All I want to
 do is enter an empty value. How can I allow it to do that for insert and
 updates?



 Thanks!



 LogoSig

 Rick Sanders

 Webenergy

 Canada: 902-431-7279

 USA:   919-799-9076

 Canada: www.webenergy.ca

 USA:   www.webenergyusa.com







 

~|
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:314465
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >