Re: wrong serial for CF9 upgrade

2010-12-18 Thread Jacob Munson

I wonder if the number only works for Windows.  I know Adobe does that with
their other products, but not sure for CF.

Sent with my Droid
On Dec 18, 2010 2:52 PM, Uwe Degenhardt cf-t...@sdsolutions.de wrote:

 Hi list,
 I have a strange problem
 with a CF9 (standard)
 licence key, trying to install
 on Linux Debian Lenny.
 The key works for Windows
 but not for the linux installation.
 I get a The serial number that you entered
 is invalid everytime I want to pass this
 to CF via the console.
 I checked it a dozen times. The key is correct.
 The key is an upgrade key from CF8 or CFMX 7.
 Any ideas ?
 Uwe



 

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


Re: mySQL administration

2010-12-09 Thread Jacob Munson

You can run it on Vista if you want to install PHP.  I would suggest
installing the Mysql GUI tools which are available on the Mysql website.

Sent with my Droid
On Dec 9, 2010 8:53 PM, Rob Voyle robvo...@voyle.com wrote:

 Hi Folks

 I have mySQL running on my website and want to run it on Windows Vista
 desktop computer to pilot and test web pages.

 Any recommendations on a way to create and administer databases without
 having to use the command line. On my website I have phpMyAdmin.

 Can that be run on a local computer?

 Rob
 Robert J. Voyle, Psy.D.
 Director, Clergy Leadership Institute
 For Coaching and Training in Appreciative Inquiry
 Author: Restoring Hope: Appreciative Strategies
 to Resolve Grief and Resentment
 http://www.appreciativeway.com/
 503-647-2378 or 503-647-2382





 

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


Re: custom error message - sometimes cf ignores me and displays the standard error message

2010-12-07 Thread Jacob Munson

 I'm now thinking I need to read up on the difference between exception, 
 request and validation errors.

I think the other replies in this thread may be all the info you need,
but if not you could take a look here for a good comprehensive rundown
of CF errors:
http://www.coldfusionjedi.com/index.cfm/2007/12/5/The-Complete-Guide-to-Adding-Error-Handling-to-Your-ColdFusion-Application

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


Re: Monster Regex

2010-12-06 Thread Jacob Munson

cfset str = reReplace(str,^\(,)
cfset str = reReplace(str,;\d+-\d+\),)


On Mon, Dec 6, 2010 at 12:03 PM, Rick Colman rcol...@cox.net wrote:

 Been whacking at this one for a while, and it eludes me.

 ((T ACC) (I ATT) (T ACT) (P CCA) (E GAA) (T ACT) (S TCC) (R CGT) (P CCA)
 (I ATC) ;0-9
 (T ACT) (M ATG) (D GAT) (H CAC) (L CTG) (E GAG) (K AAA) (N AAC) (E GAA)
 ;1210-1218)

 remove only single leading paren (
 remove only trailing single paren )
 leave all others

 remove ;xxx-yyy at the end of each line (unix line) where xxx is a
 number and yyy is a number

 so that the result looks like:

 (T ACC) (I ATT) (T ACT) (P CCA) (E GAA) (T ACT) (S TCC) (R CGT) (P CCA)
 (I ATC) (T ACT) (M ATG) (D GAT) (H CAC) (L CTG) (E GAG) (K AAA) (N AAC)
 (E GAA)

 You will advance the state of genomic science !!!

 (yuck ... I hate RE ...)

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


Re: Monster Regex

2010-12-06 Thread Jacob Munson

It worked in my test, but I now notice that you've got a space before the
trailing parens.  Try this for the second code bit:

cfset str = reReplace(str,;\d+-\d+\s*\),)

Sent with my Droid
On Dec 6, 2010 1:34 PM, Rick Colman rcol...@cox.net wrote:

 this removed the leading parent, but did not remove the ;xxx-yyy numbers
 at the end of each line or the final trailing paren )

 like

 (T ACT) (M ATG) (D GAT) (H CAC) (L CTG) (E GAG) (K AAA) (N AAC) (E GAA)
 ;1210-1218 )

 On 12/6/2010 11:16 AM, Jacob Munson wrote:
 cfset str = reReplace(str,^\(,)
 cfset str = reReplace(str,;\d+-\d+\),)


 On Mon, Dec 6, 2010 at 12:03 PM, Rick Colmanrcol...@cox.net wrote:
 Been whacking at this one for a while, and it eludes me.

 ((T ACC) (I ATT) (T ACT) (P CCA) (E GAA) (T ACT) (S TCC) (R CGT) (P CCA)
 (I ATC) ;0-9
 (T ACT) (M ATG) (D GAT) (H CAC) (L CTG) (E GAG) (K AAA) (N AAC) (E GAA)
 ;1210-1218)

 remove only single leading paren (
 remove only trailing single paren )
 leave all others

 remove ;xxx-yyy at the end of each line (unix line) where xxx is a
 number and yyy is a number

 so that the result looks like:

 (T ACC) (I ATT) (T ACT) (P CCA) (E GAA) (T ACT) (S TCC) (R CGT) (P CCA)
 (I ATC) (T ACT) (M ATG) (D GAT) (H CAC) (L CTG) (E GAG) (K AAA) (N AAC)
 (E GAA)

 You will advance the state of genomic science !!!

 (yuck ... I hate RE ...)

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


Re: REQUEST.cfdumpinited

2010-11-30 Thread Jacob Munson

I use cfdump in cfmail all the time, and it works fine for me (we're
on CF9 as well).  Are you sure you're using the HTML format?

On Tue, Nov 30, 2010 at 12:43 PM, Sean Henderson
shender...@followup.net wrote:

On 11/30/2010 11:23 AM, Sean Henderson wrote:
 CF9 workaround?

The output format property of CF9 that allows you only output a text
version of the cfdump content?

 Well, except I need the markup, just not the extra style or javascript.  It 
 also appears that CFDUMP generates the style and javascript tags for each 
 time it is called.

 The real issue here is that CFDUMP used to work properly inside a CFMAIL tag 
 in CF6, and now in CF9, it either does not work at all, or spews a bunch of 
 unhidden javascript into the body of the email.

 Regular (not in CFMAIL) example (angle-brackets removed):

 body
        cfset foo=queryNew(bar)
        cfset dummy=queryAddRow(foo,1)
        cfset dummy=querySetCell(foo,bar,bat)
        cfset REQUEST.cfdumpinited=false
        cfdump var=#foo#
        cfdump var=#REQUEST#
 /body

 Sean



 

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


Re: CFMail 'from' seems to get ignored

2010-11-19 Thread Jacob Munson

I believe this is a setting in gmail itself.  There is a section in the
settings called Send mail as:

Sent with my Droid
On Nov 19, 2010 2:14 PM, Stefan Richter ste...@flashcomguru.com wrote:

 Hi all,
 I've configured mail in CF Admin using smtp.gmail.com with my personal
GMail account details (username and password). Mail is being sent without
problems.

 However users of one of the websites where I use the CFMAIL tag and a
'from' address of i...@site.com tell me that the email arrives as having
been sent from me, using my GMail address. What am I missing? Shouldn't the
'from' in CFMail take priority? That's what I seem to remember always
happened when I used my own SMTP server in the past.

 BTW I am not specifying server details or credentials in the CFMail tag
itself, they are only specified in CFadmin.

 Cheers

 Stefan







 

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


Re: index.cfm being hacked

2010-11-15 Thread Jacob Munson

What kind of stuff is on the page?  Forms?  Database access?  Does it
use URL parameters?  We'll need to know what's on the page to really
help you out.

On Mon, Nov 15, 2010 at 8:45 PM, Mike Little m...@nzsolutions.co.nz wrote:

 hi guys,

 for the last few weeks one of my clients websites is being hacked. currently 
 hosted on a shared server at hostek.

 the index.cfm is in the root and appears to be the only templated affected. 
 basically they are appending a long list of url's in a hidden div to the 
 existing code.

 we immediately changed ftp logins and also removed any cffile functions from 
 the site. unfortunately within a couple of days it happened again.

 has anyone experienced this happening recenty or may know of where i should 
 checking for vulnerabilities?

 cheers
 mike

 

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


Re: index.cfm being hacked

2010-11-15 Thread Jacob Munson

You could run it through hackmycf.com to see what's reported.  You
might have a vulnerability in CF itself that is being exploited.

On Mon, Nov 15, 2010 at 8:55 PM, Mike Little m...@nzsolutions.co.nz wrote:

 it's a very simple page really. static info, and a javascript animated banner.

What kind of stuff is on the page?  Forms?  Database access?  Does it
use URL parameters?  We'll need to know what's on the page to really
help you out.




 

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


Re: MS SQL Default CF User

2010-11-12 Thread Jacob Munson

Did you change the UN/PW in your datasource?  If you change it there,
then all connections to your DB using that datasource will go through
your new UN/PW.

On Fri, Nov 12, 2010 at 10:55 AM, Doug Ford doug.e.f...@gmail.com wrote:

 Hi folks -

 I am trying to lock down my MS SQL server access when CF access it.

 I have set up a user  password, gave it the right permissions, put that U/N 
 and p/w into my code and that works.
 The problem I have is that CF still allows default access to the DB.

 So whether I use the U/N or P/W, both methods still allow access.

 I have been playing with the security of a test DB to figure out what I need 
 to do, but I have had no success.

 Any pointers would be appreciated.

 Thanks,

 Doug



 

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


Re: MS SQL Default CF User

2010-11-12 Thread Jacob Munson

Is there a reason why you don't want to put the correct UN/PW into the
data source?

On Fri, Nov 12, 2010 at 11:11 AM, Doug Ford doug.e.f...@gmail.com wrote:

 Hi Jacob -

 The UN/PW in the data source is blank.

 I was thinking that if I assigned a bogus un/pw to the DSN,
 but send over the correct info through the cfquery tag,
 then perhaps, anybody doing a cfquery without the un/pw will
 fail.

 But that didn't work.

Did you change the UN/PW in your datasource?  If you change it there,
then all connections to your DB using that datasource will go through
your new UN/PW.




 

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


Re: MS SQL Default CF User

2010-11-12 Thread Jacob Munson

I haven't tried this, but I wonder if you could create a user that has
0 privileges.  Maybe just give it read rights on tempdb, but nothing
else.  And then put that into your data source.  So it's a valid user,
but it can't access the sensitive databases.

