Re: how to maintain source code

2010-03-16 Thread Jochem van Dieten

On 3/15/10, fun and learning wrote:
 Have any of you faced a situation where the place you work does not have a
 version control software, and in that case what are the best way to maintain
 code files on your development machine?

I have had a few of those cases. In all but one the answer was to take
the time to start using version control. The one case where I have
worked without version control was a client where ColdFusion was EOL,
the other people lacked the skills and they had a very extensive
system of scheduled tasks for change management and backups based on
directory diff and merge. Those circumstances are quite exceptional,
in general the answer is just to start using some sort of version
control.

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/

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


Re: how to maintain source code

2010-03-16 Thread David McCan

SourceGear.com -- The Vault product is free for a single user. 

David


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


Anyone have experience with this CF9 hot fix?

2010-03-16 Thread Gabriel Ortiz

I haven't seen many talking about this CF9 hotfix so I'm wondering if anyone 
has any experience with what it fixes? It seems like it's a particularly nasty 
bug that is fixed by it but the technotes are never that detailed so maybe 
others have thoughts or experiences they can share.

http://kb2.adobe.com/cps/825/cpsid_82547.html

Thank you,
Gabriel 

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


Re: Repeating Data - Unsure of my use of cfquery

2010-03-16 Thread Steven Sprouse

I got my original form to output the way I wanted it to. Now, I'm trying to 
actually process and validate that form and I'm running into more errors. I 
sort of know what I'm doing wrong, but unclear how to fix it.

Here is my error: Invalid tag nesting configuration. A query driven CFOUTPUT 
tag is nested inside a CFOUTPUT tag that also has a QUERY= attribute. This is 
not allowed. Nesting these tags implies that you want to use grouped 
processing. However, only the top-level tag can specify the query that drives 
the processing. brThe error occurred on line 299.

Is there an easy way for me to send the file of my processing document on this 
forum? 

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


RE: Repeating Data - Unsure of my use of cfquery

2010-03-16 Thread Chad Gray

You can put a CFLoop query=foo inside of a cfoutput query=moo tag.


-Original Message-
From: Steven Sprouse [mailto:sspro...@ccboe.com] 
Sent: Tuesday, March 16, 2010 10:39 AM
To: cf-talk
Subject: Re: Repeating Data - Unsure of my use of cfquery


I got my original form to output the way I wanted it to. Now, I'm trying to 
actually process and validate that form and I'm running into more errors. I 
sort of know what I'm doing wrong, but unclear how to fix it.

Here is my error: Invalid tag nesting configuration. A query driven CFOUTPUT 
tag is nested inside a CFOUTPUT tag that also has a QUERY= attribute. This is 
not allowed. Nesting these tags implies that you want to use grouped 
processing. However, only the top-level tag can specify the query that drives 
the processing. brThe error occurred on line 299.

Is there an easy way for me to send the file of my processing document on this 
forum? 



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


Re: Repeating Data - Unsure of my use of cfquery

2010-03-16 Thread Ian Skinner

cfoutput query=aQuery
cfoutput query=bQuery
 
/cfoutput
/cfoutput

That is illegal because ColdFusion does some automatic variable scoping 
that would just not work in such a situation.  To do this you have to 
use the cfloop query... form.

I.E.
cfoutput
cfloop query=aQuery
cfloop query=bQuery
 
/cfloop
/cfloop
/cfoutput

Just realize with this from CF is not going to automatically scope the 
query column names for you and you will have to keep track of the rows.  
You output will look something like this.

#aQuery.aColumn[aQuery.currentRow]# and #bQuery.bColumn[bQuery.currentRow]#



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


Fwd: Re: CF Builder Beta 3 and RDS

2010-03-16 Thread cf-talk


Hi Andrew, thanks for your response.
I haven't been able to respond earlier.

When I configure CFBuilder like: JRun
I have to set a naming-port which I never did before.
Port 2910 isn't open at the firewall either. (Without it, I can not
work on, obviously it is a mandatory attribute).
When I click on Other instead of JRun, which is the other option,
there is no connection possible.
Can you send my your config-data ?
Uwe



 Works fine here.

 Double check your host Name, port, username and password settings. And that
 RDS is switched on.


 -Original Message-
 From: cf-t...@sdsolutions.de [mailto:cf-t...@sdsolutions.de] 
 Sent: Saturday, 27 February 2010 9:20 PM
 To: cf-talk
 Subject: CF Builder Beta 3 and RDS


 Hi list, in
 CF Builder Beta 3 I can not
 make a RDS-Connect to a CF 8 Server.

 There are two connect-options:
 a) JRun
 b) Other

 I tried both options, and I can not make a valid
 RDS-connection.
 Do I need CF 9 for this ?
 As far as I can remember with CFB beta 2 it worked.

 Uwe





 

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