On Fri, Nov 12, 2010 at 11:21 AM, Doug Ford doug.e.f...@gmail.com wrote:

 I am trying to add a level of security that if someone was able to access the 
 server and upload a file to read the SQL tables, I wanted to make sure that 
 without the proper password, a cfquery without a u/n  p/w, would fail in the 
 attempt.

 It's just all for security.


Is there a reason why you don't want to put the correct UN/PW into the
data source?




 

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


Re: CFLOOP Next Iteration

2010-10-29 Thread Jacob Munson

 There just hasn't been a good enough reason for my company to purchase it when
 DW doesn't just about everything it does for a fraction of the cost.

I am going to argue that CFB is not buggy, or that people should
definitely switch to CFB from DW.  However, I don't agree with your
statement here.  You really should research the benefits of CFB, and
also Eclipse.  CFB really offers a LOT more than DW.  But that's only
if you can get it to work in your environment.  If you can't, there's
obviously no reason to switch.

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


Re: CFLOOP Next Iteration

2010-10-27 Thread Jacob Munson

You probably noticed this, but cfcontinue is a new CF9 tag, so won't work in
older versions of CF.

Sent with my Droid
On Oct 27, 2010 9:57 AM, Matthew Lowrey rid...@gmail.com wrote:

 Thank you guys, I think it's time I update my CF References... I
shamefully have been using the MX version too often and Google for the first
time didn't produce anything that looked remotely workable. This is why I'm
starting to really get attached to the HoF site. Thank you for your
knowledge and speedy replies. I can't wait to put this tag to use.



 cfcontinue

 On Wed, Oct 27, 2010 at 8:14 AM, Matthew Lowrey rid...@gmail.com

 muc

 

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


Re: Query Var Disappears

2010-10-26 Thread Jacob Munson

 As I stated previously, if the
 SELECT INTO clause returns more than one record, the database will throw an
 exception.  If the SELECT INTO would not work, then it would not exist in
 the SQL specification.  :-)

Just a minor clarification, even though it might not solve your
problem.  You said you can't do a select into when the select returns
more than one row.  However, in your original SQL statement (in your
very first message) you have insert into myTable (fields) select
  To be clear, this is not a select into...those are two
different things.  You may be aware of this, but for those following
along in the thread I wanted to clarify.

But just in case you are actually referring to an insert into myTable
select ..., you can in fact grab more than one row in the select and
SQL Server will insert them just fine.

I have not closely followed all of the messages in this thread, so if
you are talking about something completely different, feel free to
ignore me.  

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


Re: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Jacob Munson

I don't know the answer to your question, but I've also been doing
Android development, and have had great luck with the stackoverflow
community when I need answers.  Give that a try.

On Sat, Oct 23, 2010 at 12:22 PM, Rick Faircloth
r...@whitestonemedia.com wrote:

 I'm getting into mobile development and have been
 searching for days to figure out how to use a web-based form
 to access images on my Samsung Fascinate and upload them to
 websites I've built.

 I cannot find an answer, except from back into 2008, where the
 poster wrote you can't upload an image from the phone's browser.
 Obviously, that info is dated, but is it still true?

 How can I use CF (or jQuery or whatever) to upload images
 from a phone (preferably any smart phone, especially iPhones
 and the latest Androids) to a website?

 And I don't know if I'm the first one to suggest this, but I'd
 love to see a list dedicated to mobile development!

 Thanks for any feedback!

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


Re: RE: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Jacob Munson

Right now I'm just building a native app.

Sent with my Droid
On Oct 23, 2010 1:04 PM, Rick Faircloth r...@whitestonemedia.com wrote:

 Thanks for the tip. I actually did read some comments
 on that site. I'll ask the question there.

 Are you doing all your develop for native apps or
 mobile websites or a combination?

 -Original Message-
 From: Jacob Munson [mailto:yacoub...@gmail.com]
 Sent: Saturday, October 23, 2010 2:28 PM
 To: cf-talk
 Subject: Re: (ot) (kinda) How do I upload an image to a website from an
 Android phone?


 I don't know the answer to your question, but I've also been doing
 Android development, and have had great luck with the stackoverflow
 community when I need answers. Give that a try.

 On Sat, Oct 23, 2010 at 12:22 PM, Rick Faircloth
 r...@whitestonemedia.com wrote:

 I'm getting into mobile development and have been
 searching for days to figure out how to use a web-based form
 to access images on my Samsung Fascinate and upload them to
 websites I've built.

 I cannot find an answer, except from back into 2008, where the
 poster wrote you can't upload an image from the phone's browser.
 Obviously, that info is dated, but is it still true?

 How can I use CF (or jQuery or whatever) to upload images
 from a phone (preferably any smart phone, especially iPhones
 and the latest Androids) to a website?

 And I don't know if I'm the first one to suggest this, but I'd
 love to see a list dedicated to mobile development!

 Thanks for any feedback!

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


Re: CFMAP and the no longer needed api key

2010-10-05 Thread Jacob Munson

+1 on using the API.  I have written several maps this way, and the
developer community is VERY supportive and helpful when you hit snags.
 The only trouble I've had with that community is that they require
you to post a publicly accessible version of your map before they'll
even look at your question.  Personally I develop a lot of stuff in an
Intranet, so posting my stuff publicly is not always easy.  But other
than that, the gmaps community is awesome.

On Tue, Oct 5, 2010 at 8:38 AM, Eric Roberts
ow...@threeravensconsulting.com wrote:

 I will be taking the naked approach...I was just hoping that there was a
 way around it as the tag is SO much easier.  Most of the work i have done
 with Google Maps has been through the API...I was just hoping to be able to
 take advantage of the tag...oh well ;-)  The API approach is pretty simple
 to use, so no big deal.

 Thanks guys!

 Eric

 On Tue, Oct 5, 2010 at 10:32 AM, Raymond Camden rcam...@gmail.com wrote:


 CF definitely uses V2. You can see it in the JS libraries requested.

 You can always just use Google Maps naked - I did for the first time
 last weekend:
 http://www.coldfusionjedi.com/index.cfm/2010/10/2/Centering-a-map-when-you-dont-know-where-to-center-it



 On Tue, Oct 5, 2010 at 9:02 AM, Dave Watts dwa...@figleaf.com wrote:
 
  Since version 3 no longer requires an API key for the Google Maps API,
 does
  anyone know a way around CF's restriction of needing one for using
 cfmap?
 
  My guess is that CF doesn't use the version 3 API anyway, so you'd
  still need a key.
 
  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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337870
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: File Upload - Changing MIME Types

2010-09-29 Thread Jacob Munson

From what I understand, the browser can send whatever mime type it wants.
And yes, there are security concerns here.  In my experience, dealing with
mime types is a pain in the  because browsers don't always seem to
follow a standard when processing files.  I think I found a java library
that did a good job at identifying files (after the upload).  I know that
you can't trust the mime type that is sent from the browser, because it
varies depending on the user agent, as you found.

On Mon, Sep 27, 2010 at 11:56 PM, Matt Quackenbush quackfu...@gmail.comwrote:


 This might be slightly off topic, but I am hoping that someone can steer me
 in the right direction.

 I have an upload form that should accept CSV files and nothing else.  So I
 set the following MIME types as permitted:

 text/csv,text/comma-separated-values,application/csv,application/x-csv

 I have tested files on multiple machines using multiple OS and browser
 combinations.  The exact same files work perfectly in some instances, yet
 fail in others.  Even more strange is the fact that the failures have shown
 up as different MIME types.  For example, I have seen text/plain and
 application/vnd.ms-excel and application/octet-stream.  This whole
 thing
 leads me to two questions:

 1) How can the exact same file be sent as a different MIME type depending
 upon the OS/browser combination?

 2) Is it truly the security risk that it seems to be if I were to allow
 application/octet-stream, which as I understand is essentially a binary
 format?  (The upload form and processor is behind a login, and the
 directory
 is outside of the web root, so that much is safe.)

 Thanks in advance for your help.


 

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


Re: cfinsert/cfupdate

2010-09-24 Thread Jacob Munson

Wow, calm down there partner!  I clearly stated in my post that I could be
wrong about this, and I invited people to correct me if I am wrong.

As far as Dave is of course correct as usual.  Dave has been known to be
wrong before.  Feel free to dismantle your Dave Watts shrine.  ;)

I KNOW for a fact that I read an article a couple of years ago that
explained things the way I explained them earlier.  I learned that using
prepared statements causes CF to send a compiled (yes, compiled) chunk of
code to SQL Server, lightening the DB's load.  Also, I learned that leaving
pieces of your search (the right side of Where/And) out of the bind would
cause the whole thing to be sent as plain SQL instead of compiled.  That is
NOT to say that the security benefits would break down, just the
performance.

AGAIN, I will say that I could be wrong here.  But I will defend myself and
say that whoever wrote that article a couple of years ago was wrong...not
me.

On Fri, Sep 24, 2010 at 8:17 AM, Russ Michaels r...@michaels.me.uk wrote:


 It is a complex topic for many, and Dave is of course correct as usual.
 It would be wise to a bit of research on the topic before giving out
 incorrect advise and also for yourself to make sure you understand the
 process correctly to aid in your own query design.
 There is a lot of info regarding this on Microsofts SQL server MSDN and
 technet pages.


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


Re: cfinsert/cfupdate

2010-09-24 Thread Jacob Munson


 This isn't really correct. The query isn't compiled in any case.


Ok, so I found out I WAS correct.  Either that or yet another article I
found on prepared statements is wrong.  Here's a quote from the article:
The PreparedStatement object contains not just an SQL statement, but an SQL
statement that has been precompiled. This means that when the
PreparedStatement is executed, the DBMS can just run the
PreparedStatementSQL statement without having to compile it first.

So according to this, the SQL statement IS precompiled, as I had asserted.
Here's the article:
http://download.oracle.com/javase/tutorial/jdbc/basics/prepared.html


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


Re: cfinsert/cfupdate

2010-09-23 Thread Jacob Munson


 How does Coldfusion manufacturer the queryparams?  It must inspect the
 database to determine field types...  I wonder if that's a performance
 hit...


I don't know the deep technical details, but I do know that many people
argue that using query params actually gives you a performance benefit over
plain SQL (although a lot of people disagree).  Regardless of the debate
over which method is faster, the way it works is if you query param ALL of
your variables (including values in the SQL that don't come from CF),
ColdFusion will create what is called a prepared statement (sometimes called
a parameterized statement, or bind parameter).  From what I understand, the
way this works is that ColdFusion compiles your query down to machine code
that the DB just executes.  If you don't query param every value, the DB has
to compile the statement, which includes syntax checking and all that jazz.


That said, this does not work if you don't use cfqueryparams for
everything.  For example, this query would NOT be a prepared statement (from
what I understand):

cfquery name=bday datasource=#myDSN#
select birthDate
from familyGroups
where child = cfqueryparam value=#form.children#
cfsqltype=cf_sql_varchar
and stillMinor = 1
/cfquery

The reason that it would not be a prepared statement is because of the
stillMinor = 1 part.  Even though that is a static value that never
changes, you still want to cfqueryparam that if you want your sql to be
compiled to a prepared statement.  Otherwise the DB server will still have
to do the work when it receives the SQL query from ColdFusion.

At least, that is how I understand things.  If anybody sees a flaw in my
explanation, feel free to jump in and correct me.


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


Re: cfinsert/cfupdate

2010-09-23 Thread Jacob Munson


 While I generally agree with that sentiment, ORM does the same thing on a
 more grand scale, and I haven't seen anyone railing against using that
 technology.


While I won't tell ORM fans that they shouldn't use ORM, I have done my fair
share of railing against ORM.  As others have said in this thread, I don't
like losing control over my SQL.  I used to think that ORM was just a crutch
for people that hate writing SQL (because they never took the time to
properly learn SQL).  While I still believe that is the case for some ORM
users (I won't name names, but I personally know a few developers that would
fit this description), I have since come to realize that there are many SQL
gurus out there that like to use ORM because of it's convenience, as well as
how tightly it can integrate with OO techniques and frameworks.  Personally,
I am not one of those people, but I won't say that ORM is bad and nobody
should use it.  To each his own.  :)


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


Re: Shorter URLs - How?

2010-09-21 Thread Jacob Munson

Everybody else has given good advice, but I wanted to show you some code to
do what you originally asked for.  I searched for a small bit of code that
Sean Corfield posted to his blog, and I can't find it.  But he did add URL
rewriting to his FW/1 framework.  I'd wager it's close to the same code that
he had separately posted earlier.  You can download his framework and swipe
the URL rewriting code:
http://fw1.riaforge.org/

On Tue, Sep 21, 2010 at 9:04 AM, Stefan Richter ste...@flashcomguru.comwrote:


 Hi all,
 I'm a Flex developer with just enough CF skills to be dangerous :-) and
 need some guidance here.
 My website allows users to access specific pages via a unique id/parameter
 such as this:
 http://www.scribblar.com/rooms/index.cfm?r=k3ns5

 What's involved in terms of CF code to shorten this to
 http://www.scribblar.com/rooms/k3ns5
 or even better still
 http://www.scribblar.com/k3ns5

 I'm unsure as to how to achieve this. In case it makes a difference I am
 using a Windows box with IIS7.

 Cheers

 Stefan





 

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


Re: Shorter URLs - How?

2010-09-21 Thread Jacob Munson


 However this is really best left to URL rewriting via the webserver.


I would also argue that it's not really bad to do URL rewriting within CF
instead of in the web server.  Sure, there may be high traffic situations
where you're trimming miliseconds, but for most cases CF URL rewriting is a
perfectly valid option.  And many people would prefer to have all of their
application configuration in one place, instead of needing to go to multiple
places to maintain app level settings.

Also, say you need to move the app to a different server or host.  If you
use web server URL rewriting, you'll need to set that up again on the new
server.  If you do it in CF you just need to drop your code on the server
and your done.  Personally I think it's a personal preference thing, not a
This is the written in stone way that you should do it.  :)


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


Re: Shorter URLs - How?

2010-09-21 Thread Jacob Munson


 Sure it's personal preference I guess but I generally try to use the right
 tool for the job. Data processing is best left to databases. URL rewriting
 is best left to the server. And ColdFusion server can be left to serve out
 ColdFusion pages.


I won't disagree.  I just think that there are cases where it makes sense to
do URL rewriting in CF.  And especially in this case, where we have a Flex
developer that is learning CF...maybe it's not the best idea for him to go
try to learn yet another technology when he can just use CF?  Also, his app
might be on a shared host which would make using web server URL rewriting
difficult if not impossible.


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


Re: Shorter URLs - How?

2010-09-21 Thread Jacob Munson

They see the rewritten URL.

Sent with my Android phone

On Sep 21, 2010 4:21 PM, Les Mizzell lesm...@bellsouth.net wrote:

 I just think that there are cases where it makes sense to
 do URL rewriting in CF.

 Getting off topic, how does this affect SEO? What does googlebot or
 another search engine bot see when it's done this way?

 

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


Re: Shorter URLs - How?

2010-09-21 Thread Jacob Munson


 Well not to get to technical but cf actually sees the rewritten URL.  The
 bots see the seo URL before it is rewritten


You're right, I was thinking the wrong direction.  :)


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


Re: Looping through arrays with structures

2010-09-17 Thread Jacob Munson

Am I blind?  The email I read from Michael does NOT show the array
attribute.  In fact, his loop looks exactly like your code.

On Fri, Sep 17, 2010 at 6:42 PM, Andrew Scott andr...@andyscott.id.auwrote:


 That won't work in certain versions of ColdFusion, if you are not using the
 version of ColdFusion that supports this. You can do a normal cfloop from
 and to and use the indexing of the array in this manner

 cfloop from=1 to=#ArratLen(myArray)# index=arrayCounter
   myArray[arrayCounter].images
 /cfloop


 Regards,
 Andrew Scott
 http://www.andyscott.id.au/



  -Original Message-
  From: Michael Grant [mailto:mgr...@modus.bz]
  Sent: Saturday, 18 September 2010 10:35 AM
  To: cf-talk
  Subject: Re: Looping through arrays with structures
 
 
  cfloop from=1 to=#arrayLen(firstArray)# index=x
 
  cfloop from=1 to=#arrayLen(firstArray[x].images.secondArray)#
  index=y
 
  cfoutput#firstArray[x].images.secondArray[y]#/cfoutput
 
  /cfloop
 
  /cfloop
 


 

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


Re: Removing new line from CSV?

2010-09-14 Thread Jacob Munson

In Windows a line feed is actually #chr(10)##chr(13)#.  However, if you
remove those you will probably remove ALL line feeds in your file instead of
just the double line feed that is causing you problems.  This can be tricky,
but you will probably want to look for #chr(10)##chr(13)##chr(10)##chr(13)#,
or something like that.  Line feeds can be a real pain in the butt because
different software will give you different line feed combinations.

Sent with my Android phone

On Sep 14, 2010 11:19 AM, Phillip Vector vec...@mostdeadlygame.com
wrote:

 I have the following data...

 bb0a0933-85d4-44be-a72c-25aa759c603f,3782049,DirectMail,63933-8188,The
 form ProgramForms has been rejected because of the following reason:
 bb0a0933-85d4-44be-a72c-25aa759c603f,3782049,DirectMail,63933-8188,The
 form (Application Form) has been rejected because of the following
 reason: 0002 -Missing proof of program participation
 1023 -SSN not provided
 70d4eeca-047d-42e5-8648-25abe1579c96,3784291,DirectMail,07055-2931,

 The issue I have is that on the second record (ID:
 bb0a0933-85d4-44be-a72c-25aa759c603f), they use 2 lines when there is
 more then one reason why the app was rejected. I suspect that they are
 using CTRL-Return or some such to put it in.

 The question is.. How do I remove it and make it one line again with a
 cfreplace command? I use commands like

 cfset newcsvfile = replace(newcsvfile, ',,', ',0,', ALL)

 to basically scrub the data. So how would I do it for a situation like
 this? When I try

 cfset newcsvfile = replace(csvfile, '#chr(13)#', '', ALL)

 It doesn't remove it..

 

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


Re: An instance of CF 7, CF 8, CF 9 on single pc

2010-09-14 Thread Jacob Munson

You will want to install CF9 first to make sure you get the most current
JVM.  Install the Multi-server version of CF.  In your new CF 9 Admin, add a
new CF9 instance in the Instance Manager.  Then install CF8 and CF7 as J2EE
EARs.  Finally, you can add the CF8/CF7 EARs as instances in your CF9
Instance Manager.  If you wish, you can add the instances to your web server
to avoid having to use the ported sites.

On Tue, Sep 14, 2010 at 11:22 AM, Don danfar...@hotmail.com wrote:


 What would be the best way to do this?



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


Re: coldfusion forums?

2010-09-14 Thread Jacob Munson


 A lot of people have unsubscribed from cf-talk because it got too
 'noisy'. I've unsubscribed a couple of times over the last half dozen
 years. It's manageable nowadays which is nice (but I suspect a lot of
 folks don't know it's gotten quieter and won't think of coming back).


This describes me perfectly.  I have not been on CF-Talk for the last few
years because I got tired of all the OT posts and crap.  But the other day I
was looking at the site and noticed that the volume is WAY down from where
it used to be.  And the topics seem a lot more CF relevant than they used to
be.  So I subscribed again.  :)


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


Re: Preserve HTML format when inserting into HTML

2010-09-11 Thread Jacob Munson

Well, that is what I thought was happening originally, but as I went through
all the different tests I finally figured out that the ecaping occurred when
you write the xml to a file.

Sent with my Android phone

On Sep 11, 2010 12:57 AM, Raymond Camden rcam...@gmail.com wrote:

 Btw - I have to say I was very confused initially because it sounded
 like you were saying the _original_ value was being escaped. Ie, you
 put S into X (x being an xml object, S being a string w/ html) and S
 changed, not X.

 Anyway - going to blog this up around noon.


 On Wed, Sep 8, 2010 at 8:40 PM, Raymond Camden rcam...@gmail.com wrote:
 Woot! Found it:

 http://www.mail-archive.com/cf-talk@houseoffusion.com/msg312892.html

 I have _never_ seen this in use, but it works perfectly:


 cfset s = font color=redbfoo/b/font
 cfxml variable=x
 root
 child name=one /
 /root
 /cfxml
 cfdump var=#x#
 cfset x.root.child[1].xmlCData =   s


 cfoutput
 #x.root.child[1].xmltext#
 p
 #s#
 /cfoutput

 cffile action=write file=#expandPath('foo.xml')#
output=#toString(x)#

 On Wed, Sep 8, 2010 at 8:38 PM, Raymond Camden rcam...@gmail.com wrote:
 I'm digging. This came up 3 years ago too:

 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:32864


 On Wed, Sep 8, 2010 at 4:54 PM, Jake Munson jmun...@idahopower.com