Re: Repeating Data - Unsure of my use of cfquery

2010-03-16 Thread Steven Sprouse

Just so I'm clear, are you saying that I need to change my 
#aQuery.aColumn[aQuery.currentRow]# formatting within the form? For example, I 
need to change this:

cfoutput query=getSchools

option value=#getSchools.SchoolBrief##getSchools.SchoolBrief#br 
//option/cfoutput

/cfselect

to this:

cfloop query=getSchools

option 
value=#getSchools.SchoolBrief[getSchools.currentRow]##getSchools.SchoolBrief[getSchools.currentRow]#br
 //option/cfloop

/cfselect

If so, what is the currentRow value? Just a little confused there.
___

cfoutput query=aQuery
cfoutput query=bQuery
 
/cfoutput
/cfoutput

That is illegal because ColdFusion does some automatic variable scoping 
that would just not work in such a situation.  To do this you have to 
use the cfloop query... form.

I.E.
cfoutput
cfloop query=aQuery
cfloop query=bQuery
 
/cfloop
/cfloop
/cfoutput

Just realize with this from CF is not going to automatically scope the 
query column names for you and you will have to keep track of the rows.  
You output will look something like this.

#aQuery.aColumn[aQuery.currentRow]# and #bQuery.bColumn[bQuery.currentRow]# 

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


Re: Anyone have experience with this CF9 hot fix?

2010-03-16 Thread Dave Watts

 I haven't seen many talking about this CF9 hotfix so I'm wondering if anyone 
 has any experience with what it fixes? It seems like
 it's a particularly nasty bug that is fixed by it but the technotes are never 
 that detailed so maybe others have thoughts or
 experiences they can share.

 http://kb2.adobe.com/cps/825/cpsid_82547.html

The bug is that you may have two variables with different names, and
CF will think they're the same variable. It's the kind of bug that
you'd never really be able to identify easily on your own. I would
just recommend that you apply the hotfix.

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


RE: Anyone have experience with this CF9 hot fix?

2010-03-16 Thread Mark A. Kruger

Yeah... that would really be a head scratcher. You'd hunt all over for a
reference problem.

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com


-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Tuesday, March 16, 2010 10:42 AM
To: cf-talk
Subject: Re: Anyone have experience with this CF9 hot fix?


 I haven't seen many talking about this CF9 hotfix so I'm wondering if
anyone has any experience with what it fixes? It seems like
 it's a particularly nasty bug that is fixed by it but the technotes are
never that detailed so maybe others have thoughts or
 experiences they can share.

 http://kb2.adobe.com/cps/825/cpsid_82547.html

The bug is that you may have two variables with different names, and
CF will think they're the same variable. It's the kind of bug that
you'd never really be able to identify easily on your own. I would
just recommend that you apply the hotfix.

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


Re: Repeating Data - Unsure of my use of cfquery

2010-03-16 Thread Ian Skinner

On 3/16/2010 8:22 AM, Steven Sprouse wrote:
 If so, what is the currentRow value? Just a little confused there.

currentRow is one of the values provided by ColdFusion about its query 
objects, just like columnList and recordCount.  It is simple the current 
row of the record set that is being processed in the current iteration 
of a query loop, either cfoutput query... or cfloop query... loops.  
You can use it any time you want to know what iteration you are on.

I.E a way to alternate row colors:
cfiif aQuery.currentRow MOD 2#darkBackground#/cfif

You can normally ignore the need to keep track of the current row when 
you are looping over a single record set inside of a loop.  But once you 
nest two or more separate query loops inside each other, ColdFusion can 
no longer know for certain which iteration of which record set do you 
want to out put at a given point.  It falls on you to explicitly tell 
ColdFusion which iteration to use.  I.E. the aQuery.currentRow.





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


CF-based picture-gallery

2010-03-16 Thread cf-talk

Hi everybody,
is there any good
CF-based (CF6-8, not higher) picture-gallery function/tag/application
which I can use ?
It should produce thumbnails on the
fly, one should put in a title and a picture-description
via an admin-function. Resizing is another plus.

Uwe





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


Online domain name search tag/tool

2010-03-16 Thread Terry Troxel