wrote:

 Ray,

 In addition to my previous email with proof of concept code, I am able
to reproduce my problem using your code below by adding this cffile tag to
the end of your code:
 cffile action=write file=#expandPath('foo.xml')#
output=#toString(x)#

Weird. I can't reproduce this:


cfset s = font color=redbfoo/b/font
cfxml variable=x
root
child name=one /
/root
/cfxml

cfset x.root.child[1].xmlText = s


cfoutput
#x.root.child[1].xmltext#
p
#s#
/cfoutput

The value is NOT escaped in the XML, nor in the original variable.







 

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


Re: Marilynn Monroe (not really - cfinput but no one answered before)

2010-09-11 Thread Jacob Munson

I believe this was an intentional change Adobe made with json.  Check the
release notes to be sure, but I know a lot of people had to make json
related code changes.

Sent with my Android phone

On Sep 11, 2010 6:36 PM, Ketan Jetty kje...@yahoo.com wrote:

 for returnformat=JSON, CF8 returns escaped JSON string whereas CF9
returns JSON object. The following CFFUNCTION format worked fine for me.

 cffunction name=getJsonData access=remote returntype=string
returnformat=JSON

 Ketan Jetty
 http://KetanJetty.com


 

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


Re: Quick Books Import

2007-04-04 Thread Jacob Munson
I can't really answer your question, but I do know that Quicken can import a
correctly formatted file.  I used to use a tool on my Palm that would dump
out a plain text file, and then Quicken could import it.  Do some googling,
I'll bet there's a way to do it.

On 4/4/07, Dan Vega [EMAIL PROTECTED] wrote:

 I am looking for someone who is familiar with quick books. I have a
 customer
 who has about 30 online orders per day. The orders are not tied into quick
 books in any way so at the end of each day the customer has to go back and
 manually insert each order. I have never used Quick Books and I am not
 sure
 where to begin. Does anyone know of a batch import through xml or csv? If
 so
 I think it would be really easy for me to provide the customer a download
 of
 these orders in one of those formats so they can enter them much quicker.
 Any help is grateful.

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


 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: Active X controls close browser

2007-04-02 Thread Jacob Munson
This is not CF, but regular DHTML.  I used this in a site that just went
live today:

http://www.dynamicdrive.com/dynamicindex1/ddtabmenu.htm

On 4/2/07, Tom Garber [EMAIL PROTECTED] wrote:

 We have a site that uses ActiveX controls to create tabs for navigation
 purposes.  About a year ago Microsoft made a change in IE 6 that causes IE
 to now close when this site is accessed.  We've been able to get by using
 Windows Explorer to open the site but would like to rewrite things a bit to
 remove the Active X controls altogether so we could use IE again.  The
 application uses MX 7.  We've used the CFFORMGROUP tag but have run into a
 few snags with it.  Anyone have any experience creating tabs in CF? If so,
 how did you create them?

 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: Logout vs just closing the browser

2007-04-02 Thread Jacob Munson
I believe you could use JavaScript's onUnload function to kick of an Ajax
call.  That should do the trick, but you'd want to do the ajax call
synchronously so that the user doesn't get a pause as they go away (this can
also cause errors in some browsers if you do it asynchronously).

On 4/2/07, Les Mizzell [EMAIL PROTECTED] wrote:

 Ok - have an app with a logout page that destroys all client/session
 variables. No problem. Works great.

 BUT - what if somebody doesn't log out and just closes the browser? Is
 there any way to destroy everything when that happens?

 I've not found a definitive source of info on this anywhere yet still
 researching...

 Is there a good reference anywhere.


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: Outputting 4 columns in Flash Forms

2007-03-29 Thread Jacob Munson
Someone might correct me, but I don't know of anyway to do that in
Flash forms.  Other than getting the data formatted correctly in your
query, of course.

On 3/29/07, Bruce Sorge [EMAIL PROTECTED] wrote:
 In regular HTML forms, I can do this to limit my output row to four columns:

 table width=100%
 cfset variables.newrow = false
 cfoutput query=listEmailGroupsRet
 cfif variables.newrow IS true
 tr
 /cfif
 td
 input type=checkbox name=EmailGroup value=#GroupID#
 cfif Highlight EQ 1
 font color=##DDb#GroupName#/b/font
 cfelse
 #GroupName#
 /cfif
 /td
 cfif listEmailGroupsRet.currentRow MOD 4 EQ 0
  /tr
  cfset variables.newrow = true
 cfelse
 cfset variables.newrow = false
 /cfif
 /cfoutput
   /tr
 /table

 Is there  a way to do this in Flash Forms? I know that you can use tables
 but all I want is to have only four columns and however many rows output
 that are necessary. I am starting to not like Flash Forms and cannot wait
 until my Flex knowledge is better.

 Thanks,

 --
 Bruce Sorge

 I'm a mawg: half man, half dog. I'm my own best friend!


 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: regex question in rereplace

2007-03-28 Thread Jacob Munson
This should work:
reReplace(myVar,([;/]), \1 ,all)

It uses a technique called back references, which allows you to use
the strings that match the regex in your replacement string (that's
what the \1 is).

On 3/28/07, Scott Stewart [EMAIL PROTECTED] wrote:
 I've got a variable which is a document descriptor (literally, journal, book
 etc.) in some cases it can contain a slash (/) or a semicolon.

 What I need to do within the REReplace is find every instance of a slash or
 a semicolon and put a space before it and a space after it..

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: Validation Question

2007-03-27 Thread Jacob Munson
I think you have a good plan here, for the most part, but you are
going to run into performance issues.  I have used ColdFusion to do
batch processing of large text files in the past, and it is NOT
efficient, in fact I would say that it is very inefficient at this
task.  I am not saying that CF is inefficient overall, just with large
text files.  I have bugged Macromedia about it before, we'll see if
Adobe addresses this issue in future releases.

That said, there are Java methods of doing this that are much quicker
than plain CF.  Do some googling for something like java file
processing coldfusion and you'll probably find some good articles.  I
think Ben Nadel has some good blog entries on this subject as well
(bennadel.com).

As far as validation, regular expressions are your friend.  Your
example below would work, but regular expressions will do it with less
code (except for the second method, maybe), and they are very
powerful.  If you need any help with regex, just ask here and you'll
quickly get the answers you need.  :)

On 3/27/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 I have a project that requires a fair amount of validation.  I will be
 process several dozen text files each night.  Each text file contains
 8500 records.  Each record contains 35 fields.  Each field requires at
 least some basic validation, other fields the validation gets more
 involved.  A little math, 8500 records times 35 fields, at a bare
 minimum that's nearly 300,000 validation processes per file. The reality
 is probably 3- 4 times that number.

 I have a couple of questions. Some of the required validation can be
 re-used within the project so I am considering writing a cfc for each
 field.  That would be 35 cfcs with two to several validations  per cfc
 based on the requirements for the field in question.  If I have a master
 validation cfc that calls the other 35 cfcs and stores them in memory
 will that reduce the overhead of calling each one 8500 times per file?
 Is there a better way to handle this?


 When validating data are there best practices, or preferred methods?

 For instance.
 I have to validate that a variable (record_id) is one of these (1,2,4,
 A, B,C) six value. This appears to be rather basic and I've written the
 validation two ways.  Is one better than the other? Or is there a better
 method for handling a validation like this?

 cfset record_id = 2
 cfset record_id_values = 1,2,4,A,B,C

 cfif record_id is '1' or
 record_id is '2' or
 record_id is '4' or
 record_id is 'A' or
 record_id is 'B' or
 record_id is 'C'

 record_id is an accepted value
 cfelse
 record_id is not an accepted value
 /cfif

 ***

 cfif listContains(record_id_values, record_id)
 record_id is an accepted value
 cfelse
 record_id is not an accepted value
 /cfif

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273857
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 CS3

2007-03-27 Thread Jacob Munson
I have noticed some of the same issues that Chris mentioned.  Eclipse,
at this point anyway, seems to be a bit over aggressive at helping
you with project integration and caching.  For example, the other day
one of our network shares went down, and one of my projects lives
there.  I kept getting an error as Eclipse tried to resync that
project (which I wasn't working on, btw).  I thought, I'll just close
the project, I don't need it right now anyway, but Eclipse wouldn't
let me close it because the drive was inaccessible.  I don't remember
the exact error messages, but this is an area that I think needs some
attention in Eclipse.

That said, I still use CFEclipse exclusively, and love it.  All my
coworkers use DreamWeaver, but the killer feature that is missing
compared to Eclipse is the local history, IMO.  If dreamweaver ever
adds that, CFEclipse will be in trouble.  ;)  If you don't know what
I'm talking about, at anypoint in your development with Eclipse, you
can bring up previous versions of a file, and selectively merge
changes (or swap out the whole tamale if you want).  I can't live
without that, it's saved my bacon more times than I can count.  It's
not intended to be a replacement for source management, but it's very
handy as a quick and simple tool.

On 3/27/07, Tom Chiverton [EMAIL PROTECTED] wrote:
 On Tuesday 27 Mar 2007, Peterson, Chris wrote:
  Tom,
 
  Lets say I have a project created for my customer.  Now I want to create
  a 'folder' underneath it called 'Development Server', and I click on
  'Link to folder in the file system' and I point it at a UNC path or a
  local mapped drive.

 Mapped drive to a remote share, or mapped drive to some other local directory
 ('subst') ?
 I have the same problem when I work over our VPN (using a CIFS share rather
 than the local filesystem).

  Now I wait for almost 15 minutes while Eclipse
  scans each file inside this path and does something with it (refreshing
  workspace).

 You can turn off the 'keep sync'ed' option.

  back to Dreamweaver right now, because dreamweaver refreshes file system
  changes instantly and browses the files without any lag.

 I don't see the problem occurring when I use linked folders on the local
 system however.

 --
 Tom Chiverton
 Helping to economically innovate robust convergence
 on: http://thefalken.livejournal.com

 

 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 
 St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

 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 8008.

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


 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: Dreamweaver CS3

2007-03-27 Thread Jacob Munson
I don't believe the final release of DW CS3 is out yet.

On 3/27/07, Jake Churchill [EMAIL PROTECTED] wrote:
 I'm looking for a trial download of DW CS3.  Is it not yet available?

 Jake Churchill
 CF Webtools
 11204 Davenport, Ste. 200b
 Omaha, NE  68154
 http://www.cfwebtools.com
 402-408-3733 x103



 Tom Chiverton wrote:
  On Tuesday 27 Mar 2007, Peterson, Chris wrote:
 
  Tom,
 
  Lets say I have a project created for my customer.  Now I want to create
  a 'folder' underneath it called 'Development Server', and I click on
  'Link to folder in the file system' and I point it at a UNC path or a
  local mapped drive.
 
 
  Mapped drive to a remote share, or mapped drive to some other local 
  directory
  ('subst') ?
  I have the same problem when I work over our VPN (using a CIFS share rather
  than the local filesystem).
 
 
  Now I wait for almost 15 minutes while Eclipse
  scans each file inside this path and does something with it (refreshing
  workspace).
 
 
  You can turn off the 'keep sync'ed' option.
 
 
  back to Dreamweaver right now, because dreamweaver refreshes file system
  changes instantly and browses the files without any lag.
 
 
  I don't see the problem occurring when I use linked folders on the local
  system however.
 
 


 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: Validation Question

2007-03-27 Thread Jacob Munson
 I remember Barney saying a while back, ColdFusion wasn't built to be fast,
 it was built to be just fast enough.

Taking a few minutes to process a batch compared to a few seconds in
Perl is not fast enough, in my opinion.  And those numbers balloon up
if you're dealing with very large files of the type mentioned in the
original post.  Again, I'm not bashing CF by saying that it is slow
overall, I think the contrary is definitely true.  When you are
talking about http requests, database operations, form processing,
etc., CF is blazing fast.  But when it comes to large text files, CF
leaves a lot to be desired.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


Re: Browser default home page

2007-03-27 Thread Jacob Munson
I don't think that's possible, for security reasons.  Can you imagine
if all the miscreant web masters out there were always
viewing/updating your browser's home page?  Not to mention the virus
problems it would cause...

On 3/27/07, ch g [EMAIL PROTECTED] wrote:
 Hi all,

 Any idea how to get browser default home page in coldfusion?

 Thanks

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: Validation Question

2007-03-27 Thread Jacob Munson
 CF is an application server. It's designed to do some things very well, and
 other things not so well. Perl is a general-purpose programming language.
 It's going to be better for some things than CF, by a long shot. It's not as
 good as CF for what CF does best, or else we'd be writing our web apps in
 Perl.

Agreed.  However, Perl was one of the first popular web scripting
languages, is still used today for a lot of sites, and there are still
a lot of Perl web developers out there.  So I think Perl vs. CF is a
fair comparison.  I know that CF smokes Perl in a lot of respects, but
since CF runs on top of Java, and Java can handle large text files
just fine (from what I've heard), it's seems odd to me that CF drops
this ball.

I'll reiterate, I'm not bashing CF, I love it as much as the next guy.
 I'm just offering my experience, and my opinion on this subject.  And
yes, I have done the go/wish thing for this gripe.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: Dreamweaver CS3

2007-03-27 Thread Jacob Munson
Yeah, Dreamweaver is an excellent tool for designers, and some coders
that like it.  I prefer the power and features available with CFE
myself, but a lot of guys grew up with Dreamweaver, and it's going to
be near impossible to pry it out of their hands.  Personally I like
Sean Corfield's approach, I use CF for code, and DW for design.
Unfortunately, a lot of people can't get past the two tools idea...

On 3/27/07, Mark Drew [EMAIL PROTECTED] wrote:
 Also, to quote:

 Support for leading technologies
 Take advantage of support for leading web development technologies,
 including HTML, XHTML, CSS, XML, JavaScript, Ajax, PHP, Adobe(r)
 ColdFusion(r), ASP, ASP.NET, and JSP.

 Nice to see that PHP is put before CF... *NOW* I know where your
 loyaties lie Adobe *shakes fist*

 You Maniacs! Ah, damn you! God damn you all to hell! * Homer Simpson
 - pretending to be Charlton Heston


 On 27 Mar 2007, at 16:30, Jacob Munson wrote:

If dreamweaver ever
  adds that, CFEclipse will be in trouble.  ;)


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: Browser default home page

2007-03-27 Thread Jacob Munson
 I just want to redirect to their default home page once they are done with my 
 site

Can you elaborate on that?  I don't understand what you are trying to
accomplish.

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Browser default home page

2007-03-27 Thread Jacob Munson
Hmm, learn something new every day.  :)  I agree with Dana though,
people usually know what they are doing, and redirecting them is going
to cause confusion.

On 3/27/07, Jochem van Dieten [EMAIL PROTECTED] wrote:
 ch g wrote:
 
  I just want to redirect to their default home page once they are done with 
  my site

 For IE redirect to about:home. For Firefox you need use the javascript
 window.home() function.

 Jochem

 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


Re: Site Check please: www.CodeFetcher.com

2007-03-27 Thread Jacob Munson
From a usability standpoint, I'd change the results that show up in
the 2nd column.  I might be stupid, but it took me a while to figure
out that I could click on those plain text titles, I thought they were
just text, not links.  I kept clicking on the blue links under each
title, because I thought that was the link to see the result.

On 3/27/07, Robert Walters [EMAIL PROTECTED] wrote:
 Hello,

 Would love if many of you could test out an open source code site I just put 
 up recently.  www.CodeFetcher.com

 I used AJAX and CFC's to grab the content.

 ThanksRob Walters

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: New Features In Scorpio

2007-03-22 Thread Jacob Munson
 And I know that many loathe cfform because of the JavaScript it created
 way back when, but if you've not looked at it in a while, do so. It's not
 the same animal, and is far more usable and configurable than is used to be.

+1 for cfform.  I don't use it for everything, but it sure comes in
handy sometimes.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: You think you know OOP.. but you don't

2007-03-22 Thread Jacob Munson
 If you're trying to learn CFML, and don't know OOP, and haven't learned any
 other languages, that can be tough. But these aren't just crazy buzzwords,
 they're useful descriptions for how to solve problems.

I agree with most of your post, Dave.  But one thing that bothers me
about the 100 CF frameworks out there is that often times these guys
make up their own dialect instead of trying to use existing terms that
mean the same thing.  I'm not a frameworks expert, but from the
reading I've done, Fusebox and Model Glue each introduce new terms for
concepts that have been around for a long time (for example, fuse
and all of its variants).  I really wish people would stop trying to
be cool, and just use existing standard language.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Very weird Safari issue

2007-03-22 Thread Jacob Munson
Short and sweet, here's what happens:

1.  User double clicks a file from a select box (files are listed from
a directory on the server)
2.  JavaScript code does a window.open to pop up openFile.cfm with
bunch of URL vars
3.  openFile.cfm discovers the MIME type of the selected file and
sends it to the browser using cfcontent
4.  If the file was a Word doc, Safari downloads the file, but names
it openFile.cfm instead of whatever.doc
5.  If you rename openFile.cfm to whatever.doc, it is indeed the
desired Word doc

If you open any other file type with Safari, you get the file with the
correct file name.  If you open a Word doc in IE or Firefox, it works
fine.

What the HECK?

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: You think you know OOP.. but you don't

2007-03-22 Thread Jacob Munson
 Well, actually, this isn't entirely true. The idea of a controller
 predates MVC, and was commonly used in CGI programs written in procedural
 languages. For example, one of the first primitive web applications I wrote
 was in Visual Basic (!), and it was modelled after the example VB code
 provided with WebSite, an early Windows web server. It consisted of a main
 subroutine which acted as a controller, using URL parameters to invoke other
 specific subroutines, which were part of the same compiled executable.

Thanks Dave, that is what I meant.  If you look at the Java world,
I've heard there truly are hundreds of frameworks.  And from what
you've said, the idea of a controller is not new to Fusebox nor
ColdFusion.

I don't want to paint myself as a frameworks basher, if people find
them valuable, more power to them.  I just think the frameworks
authors could put more effort into making their framework
approachable, and one way to do that is to use common langauge that
everybody understands.  It's already asking a lot for someone to learn
a new XML dialect, and how to properly configure/use said framework.
But throwing new terms into the mix seems unnecessary, imo.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Very weird Safari issue

2007-03-22 Thread Jacob Munson
I am setting the mime type with cfcontent, but I am not using
cfheader.  I'll try that tomorrow, thanks for the tip.

On 3/22/07, Heald, Timothy J [EMAIL PROTECTED] wrote:
 You are using cfcontent and cfheader to set the mime type and file name?

 -Original Message-
 From: Jacob Munson [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 22, 2007 5:18 PM
 To: CF-Talk
 Subject: Very weird Safari issue

 Short and sweet, here's what happens:

 1.  User double clicks a file from a select box (files are listed from
 a directory on the server)
 2.  JavaScript code does a window.open to pop up openFile.cfm with
 bunch of URL vars
 3.  openFile.cfm discovers the MIME type of the selected file and
 sends it to the browser using cfcontent
 4.  If the file was a Word doc, Safari downloads the file, but names
 it openFile.cfm instead of whatever.doc
 5.  If you rename openFile.cfm to whatever.doc, it is indeed the
 desired Word doc

 If you open any other file type with Safari, you get the file with the
 correct file name.  If you open a Word doc in IE or Firefox, it works
 fine.

 What the HECK?

 --
 My Sites:
 http://www.techfeed.net/blog/
 http://www.cfquickdocs.com/
 http://cfformprotect.riaforge.org/



 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Hah? BlogCFC / BlogCFM

2007-03-22 Thread Jacob Munson
If I remember right, Rick took Ray's code base and forked (with Ray's
permission).  He does his own additions/changes to BlogCFM and Ray has
since made a lot of additions/changes to BlogCFC.

On 3/22/07, Dwayne Cole [EMAIL PROTECTED] wrote:
 What's going on here.

 BlogCFC
 Author: Raymond Camden
 Last Updated: March 9
 A blogging application.


 BlogCFM
 Author: Rick Root
 Last Updated: November 5, 2006
 Coldfusion Blog Application

 But from my understanding BlogCFM was based on BlogCFC.  Does anyone know the 
 difference?

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: Eclipse/CF Eclipse environment questions

2007-03-20 Thread Jacob Munson
You're right, as long as a person can install into their My Documents
folder, they can do whatever they want, but this is the same with
anything, not just Eclipse.  If that is going to stop them from
allowing Eclipse, then they can't allow ANYTHING, because you can
always get around strict policies like this.

As far as the 3rd question, I'm pretty sure there aren't any other
requirements besides Java.