Coldfusion Tag/Tool for Domain Name searches.

Is there such a thing that can allow you to let your users search for
possible domain names to register without going to places like godaddy.com
who then show them pricing for hosting, design, Coldfusion, etc. who are
trying to put you the small business out of business (please pardon the
rant).

Terry



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


Re: CF-based picture-gallery

2010-03-16 Thread Gerald Guido

Go here and search for Photo
http://www.riaforge.org/index.cfm?event=page.search


HTH
G!


On Tue, Mar 16, 2010 at 12:44 PM, cf-t...@sdsolutions.de wrote:


 Hi everybody,
 is there any good
 CF-based (CF6-8, not higher) picture-gallery function/tag/application
 which I can use ?
 It should produce thumbnails on the
 fly, one should put in a title and a picture-description
 via an admin-function. Resizing is another plus.

 Uwe





 

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


Re: Online domain name search tag/tool

2010-03-16 Thread Casey Dougall

On Tue, Mar 16, 2010 at 12:58 PM, Terry Troxel te...@it-werks.com wrote:


 Coldfusion Tag/Tool for Domain Name searches.

 Is there such a thing that can allow you to let your users search for
 possible domain names to register without going to places like godaddy.com
 who then show them pricing for hosting, design, Coldfusion, etc. who are
 trying to put you the small business out of business (please pardon the
 rant).

 Terry


You would have to find someone who offers an API method for purchasing
domains, then you just write your own code to integrate into your current
shopping cart.

Normally associated with reseller accounts so there could be a yearly or
monthly fee.

example

http://www.godaddy.com/gdshop/reseller/api.asp

Just * Just $249.99/year! *


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


Re: CF-based picture-gallery

2010-03-16 Thread Tony Bentley

http://cfimagemanager.com/downloads/cfimagemanager_5.7.09.4pm.zip

I never officially released it but it does everything you listed. 

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


Re: Online domain name search tag/tool

2010-03-16 Thread Eric Cobb

The simplest thing to do would be send them to 
http://internic.net/whois.html and let them look up the domain.  The 
site is run by ICANN, and all it does is look up a domain and tell you 
if it's registered or available.  If it's registered, it gives you some 
of the public registration information for it. 

thanks,

eric cobb
ecar technologies, llc
http://www.cfgears.com



Terry Troxel wrote:
 Coldfusion Tag/Tool for Domain Name searches.

 Is there such a thing that can allow you to let your users search for
 possible domain names to register without going to places like godaddy.com
 who then show them pricing for hosting, design, Coldfusion, etc. who are
 trying to put you the small business out of business (please pardon the
 rant).

 Terry



 

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


Shopping Cart for subscription based purchases

2010-03-16 Thread coldfusion . developer

I'm looking for a shopping cart that I can use to take order that are 
subscription based on reoccurring purhases. I've looked at Google's offering 
which is EXPERIMENTAL and Authorize.net's service.  Can anyone recommend a 
service that easy to manage?  Both Google and Authorize.net require working 
with XML data and I'm not quite sure how to work with their integration. Any 
examples of how to work with that would be awesome!

http://developer.authorize.net/api/arb/

http://code.google.com/apis/checkout/developer/Google_Checkout_Beta_Subscriptions.html


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


Re: Shopping Cart for subscription based purchases

2010-03-16 Thread Mary Jo Sminkey

 I'm looking for a shopping cart that I can use to take order that are 
 subscription based on reoccurring purhases. I've looked at Google's 
 offering which is EXPERIMENTAL and Authorize.net's service.  Can 
 anyone recommend a service that easy to manage?  Both Google and 
 Authorize.net require working with XML data and I'm not quite sure how 
 to work with their integration. Any examples of how to work with that 
 would be awesome!


If you are looking to mostly roll your own, here's a CFC for the AuthNet 
Recurring API:

http://authorizenetrecurring.riaforge.org/


Another option is to use a processor like Shift4 that uses tokens. This way you 
can just save the token and use that for each recharge, and easily handle 
cancellations/changes to the subscription solely on your end. 








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


Re: Shopping Cart for subscription based purchases

2010-03-16 Thread Casey Dougall