On 3/20/07, Heald, Timothy J [EMAIL PROTECTED] wrote:
 We are attempting to get approval to use Eclipse, CF Eclipse and Aptana
 here.  Currently we are not permitted and are all either using Homesite
 or (blech) Dreamweaver).



 I was sent a list of questions, and have been able to answer most of
 them, but I'm unable to find anything out about some of them.



 If you know anything about these issues, I would really appreciate the
 help.  Of course it's all due by tomorrow morning, in order to make it
 in front of our approval board.



 1.   Can you disable the user's ability to download and install
 plug-ins outside of the baseline that we install and approve?



 Obviously with what we do here IT security is a main concern.  The
 individual users have no rights to install anything at all.  I know we
 can block most auto updates at the router by blocking ports, but what
 about manual updates?



 2.   Is there a way to prevent users from updating Eclipse and the
 SDK?



 I was unable to think of a way to stop someone from even installing it,
 I mean so long as you have the correct JDK (1.4) on your machine you
 could always just unzip it to your My Documents and run it from there
 right?



 3.   Is there any other necessary Sun or other third party things
 that need to be installed in order to use Eclipse?



 I don't think there are, but I'd hate to miss something and have to go
 through this process all over again.



 Again any help would really be appreciated.



 Thanks,



 Tim Heald







 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: @@identity

2007-03-19 Thread Jacob Munson
Not that I know of, unless you use an external identity table for your
identities, as some folks like to do.  Of course, you could do the
insert leaving the path blank, and then immediately do an update using
the newly created id.

By the way, @@identity is not safe, you should use scope_identity()
instead.  In some cases, @@identity will return the wrong identity
value.

On 3/19/07, Mik Muller [EMAIL PROTECTED] wrote:
 For years I've been using SELECT @@IDENTITY AS ID in my code to get the 
 record ID for a newly inserted record. And now I'm wondering... would this, 
 or something similar, work inside an insert statement?

 I'm working on some insert code right now and one of the fields is a notes 
 field that I'm storing some HTML, including (possibly) a path to an image 
 that would be based on the record ID, ie; /path/to/###/record/image.jpg

 I know it's a bit redundant, and that I could make an image field in the 
 table and automate the appearance of the image through code, but I was 
 wondering if there was anything in the SQL insert statement that would be 
 aware of the impending unique ID that I could use.

 Mik




 
 Michael Muller
 Admin, MontagueMA.net Website
 work (413) 863-0030
 cell (413) 320-5336
 skype: michaelBmuller
 http://www.MontagueMA.net

 Eschew Obfuscation




 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273014
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 CFSELECT to show results

2007-03-15 Thread Jacob Munson
Do you want these results to show up on the same page as the select
box?  Or can it go to another results page?

On 3/15/07, mackie louis [EMAIL PROTECTED] wrote:
 Hey,
 I have a drop down list with given options and  i have to make a search page 
 such that when one of these options are selected, for that value database 
 search happens and the results are displayed specific to that value.
 Does it make sense.?

 Same thing i have to do for adding data.

 please tell me the code that i have to use

 Thanx
 Mac

 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Another captcha alternative

2007-03-13 Thread Jacob Munson
I think we should /not/ ask our users to prove they are human, but
instead we should ask the spammers to prove they aren't a bot.  Check
out some of Ben Nadel's blog posts on this, or check out my open
source project CFFormProtect (on riaforge).  The user just fills out
the form with nothing extra to prove, but the spammer gets blocked.
And I've had near 100% accuracy with it so far.

On 3/13/07, James Holmes [EMAIL PROTECTED] wrote:
 Apologies if this one has been posted before, but I really liked this
 new look captcha service Microsoft is playing with:

 http://research.microsoft.com/asirra/

 Now I have to integrate this into BlogCFC...

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

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/

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


Re: ColdFire RC1 Released

2007-03-13 Thread Jacob Munson
It works for me, using a local CF install.

I can't wait to see the variables scopes, then it will be truly
awesome.  Only problem is when you need to test in IE, you'd have to
change the cfadmin setting to see the debugging again...but I guess
that's the nature of this beast.

On 3/13/07, Cutter (CFRelated) [EMAIL PROTECTED] wrote:
 Yeah Ray, saw the same thing here as well.

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer
 _
 http://blog.cutterscrossing.com

 Raymond Camden wrote:
  Can you file a bug at the site? That is truly odd. All the template
  does is stuff info in the header.
 
  On 3/13/07, Paul Vernon [EMAIL PROTECTED] wrote:
 
 Grab the bits from http://coldfire.riaforge.org
 
 Enjoy the frosty goodness.
 
 It seems to stop my development sites from displaying at all...
 
 I just get the page I am on when I enter a URL into the browser rather than
 the page I want ie the one I just typed in... The debug info returned looks
 to be correct, I just can't see my sites!
 
 If I switch the template to either of the standard CF templates, all is fine
 :)
 
 Paul
 
 
 
 
 
 
 

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Jacob Munson
Maybe Vista replaces her changed file with the original on reboot?
I've seen that behavior before in Windows.

On 3/7/07, Will Tomlinson [EMAIL PROTECTED] wrote:
 Dave,

 She says this:

 the first time i attempted to edit the file, vista yelled at me and said the 
 file was read only and would not let me save it.  more than one way to skin a 
 catmade a new file, saved it as config1.nt, deleted config.nt after some 
 trouble-it finally let me delete (i think i had to move it to a different 
 directory then delete it). then moved the other one over and renamed.  BIG 
 pain.  still yells at me TOO MANY FILES OPEN was wondering if vista looked 
 at a different file in addition to the config.nt or config.sys

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/

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


Re: File Size

2007-03-07 Thread Jacob Munson
The limitation is the ram on the server.  The users web browser just
streams the file like any normal file upload/download, but the server
needs to have enough free ram to handle the file size.

On 3/7/07, Mik Muller [EMAIL PROTECTED] wrote:
 I've found that if you tweak CFAdmin you can get the max file size up around 
 800mb before the server coughs up a hairball. Untweaked I couldn't get 
 anything higher than 450mb on my box. This is under IIS.

 BTW, IIS has a 2gb http download limit as well. Not sure of Apache's limit.

 Generally, if you're dealing with very large file sizes go with FTP. It's a 
 major pain, but that's the way it is.

 I've put in a feature request to Adobe for better large file handling, like a 
 new cfupload tag that kicks off a browse/put session somehow.

 Mik


 At 03:42 PM 3/7/2007, you wrote:
 Hi all,
 
 Seem to remember reading somewhere that there is a maximum file size for 
 file uploads via a form for either IE or coldfusion. Does anyone know the 
 largest doc that can be uploaded via a standard form?
 Thanks,
 
 R
 
 

 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

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


SQL Server DSN, text data type, CLOB is required?

2007-03-07 Thread Jacob Munson
A co-worker of mine just told me that in order to use the text data
type in SQL Server, you have to enable CLOB and BLOB in the data
source in CFAdmin.  Is this true?  I need to use the text data type
because my users potentially could enter a large amount of text (
8000 chars).

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

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


Re: File Size

2007-03-07 Thread Jacob Munson
 Really? I thought it buffered to file.  If not We should definitely ask adobe
 to change this behavior (or make it configurable) to stream uploads over
 x bytes (or all of them) to a temp file rather than buffer it up in memory to
 protect from running out of memory...

http://www.coldfusioncookbook.com/entry/106/Does-CFFILE-have-a-file-size-limit?

I wrote that question, but it was approved by Ray Camden, and since
he's a ColdFusion God it must true.  :)

I think I heard somewhere that you can get around this by using Java's
file functions, but I'm not sure about that.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

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


Re: File Size

2007-03-07 Thread Jacob Munson
 http://www.coldfusioncookbook.com/entry/106/Does-CFFILE-have-a-file-size-limit?