On Tue, Mar 16, 2010 at 4:05 PM, Mary Jo Sminkey mary...@cfwebstore.comwrote:


  I'm looking for a shopping cart that I can use to take order that are
  subscription based on reoccurring purhases. I've looked at Google's
  offering which is EXPERIMENTAL and Authorize.net's service.  Can
  anyone recommend a service that easy to manage?  Both Google and
  Authorize.net require working with XML data and I'm not quite sure how
  to work with their integration. Any examples of how to work with that
  would be awesome!


 If you are looking to mostly roll your own, here's a CFC for the AuthNet
 Recurring API:

 http://authorizenetrecurring.riaforge.org/


 Another option is to use a processor like Shift4 that uses tokens. This way
 you can just save the token and use that for each recharge, and easily
 handle cancellations/changes to the subscription solely on your end.



ABS Subscriptions at Authorize.net suck!

1. Notifications on payments are not reliable.
2. Expired Cards are not updated - Nice little cheat her, you can update a
credit card adding 2 years to the experation year and it works a fair amount
without customer interaction.
3. I know there was a 3rd but I'll stop here I can't remember the exact
reason why we switched to CIM processing but it's amazing... you just need
to handle your own recurring cycles and re-charge attempts based on decline
reasons.


It's a bit more work going CIM route, but then again I know 100% what's
valid in my system every day, what's in re-try mode for declines, what we
canceled because of re-try attempts that continue to decline etc.

Think that's similar to Shift4 they provide a Authorize.Net provides a
CustomerID and PaymentID because you can have multiple cards associated with
one profile. then you just select the CustomerId PaymentId and amount to
charge each month.

http://www.authorize.net/solutions/merchantsolutions/merchantservices/cim/


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


Re: CFDocument Slowness (CF8)

2010-03-16 Thread Jason Fisher

IIRC, JVM 6.4 is the really bad slow one, isn't it?  Update to 6.11 or 
higher and you're likely to see improvement in several areas.



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


CF - Ebay API

2010-03-16 Thread Pablo Varando

Hey everyone,

  Does anyone on here have any experience in implementing an eBay API via
ColdFusion?  

If you do, please let me know I have some questions.

Thanks,
 
Pablo Varando
Chief Software Architect

EasyCFM.COM, LLC.
www.easycfm.com


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


Re: CF-based picture-gallery

2010-03-16 Thread Charlie Griefer

I guess now it's official :)

On Tue, Mar 16, 2010 at 10:28 AM, Tony Bentley t...@tonybentley.com wrote:


 http://cfimagemanager.com/downloads/cfimagemanager_5.7.09.4pm.zip

 I never officially released it but it does everything you listed.

 

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


Re: CFDocument Slowness (CF8)

2010-03-16 Thread James Holmes

I've seen and fixed this before. In my case, the problem was with the
graphics subsystem; one machine was set up headless and the other wasn't.
The font rendering ended up running slow because it would fail when looking
for certain rendering methods and then fall back to other methods each time.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/


On 15 March 2010 08:26, E Cohe cft...@longmeadcrossing.com wrote:


 Hello,

 I am moving ColdFusion to a new server and I am running into an issue which
 does not exist on the current server: producing PDFs with CFDOCUMENT is very
 slow--it can take 60 seconds to produce a single 3 page PDF file. The same
 thing on the current, similarly configured server takes maybe 5 seconds to
 fully load.

 I have tested a few  things to try to narrow the problem down:

 - Both servers are running ColdFusion 8 , but one the new server now has
 the newest patches so the new one is version 8,0,1,195765 and the old one is
 version 8,0,0,176276  (I had this problem before I installed the patches
 though, so I don’t think that’s the issue)

 - Other than that, the main difference I can find with the installations is
 that when I click on the i in the coldFusion administrator, I notice the
 one that works normal speed, has an OLDER version of JVM.  (Old server:
 1.6.0_01 New Server: 1.6.0_04)

 - The problem does not seem to have to do with images.  I have commented
 out images and still have the same slow speeds.  I also know that if I run
 the template without CFdocument, it runs very quickly.

 Thanks for any ideas!

 EC




 

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


Retaining data in flash forms

2010-03-16 Thread Torrent Girl

I love using flash forms but I can't seem to get the form to retain the form 
data if the form is refreshed.

Is there a setting to retain the form data? I tried the classic 
value=form.variable...but its not working.

Any suggestions?

There is an attribute called preservedata but setting it to YES doesn't work 
()

Thank you. 

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


New open source API: tumblrCFC

2010-03-16 Thread andy matthews

Hey everyone...

I just wanted to take a minute to announce a new API that I've released.
It's a ColdFusion wrapper for the tumblr blog API. You can find more
information about it at my website:

http://andymatthews.net/code/tumblrCFC/


I'd love to get feedback from any of you that decide to start using it.


andy





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