Actually, I was just reading through the comments on that entry, and
Charlie Arehart claims that ColdFusion does indeed buffer to a temp
file, and the file size limit I was referring to is when you do cffile
action=read.  So I guess the answer is free hard drive space
(assuming the browser doesn't timeout).  :)

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

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


Re: SQL Server DSN, text data type, CLOB is required?

2007-03-07 Thread Jacob Munson
 Long Text Buffer - The default buffer size, used if Enable Long Text
 Retrieval(CLOB) is not selected. The default value is 64000 bytes.

Oh, 64,000 chars should be plenty.  Thanks guys.

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

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


Re: GotCFM.Com Status Report

2007-03-05 Thread Jacob Munson
I just timed it, and the list showed up immediately, but the page was
still loading.  Full load time was 15 seconds.  Not sure why it's so
slow for you.

On 3/4/07, Adrian Wagner [EMAIL PROTECTED] wrote:
 Am at work - so the line is certainly not an issue (I also have no
 problems with other websites).

  [EMAIL PROTECTED] 5/03/2007 12:43:21 pm 
 What kind of connection are you on? I just loaded the page and got it
 all in less than 6 seconds. It's only 311,850 bytes.

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

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


Send PDF to printer

2007-03-05 Thread Jacob Munson
This seems simple, but I'm not sure if it's possible.  I'm building
some forms that have a print option.  I'm using CFDocument to dump the
contents to PDF, and then the user can print from there.  Of course,
now they are asking if it's possible to send the PDF directly to their
browser's print dialog, so they don't have to click print.  I could do
this easily if it was just HTML, but I want to keep it in the PDF so
the formatting comes out as expected on all the different printers.
Is there a way to send a PDF to their printer?  I don't need to skip
the print dialog, but I'm not sure how to do this with a generated
PDF.  I'm also open to using flashpaper, if that's easier.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

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


Re: Send PDF to printer

2007-03-05 Thread Jacob Munson
 No it is not possible, you will always go through the print dialog box. The
 only way around this would be a custom active object that would directly
 bypass the print options dialog, and then you would need to support all the
 different printers then.

I am not trying to bypass the print dialog, I WANT it to go the the
print dialog.  But they don't want to have to see the PDF and click
print, they'd rather just hit print from the web page and then it
brings up their print dialog.

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

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


Re: Send PDF to printer

2007-03-05 Thread Jacob Munson
 You are right in that it seems simple, unfortunately, it's not as simple
 as it should be *grin*. In my research into this problem, I found
 several methods that either used to work or couldn't be implemented when
 using CFDocument.

Just as I expected, then.

 The only way I found to automagically print PDF documents created with
 CFDocument with the level of control I needed was to create an
 application that automatically prints PDFs.  We created a Java App that
 would print PDFs whenever it was handed one.  Then we associated the App
 with a new extension ppdf (which stood for print PDF -- Clever eh?)
 Whenever I want an automagically printed document I rename the document
 to have the extension ppdf and it will print for our users.

I'd love to get my hands on your application.  :)


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

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


Re: xhtml file extension?

2007-03-01 Thread Jacob Munson
It's my understanding that you can use whatever file extension you
want in your pages.  You could use .will if that's your fancy,
provided the web server is configured to handle that the way you want.

On 3/1/07, Will Tomlinson [EMAIL PROTECTED] wrote:
 I've never seen anybody do this. Setup pages as .xhtml? Did I miss somethin?

 http://www.jonlauren.com/sweatshirts/wholesale/junior-sweatshirts.xhtml

 Will

 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

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


Re: CF Ajax Poll system

2007-02-19 Thread Jacob Munson
I don't know of any but I'd be interested, and would be willing to
help.  I'd suggest you look at using Rob Gonda's AjaxCFC, particularly
his new JQuery version (although I think it's still in beta).

On 2/19/07, Nick Tong - TalkWebSolutions.co.uk [EMAIL PROTECTED] wrote:
 Hi list,

 I'm thinking about creating a open source Ajax poll system and
 wondered if anyone else has anything already?  If not then i'll crack
 on.  What would people look for in it and would anyone want to get
 involved?

 Nick

 --
 Nick Tong

 web: http://talkwebsolutions.co.uk
 blog: http://succor.co.uk
 f..works:http://cfframeworks.com
 short urls:  http://wapurl.co.uk
 green link: http://wapurl.co.uk/?4Z2YDLX

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

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


Re: Remove datefield calendar icon

2007-02-18 Thread Jacob Munson
Nope, I think it's not possible.  I ended up not using Flash forms on
this application because I ran into the hard coded size limit (which
made me very angry, but I've since gotten over it).  :)

On 2/18/07, Rus Russell [EMAIL PROTECTED] wrote:
 Did you find an answer?

 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

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


Re: CFAkismet - anyone used it - how good is it?

2007-02-16 Thread Jacob Munson
I looked at CFAkismet and it seems pretty cool.  I can't say enough
good about Akismet, it's just plain awesome.  Personally, I use my own
project called CFFormProtect (http://cfformprotect.riaforge.org),
which also has Akismet integration.  The difference my project offers
is that it does a few other tests as well, to validate the message
before it is posted.  Things like checking of the user moved their
mouse, if they typed on their keyboard, and a couple of others.  I
have had a minor amount of spam comments get captured by my other
tests, where Akismet didn't flag it as spam.  But those are few and
far between.

Anyway, above all, check out CFAkismet, CFFormProtect, or write your
own Akismet interface (it's not very hard).  The big draw for me with
all of these options is that your users don't have to do anything
additional to 'prove' they're human when they submit your forms.  With
things like Akismet and CFFormProtect, the burden of proof is placed
on the spammer, to demonstrate that they aren't a spam bot.  And they
usually aren't able to do that.  This also removes the problems that
CAPTCHA presents for accessibility.

On 2/16/07, Mike Kear [EMAIL PROTECTED] wrote:
 Spam bots are starting to annoy me.  They're getting to the point
 where they're like flies - bloody persistent and while hot stopping my
 activity, they're taking up too much of my time.   I've been watching
 the discussion here and trying some of the things discussed, but on
 another list unrelated to coldfusion, someone bragged that since using
 AKismet:

 [quote]
 I have yet to have legitimate spam hit my site (and have had to rescue
 only one false positive), I delete two to five spam emails a day (and
 rescue about one false positive a month), and have never had a virus.
 That seems like a fine ration to me.
 [/quote]

 So that got my attention, and I started looking into it.  And i found
 there's a CFC available called CFAkismet.

 So i wondered if anyone had used it and had any kind of success with it?


 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

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

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


Not a bug?

2007-02-15 Thread Jacob Munson
I ran across what I thought was a bug in my code, but it works.
cffile
  action=readBinary
  file=#expandPath(projFiles/#url.jobNum#/#url.fileToOpen#)#
  variable=thisFile

You'll notice that in the file attribute I've got another quoted value
within the main quotes.  When I saw this I thought it was a bug, but
then I remembered that the page hasn't caused me problems before.  So
I tried to run it and sure enough, it works.  In the past I've always
used single quotes for the inner value where necessary, so I'm
surprised this works.  I could swear that I've had syntax errors from
this before...

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Not a bug?

2007-02-15 Thread Jacob Munson
I suppose you're right.  It's probably an order of operation thing,
where the CF server compiles the variables from the inside out.  So
with this:
file=#expandPath(projFiles/#url.jobNum#/#url.fileToOpen#)#
it would compile in this order:
1. #url.jobNum#  #url.fileToOpen#
2. #expandPath(...)#
3. file=...

Interesting...well for my own sanity's sake I'll still try not to put
double quotes inside of double qoutes in the future.  :)

On 2/15/07, Cutter (CFRelated) [EMAIL PROTECTED] wrote:
 Could this be because the internal quotes are part of an evaluated
 parameter (i.e.: #expandPath(some#path#)#)?

 Cutter
 ___
 http://blog.cutterscrossing.com

 Jacob Munson wrote:
  I ran across what I thought was a bug in my code, but it works.
  cffile
action=readBinary
file=#expandPath(projFiles/#url.jobNum#/#url.fileToOpen#)#
variable=thisFile
 
  You'll notice that in the file attribute I've got another quoted value
  within the main quotes.  When I saw this I thought it was a bug, but
  then I remembered that the page hasn't caused me problems before.  So
  I tried to run it and sure enough, it works.  In the past I've always
  used single quotes for the inner value where necessary, so I'm
  surprised this works.  I could swear that I've had syntax errors from
  this before...
 

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Jacob Munson
Yup, sure enough, there's his email address in plain sight.

On 2/13/07, Dale Fraser [EMAIL PROTECTED] wrote:
 http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:50230

 5th Blue Line

 Regards
 Dale Fraser


 http://dale.fraser.id.au/blog/


 -Original Message-
 From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 14 February 2007 12:38 PM
 To: CF-Talk
 Subject: RE: Why is House Of Fusion posting email addresses?

 I haven't seen email addresses shown in the archives in a looong time. Got a
 link?

 But honestly... If someone wants all of our email addresses... all they need
 to do is join the list and start collecting them. I belive Mike is working
 on that too though.

 -Original Message-
 From: Dale Fraser [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 13, 2007 7:51 PM
 To: CF-Talk
 Subject: Why is House Of Fusion posting email addresses?

 I've just joined this list, and noticed that on House Of Fusion all email
 addresses are published in the archives!



 Why? Why aren't they obfuscated or just not shown.



 Does anyone else think they should do this or move this list to Google
 Groups or similar where this is the norm. I mean really, I appreciate their
 efforts, but I get enough spam already, I don't need their help.



 Regards
 Dale Fraser



 http://dale.fraser.id.au/blog/














 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Jacob Munson
I also saw Peter Boughton's address lower on the page, and your
address in another location as well.

On 2/13/07, Dale Fraser [EMAIL PROTECTED] wrote:
 Michael,

 Like the list, very active, good job.

 http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:50230

 Not sure how my email is there, but perhaps it's some dumb setting on my
 end, but I don't think so.

 PS: Didn't mean to offend you on the Google front, just thinking out loud,
 as I said I like this list (expect for the email thingy) :)

 Regards
 Dale Fraser


 http://dale.fraser.id.au/blog/



 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 14 February 2007 11:51 AM
 To: CF-Talk
 Subject: Re: Why is House Of Fusion posting email addresses?

 I've just joined this list, and noticed that on House Of Fusion all email
 addresses are published in the archives!
 Um, I don't see this at all especially as I've written a lot of code to make
 sure this does not happen. Can you point to a particular place where you see
 everyones email addresses? If you are referring to the community section,
 those email addresses are posted by choice, not as a result of an email to
 the list.

 Does anyone else think they should do this or move this list to Google
 Groups or similar where this is the norm. I mean really, I appreciate their
 efforts, but I get enough spam already, I don't need their help.
 While there are always a few people in a forum this large that think that
 moving to yahoo, google, or the flavor of the month is a good idea, its a
 suggestion that really does not hold any water. I've been here before them.
 I'll be here after the 'next big thing' and there will be a strong
 ColdFusion community here.



 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: CFGrid data not showing

2007-02-09 Thread Jacob Munson
Couple of stabs in the dark.  You might change your query name and/or
cfgrid name.  Both of them are 'list', which might be causing a
conflict.  Second, you should name the form.  It's optional, but a lot
of JS stuff requires it (there's a lot of background JS in cfforms).
Third, there's an option in the CFAdmin for displaying flash form
errors, and it's off by default.  A lot of times you're getting an
error but you don't see it (it does show up in the logs, though).

On 2/9/07, Michael Beins [EMAIL PROTECTED] wrote:
 I have never used cfgrid before, and I have followed the  coldfusion mx 7 
 documentation examples, and I have read through some articles on the 
 macromedias developer community on using cfgrid but I am still having an 
 issue.  I'm query test data, and would like to have it editable in the 
 cfgrid.  The form gets generated but none of the data returned by the query 
 shows up in the grid.  Here is my code.


 cfquery datasource=test name=list
 select * from list
 /cfquery
 cfform format=flash
 cfgrid format=flash name=List query=list selectmode=edit
 /cfgrid
 /cfform

 If I do a cfdump of the query I see all the data it is just not showing up in 
 the grid.  I'm not sure if i'm missing something or what is going on.  If 
 anyone can help I would really appreciate it.

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: CFGrid data not showing

2007-02-09 Thread Jacob Munson
Oops, I don't know why I didn't see this before...you need to add your
columns using cfgridcolumn.
http://cfquickdocs.com/?getDoc=cfgridcolumn
They go between your cfgrid tags.

On 2/9/07, Michael Beins [EMAIL PROTECTED] wrote:
 Couple of stabs in the dark.  You might change your query name and/or
 cfgrid name.  Both of them are 'list', which might be causing a
 conflict.  Second, you should name the form.  It's optional, but a lot
 of JS stuff requires it (there's a lot of background JS in cfforms).
 Third, there's an option in the CFAdmin for displaying flash form
 errors, and it's off by default.  A lot of times you're getting an
 error but you don't see it (it does show up in the logs, though).
 
 On 2/9/07, Michael Beins [EMAIL PROTECTED] wrote:
 

 Here is the new code.

 cfquery datasource=test name=list
 select * from Email_list
 /cfquery
 cfform format=flash name=emaillist
 cfgrid format=flash name=email query=list selectmode=edit
 /cfgrid
 /cfform


 And I turned on the debugging setting, but no error is showing up.  A grid is 
 generated but there is no data in it.  It has colomun names and few empty 
 rows.

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: CFGrid data not showing

2007-02-09 Thread Jacob Munson
 Technically you don't you have to.  If you specify just the query attribute
 in the cfgrid tag, and no cfgridcolumns it defaults to creating a column for
 column in the result set of the query.

Hmm, didn't know that.  Still stabbing in the dark...maybe you need to
select real columns in your query, instead of 'select * from'?  If
that still doesn't work, you should look in your CF logs to see if you
find any errors.  I can't remember which log, but I've found flash
form errors in one log one day, and then in another one another day.

Kind of off topic, there are a lot of really cool examples and
articles on flash forms at this site:
http://www.asfusion.com/

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269301
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: Fusebox Web Site Design Contest Announced

2007-02-09 Thread Jacob Munson
 Since for the most part, we are programmers and not designers, we need your 
 help.

Wait a minute...I know you are a CF programmer too, Sandra, but I've
always thought you were the best designer in our community!  What do
you mean you're not a designer?  Or is that for the most part
comment meant to exclude you from the we?  ;)


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: IE7 vs IE6

2007-02-08 Thread Jacob Munson
I've found that these standalone IE installs don't do things the same
way that IE does.  I tested CFQuickDocs with a standalone IE 7 beta
installer (before it was released), and most of my JS stuff didn't
work.  But it works fine with the official IE 7.  Microsoft has also
noted this in a blog entry about running IE 6 with IE 7, where they
recommend using Virtual PC.  They even provide a VPC image that has
Win XP and IE 6 on it:
http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx

On 2/8/07, Claude Schneegans [EMAIL PROTECTED] wrote:
  However, you might find this helpful:

 It sure helps. Thanks

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Fusion Debug Released

2007-02-05 Thread Jacob Munson
Works for me, but this is 1 hour later.

Also, FD hasn't been released yet, it's still in beta.

On 2/5/07, Phillip Senn [EMAIL PROTECTED] wrote:
 Is anyone else having trouble with their website 
 http://www.fusion-reactor.com?
 I'm getting The page cannot be displayed.

 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268668
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: MySql going public (No more freebies)

2007-02-05 Thread Jacob Munson
 I am just kinda reading between the lines I suppose. May never happen at
 all, just thinking out loud and hoping it stays the way it is.

I agree with James, I'm going to be using PostgresSQL from now on
(especially after learning in a different thread that it's a lot
faster than MySQL).

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: ColdFusion on Apache is better than IIS?

2007-02-05 Thread Jacob Munson
 But you can't infer anything about IIS Vs. Apache because they changed the
 language that was used.

I feel like we're running in circles.  Sorry for yelling, but THEY
WEREN'T TRYING TO TEST IIS VS. APACHE!  There, now I feel better.  I
know I was interested in finding IIS vs. Apache when I started this
tread, and I think that is what keeps confusing people.  But this
benchmark is the closest I could find.  You're right, you can't tell
much about IIS vs. Apache from this benchmark, but it's still
interesting.  They were trying to test ASP/IIS/Windows vs.
PHP/Apache/Linux.  Why?  Probably because those two 'stacks' run most
of the websites out there.

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Fusion Debug Released

2007-02-05 Thread Jacob Munson
 Also, FD hasn't been released yet, it's still in beta.

 Uh, yes it has. I've been using it for awhile. They have a *new*
 version in beta, but that doesn't mean you can't purchase the
 current release version.

Sorry, I meant FD 2.0 hasn't been released yet.  :)


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: SOT: Take a minute to Digg this story about the Smith Project

2007-02-05 Thread Jacob Munson
Dugg.  :)

On 2/5/07, Andy Matthews [EMAIL PROTECTED] wrote:
 http://digg.com/programming/Open_source_ColdFusion_Server

 

 Andy Matthews
 Senior Coldfusion Developer

 Office:  877.707.5467 x747
 Direct:  615.627.9747
 Fax:  615.467.6249
 [EMAIL PROTECTED]
 www.dealerskins.com http://www.dealerskins.com/



 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268681
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: MySql going public (No more freebies)

2007-02-05 Thread Jacob Munson
 No, it simply doesn't mean that at all. It merely states that if you
 modify the open source software itself, and choose to release the
 modified version, it must also be open source.

I agree.  This was a misconception that Microsoft fostered with their
Linux is a virus comments (referencing the 'viral' nature of the
GPL).  The GPL states that if you modify the software that is
protected by the GPL (Linux, MySQL), you have to release your
modifications under the GPL.  But if you use Linux and/or MySQL for
commercial projects, you don't have to release your source.  That is
how Novell was able to have proprietary admin modules in SuSE
(although I think they've now voluntarily open sourced all their
stuff).

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Flash Forms Datagrid Issue

2007-02-05 Thread Jacob Munson
I'm not a flash grid expert, but I'm wondering if the form contents
are cached because you've specified a timeout in the cfform tag, I
haven't seen this behavior, but I'm might not be sending people back
to the form the same way you are.

On 2/5/07, Bruce Sorge [EMAIL PROTECTED] wrote:
 Hello,
 I have a Flash Form datagrid that I am using for editing some information.
 Everything works fine including the actual updating of the page, but the
 problem is, when I submit the changes, it goes back to the datagrid like I
 want it to and reloads. Problem is, it is still showing the old information.
 I have to go all the way through the site to get back to the datagrid so see
 the changed information. Is this a bug in FlashForms datagrids? I checked
 Google for it and could not find what I was looking for.

 --
 Bruce Sorge

 I'm a mawg: half man, half dog. I'm my own best friend!


 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Mac CF Doc widget?

2007-02-02 Thread Jacob Munson
 Any one know of a Mac widget for the CF docs? I just got my new
 powerbook and was looking for some CF love.

No, but I know this works in both Safari and Firefox on the Mac:
http://www.cfquickdocs.com/
and you can get the cfquickdocs Firefox search plugin to have quick
access, if that's your fancy.

(sorry for the blatant self promotion)  :)

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Number to word

2007-02-02 Thread Jacob Munson
 Does anyone know of a solution to convert a number into it's equivalent in 
 text?
 IE: 125 = one hundred twenty five.

I built this a few months ago, here's the source:
http://techfeed.net/numberAsString.txt
It results in one hundred twenty five dollars but that should be
easy to remove if you don't want it.  Also, it was the result of a
code challenge for our local CFUG, so it generates a random number and
then converts that to words.  But you should be able to turn it into a
CFC or whatever you need.  :)


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


ColdFusion on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
for static documents, a properly tuned IIS is best.. in many other
instances Apache works better

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268446
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 on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
 for static documents, a properly tuned IIS is best.. in many other
 instances Apache works better

Doh, sorry I accidentally hit send before I could explain myself!  The
above quote is from another mailing list I'm on (not CF related), so
I'm curious if anybody knows any evidence that proves/disproves this?
If that's true, then the assumption would be that ColdFusion is better
on Apache.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268448
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 on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
 I imagine something like thttpd would be even better than both :-)

 A properly tuned Apache should not be noticeably different in performance to a
 similarly tweaked with IIS.

Well, that's what everybody /says/ (I've been saying that lately too,
despite my previous bias against IIS) but I'm interested in finding
evidence, like published benchmarks or something like that.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268451
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 on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
On 2/2/07, Jacob Munson [EMAIL PROTECTED] wrote:
 Well, that's what everybody /says/ (I've been saying that lately too,
 despite my previous bias against IIS) but I'm interested in finding
 evidence, like published benchmarks or something like that.

Ok, I found something.  It's not exactly the kind of benchmark I was
hoping for but it's still interesting.  Here's a site in French that
did a benchmark comparing PHP/Linux/Apache to ASP/Win2k/IIS with
various databases in each configuration.

http://tinyurl.com/2s3sa9 (translated by Google)

For page compilation, the winner was PHP which was almost twice as fast as ASP.

For dynamic list results the winners were:
1. ASP + PostgreSQL
2. ASP + SQL Server 2000
3. ASP + MySQL

For dynamically posting a product:
1. PHP + PostgreSQL
2. ASP + PostgreSQL
3. ASP + SQL Server 2000

There are 2 things I learn from this.  First, the answer to my
original question?  It depends.  ASP seems to be pretty slow at page
compilation, but if the code doesn't change much it's as fast or
faster than PHP.  Second, I'm gonna get me some PostgreSQL!  :)

I don't know how much of this is related to IIS vs. Apache, but I
still find it fascinating.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Mac CF Doc widget?

2007-02-02 Thread Jacob Munson
 Or install the RDS plugin into Eclipse along with CFEclipse and get in-Eclipse
 docs for all the tags and functions.

Good point.  Or don't install RDS, and when you hit F1 on a tag, it
sends you to CFQuickDocs (as of CFE 1.3).  :)  (sorry, I can't help
myself)


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: SOT: Vista and CF

2007-02-02 Thread Jacob Munson
 So, has anyone here installed Vista and CF together?

First of all, I wouldn't call this 'seriously off topic'.  Your
question is about ColdFusion, which is a lot better than all of the
SQL questions we get.  :)

Anyway, head to Matt Woodward's blog and search for 'Vista'.  He went
through this a couple of weeks ago and talked about his findings with
a few blog posts:
http://www.mattwoodward.com/blog/


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: ColdFusion on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
 I think this is largely going to come down to the specific connector code.
 In my experience, I've had problems with the Apache connector that I haven't
 had with the IIS one, and vice-versa.

What problems did you have with the Apache connector?  I had problems
getting the dumb thing to work, but I put the blame on Adobe for that.
 I'm curious what your issues were.

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: ColdFusion on Apache is better than IIS?

2007-02-02 Thread Jacob Munson
 You can't extract anything from this because it's always compairing apples to
 oranges.

Wow, I almost don't know how to answer that.  Benchmarks /are/
comparing apples to oranges.  That's the whole point.  Does the apple
satisfy more people, or does the orange?  Go browse around Toms
Hardware for a while.  http://www.tomshardware.com/

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


  1   2   3   >