RE: (ot) Were to store admin passwords?

2012-02-06 Thread Jacob

On two encrypted USB keys.. both locked in a safe at two different locations

-Original Message-
From: Brook Davies [mailto:cft...@logiforms.com] 
Sent: Monday, February 06, 2012 7:12 AM
To: cf-talk
Subject: (ot) Were to store admin passwords?


This is a bit OT, but I'm starting to get paranoid. Where is the best place
to store server administrator account password and passwords for the
cfadministrator etc.

 

Brook






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


RE: (ot) SEO

2012-01-20 Thread Jacob

You may want to look into this.

cfheader statuscode=301 statustext=Moved permanently
cfheader name=Location value=http://www.domain.com/page.cfm;

If you are doing redirects, you want to use 301 to be search engine
friendly.

-Original Message-
From: Dave Hatz [mailto:daveh...@hatzventures.org] 
Sent: Friday, January 20, 2012 7:15 AM
To: cf-talk
Subject: (ot) SEO


Sorry about the OT here, but I know there are some really good SEO people
that are on this list.

I have a CFM page that processes some information, then redirects to another
CFM page.  I have a client that is telling me that my redirect inside my cfm
page is not going to work for SEO.

I have index.cfm, it parses the URL for some data, updates the DB, then I
use CFLOCATION to send the page to another CFM page.  Client says this will
not work for his SEO stuff.  

As you can tell, I am not well versed in SEO.  Can I get some verification
from others on this list that are well versed on SEO topics and let me know
if my client is right or wrong? 



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


RE: New computer set up

2012-01-18 Thread Jacob

Windows 7
Office 2010
Project 2010
Visio 2010
SQL Tools 2008
Firefox/Chrome/Opera/Safari
Various add-ons
Windows 2008 Admin Kit

Really about it. Most everything else (admin wise) I RDP.

-Original Message-
From: Steven Durette [mailto:sdure...@prodigy.net] 
Sent: Tuesday, January 17, 2012 9:58 PM
To: cf-talk
Subject: New computer set up


Hi all, 

Just wondering what all of the guru's here install when they get a new
laptop.

Its a windows based machine, but will probably be dual booting a form of
Linux before the end of the week.

Steve 



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


RE: New computer set up

2012-01-18 Thread Jacob

OH.. and I forgot... CFBuilder. DUH!

-Original Message-
From: Jacob [mailto:ja...@excaliburfilms.com] 
Sent: Wednesday, January 18, 2012 7:37 AM
To: cf-talk
Subject: RE: New computer set up


Windows 7
Office 2010
Project 2010
Visio 2010
SQL Tools 2008
Firefox/Chrome/Opera/Safari
Various add-ons
Windows 2008 Admin Kit

Really about it. Most everything else (admin wise) I RDP.

-Original Message-
From: Steven Durette [mailto:sdure...@prodigy.net] 
Sent: Tuesday, January 17, 2012 9:58 PM
To: cf-talk
Subject: New computer set up


Hi all, 

Just wondering what all of the guru's here install when they get a new
laptop.

Its a windows based machine, but will probably be dual booting a form of
Linux before the end of the week.

Steve 





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


RE: Cached query with execution time?

2011-12-20 Thread Jacob

Well.. what one of our former developers did was create this master query
and have quite a few sections of the site reference it. Of course this ran
for a couple years and we never noticed it until now when a few of the pages
starred to run slow.  Turned on debug output and boom.. there is was.  We
are working on the table to speed it up.  I always though the execution time
would be close to 0 with cached queries, but I understand now that with a
large query this may not be the case.

Thanks
Jacob


-Original Message-
From: Mike Chabot [mailto:mcha...@gmail.com] 
Sent: Monday, December 19, 2011 5:08 PM
To: cf-talk
Subject: Re: Cached query with execution time?


The 672ms time likely has something to do with the 100,000+ records in the
query being loaded into a variable. Otherwise you are correct in that the
times for small cached queries should be close to 0.

I think that query is too big to put into ColdFusion's cache. It might be
faster to execute every detailed query against the database. With the
correct database index, such as an index on release date, company and title,
you might be able to get that detailed query down to 30ms without the cache,
rivaling what you are seeing with the QoQ in CF. If that query is taking
more than four seconds it likely means that the database is doing a complete
table scan because it doesn't have a good index to use.

-Mike Chabot

On Mon, Dec 19, 2011 at 6:50 PM, Jacob ja...@excaliburfilms.com wrote:

 It this right?  I thought if your cached a query there would be no 
 execution time for the cached query.  If I do not cache it, it takes 
 about 4 seconds to run.  I am trying to speed up a section of our 
 site. This is a master query and I use query of a query to reference it.

 Master query

 DVDList (Datasource=xxx, Time=672ms, Records=116765, Cached Query)
   Select a.stock, a.title, a.company, , a.releasedate, b.starring
   From DVD a, DVDstarring b
   where a.stock = b.stock and releasedate  '12/19/2011'
   order by a.releasedate DESC, a.title

 Detailed query

 ListCompanyDVD (Datasource=, Time=31ms, Records=1519)
    SELECT stock, title, company, releasedate, starring
    FROM DVDList
    WHERE company=?

 Query Parameter Value(s) -
 Parameter #1(cf_sql_char) = VIV


 



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


RE: How many products in a specific category?

2011-12-20 Thread Jacob

Completely off the top of my head... not tested and I am not a SQL guru...

Select count(a.category) as Qty, a.category, b.ID
From products a, categories b
Where a.category = b.category
Group by a.category,  b.ID
Order by a.category

Basically you want to look at group function

-Original Message-
From: Dave Long [mailto:d...@northgoods.com] 
Sent: Tuesday, December 20, 2011 2:25 PM
To: cf-talk
Subject: How many products in a specific category?


Sorry to bother you folks with what is likely to be a very primitive problem
but I've poured over my copy of Mastering ColdFusion 5 with no success.

I have a list of categories which is queried from a table called Categories.
I have another table called products and it shares a common field named
Category with the Categories table. 
In the template that displays the list of categories, I would like to
include a parenthesis after the category name that displays the number of
products entered in the products table with that category name.

Here are the queries I'm using that aren't working. I can get the list of
categories but the product count stops after one category.

CFQUERY name=GetCategories dataSource=XYZ
SELECT Categories.ID, Categories.CATEGORY, Categories.RANK,
Categories.CATEGORY AS ID_Field
FROM Categories
ORDER BY Categories.RANK
/CFQUERY

CFQUERY name=GetProducts dataSource=XYZ
SELECT Products.ID, Products.CATEGORY
FROM Products
WHERE Products.CATEGORY = #GetCategories.Category#
/CFQUERY

cfinclude template=Header.htm
table align=center cellpadding=10 cellspacing=0 border=0tr td
align=centerh3Browse by Category:/h3/td/tr tr ul td
cfoutput query=GetCategories li a
href=productitems.cfm?RecordID=#ID_Field##Category#/a
(#GetProducts.RecordCount#)/li
br
/cfoutput
/td/ul/tr

br

/table
cfinclude template=Footer.htm

I'm using MySQL 3.51 and CF5.0


--
This message has been scanned for viruses and dangerous content by
MailScanner, and is believed to be clean.




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


Cached query with execution time?

2011-12-19 Thread Jacob

It this right?  I thought if your cached a query there would be no execution
time for the cached query.  If I do not cache it, it takes about 4 seconds
to run.  I am trying to speed up a section of our site. This is a master
query and I use query of a query to reference it.

Master query

DVDList (Datasource=xxx, Time=672ms, Records=116765, Cached Query) 
   Select a.stock, a.title, a.company, , a.releasedate, b.starring
   From DVD a, DVDstarring b
   where a.stock = b.stock and releasedate  '12/19/2011'
   order by a.releasedate DESC, a.title

Detailed query

ListCompanyDVD (Datasource=, Time=31ms, Records=1519)
SELECT stock, title, company, releasedate, starring
FROM DVDList
WHERE company=?

Query Parameter Value(s) -
Parameter #1(cf_sql_char) = VIV


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


RE: HTML5 Browser Support

2011-11-16 Thread Jacob

Looking at my analytics, IE6 has dropped off quite a bit over the past six
months. IE makes up 36% of our visitors. Of that, less than 1% from IE 6.

-Original Message-
From: Raymond Camden [mailto:raymondcam...@gmail.com] 
Sent: Wednesday, November 16, 2011 3:40 AM
To: cf-talk
Subject: Re: HTML5 Browser Support


While it is still a problem, I think it is improving rather quickly.
IE6 continues to decline,and the major browser vendors are spewing out
updates faster than ever, especially Chrome. Even MS followed up IE9 with
their IE10 beta rather quickly.


On Wed, Nov 16, 2011 at 5:03 AM, Steve 'Cutter' Blades
cold.fus...@cutterscrossing.com wrote:

 On 11/15/2011 4:03 PM, Gerald Guido wrote:
 Right now, according to my (extremely unscientific) estimates about 
 40-60% of the browser market supports at least some of the HTML5 spec 
 (Basically everything except IE8 and below).
 I was lucky enough to watch Douglas Crockford give a keynote at the 
 first Ext JS conference a few years back. He gave this awesome 
 presentation on the future of HTML and JS, then burst everyone's 
 bubble when he pointed out that it would be well over a decade before 
 developer's could truly take advantage of any of it (with the 
 exception of mobile). His reasoning was browser life cycle. Today 
 there are developers who must continue to support IE 6 because a 
 company (or govt) won't/can't move past it. How long do you think it 
 will take before 85%
 + are up to, or past, IE 10? (sad fact: users still use MS)

 Steve 'Cutter' Blades
 Adobe Community Professional
 Adobe Certified Expert
 Advanced Macromedia ColdFusion MX 7 Developer  
 http://cutterscrossing.com


 Co-Author Learning Ext JS 3.2 Packt Publishing 2010 
 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desk
 top-style-user-interfaces/book

 The best way to predict the future is to help create it



 



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


RE: Workstation recommendations

2011-09-08 Thread Jacob

But those guys at various computer repair places would say anything to make
a sale, especially the large one which has a squad full of geeks. They pray
on the uneducated and was hoping Peter was one of them...

-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Wednesday, September 07, 2011 8:42 PM
To: cf-talk
Subject: Re: Workstation recommendations


You know the hardware has absolutely nothing to do with getting a virus,
right?
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 8 September 2011 09:28, Peter Donahue pdonah...@satx.rr.com wrote:


 Good evening everyone,

 This past week must have been computer-workstation die-off or 
 something. My wife's computer became infected with the PC Performance 
 Virus. This thing is a nasty as it locked her out of many of her 
 programs, caused a black screen to appear when the monitor was turned 
 on and the computer booted in to Windows, messages from Twitter and 
 God only knows where else to be displayed and wouldn't allow her to 
 see any of her data files.




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


RE: Workstation recommendations

2011-09-07 Thread Jacob

For workstations, I have always been happy with Dell.

If you go the laptop route, either Dell or Toshiba (high end model.. not the
satellite).


-Original Message-
From: Matt Williams [mailto:mgw...@gmail.com] 
Sent: Wednesday, September 07, 2011 8:45 AM
To: cf-talk
Subject: SOT: Workstation recommendations


My HP desktop at work died last night. This morning we took the hard drive
out and put it into another box whose drive had died a couple months ago. It
worked at first, but after about 20 minutes it croaked too.

Anyway, I'll be shopping for a new desktop and just wondered what brands
people recommend these days. I'll probably stay away from HP and plan to
stay with a Windows machine. I run CF Developer, SQL Server Mgt Studio, CF
Builder, Adobe Creative Suite (primarily DW and PS), MS Office, and various
browsers and other tools.

Dell?
Lenovo?
Asus (seems to be mostly gaming oriented)?
Acer?
Gateway?
Others?

Thanks,

-Matt



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


RE: (ot) Recover Data from External Hard Drive

2011-08-29 Thread Jacob

http://services.seagate.com/diysoftware.aspx

I have had luck using this in the past. You can try the demo version first.

Jacob

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: Monday, August 29, 2011 6:02 AM
To: cf-talk
Subject: (ot) Recover Data from External Hard Drive


So, this is way OT, but I'm hoping someone out there can give me some
suggestions to help me figure this out.  Here's my situation:

I have a 500GB USB external hard drive on my home PC that I use to store
pretty much everything.  All of our pictures, financial documents, mp3s,
code repositories, everything.  I have the hard drive partitioned into 2
equal parts, and they are set up as the F and G drives on the PC.  Last
week, my 9 month old grabbed the cable and pulled the hard drive off of the
desk.  When I plugged the hard drive back in, I could no longer access any
of the data on the drives.  Windows is saying that the drives need to be
formatted.  

I've tried it on 3 separate machines, and I get the same thing on each one.
When I plug in the hard drive, Windows sees both the F and G
partitions, but wants to format them every time I try to open them.  I
looked in disk manager and it shows each partition with the correct size,
but it says that each one is 100% free and contains no data.  It does this
on Windows XP, Windows 2003, and Windows 7.  

I tried booting Knoppix to see if I could access it that way, but I can't
even get Knoppix to see the USB hard drive, or if it does I don't know where
to look.  I used VirtualBox to boot an Ubuntu instance, but got the same
results as Knoppix, either it doesn't see the USB hard drive, or if it does
I don't know where to look.  (now would probably be a good time to mention
that I don't know squat about Linux).  

So, that's my predicament.  Does anyone out there have any suggestions on
what to try?  I feel like that if I can get Knoppinx/Ubuntu to see the drive
that may be my best bet, but I don't have a clue as to how to do it. (plan
on doing some serious googling tonight).

I appreciate any suggestions anyone may have.

Thanks,

Eric Cobb
http://www.cfgears.com






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


RE: (ot) Recover Data from External Hard Drive

2011-08-29 Thread Jacob

I use Carbonite, on top of my first backup.  $55 well spent.

For most people, they will do their own backup for a while then stop.  With
Carbonite, it is in the background and you do not have to worry about it.

-Original Message-
From: Bryan Stevenson [mailto:br...@electricedgesystems.com] 
Sent: Monday, August 29, 2011 8:58 AM
To: cf-talk
Subject: RE: (ot) Recover Data from External Hard Drive


Carbonite eh.I've seen it mentioned a few timessaw a commercial for
it over the weekend for the 1st time.

Perhaps I didn't understand the offer, but it sure seemed like online (i.e.
the cloud) was the repository??

If so, I'm curious why the cloud is seen as a  safe backup solution?

The only use I can see for cloud based backups is a secondary backup in case
of say a fire at home (where you may not have  a fire safe)...or perhaps a
flood.  To use it as primary backup seems even more prone to problems than a
kid yanking on cords (given that it's beyond your controlbut it would be
safe from your own kids...hehe).

Anyways, just curious to see what folks think and to make sure I'm not
missing some silver bullet solution to backups ;-)

TIA

Cheers


On Mon, 2011-08-29 at 09:45 -0400, Rick Faircloth wrote:

 Send it to a data-recovery lab.  ($$$)
 
 And then use Carbonite...
 
 
 -Original Message-
 From: Eric Cobb [mailto:cft...@ecartech.com]
 Sent: Monday, August 29, 2011 9:02 AM
 To: cf-talk
 Subject: (ot) Recover Data from External Hard Drive
 
 
 So, this is way OT, but I'm hoping someone out there can give me some 
 suggestions to help me figure this out.  Here's my situation:
 
 I have a 500GB USB external hard drive on my home PC that I use to 
 store pretty much everything.  All of our pictures, financial 
 documents, mp3s, code repositories, everything.  I have the hard drive 
 partitioned into 2 equal parts, and they are set up as the F and G 
 drives on the PC.  Last week, my 9 month old grabbed the cable and 
 pulled the hard drive off of the desk.  When I plugged the hard drive 
 back in, I could no longer access any of the data on the drives.  
 Windows is saying that the drives need to be formatted.
 
 I've tried it on 3 separate machines, and I get the same thing on each 
 one.  When I plug in the hard drive, Windows sees both the F and G
 partitions, but wants to format them every time I try to open them.  I 
 looked in disk manager and it shows each partition with the correct 
 size, but it says that each one is 100% free and contains no data.  It 
 does this on Windows XP, Windows 2003, and Windows 7.
 
 I tried booting Knoppix to see if I could access it that way, but I 
 can't even get Knoppix to see the USB hard drive, or if it does I 
 don't know where to look.  I used VirtualBox to boot an Ubuntu 
 instance, but got the same results as Knoppix, either it doesn't see 
 the USB hard drive, or if it does I don't know where to look.  (now 
 would probably be a good time to mention that I don't know squat about
Linux).
 
 So, that's my predicament.  Does anyone out there have any suggestions 
 on what to try?  I feel like that if I can get Knoppinx/Ubuntu to see 
 the drive that may be my best bet, but I don't have a clue as to how 
 to do it. (plan on doing some serious googling tonight).
 
 I appreciate any suggestions anyone may have.
 
 Thanks,
 
 Eric Cobb
 http://www.cfgears.com
 
 
 
 
 
 
 



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


RE: (ot) Recover Data from External Hard Drive

2011-08-29 Thread Jacob

Key to a good backup strategy, have three copies... your primary copy and
two backups.

-Original Message-
From: Gerald Guido [mailto:gerald.gu...@gmail.com] 
Sent: Monday, August 29, 2011 9:21 AM
To: cf-talk
Subject: Re: (ot) Recover Data from External Hard Drive


. Most cloud storage providers have much more redundancy (and other
protections) than you're going to get with your own hardware.

+1

They have excellent Department of Redundancy Departments. The distributed
nature of cloud systems means (in theory at least) that there is no single
point of failure.

Having seen backups fail, I am a firm believer in backing up one's back ups
and having multiple storage locations for important documents and data; both
local and off site.

G!

On Mon, Aug 29, 2011 at 12:08 PM, Dave Watts dwa...@figleaf.com wrote:

 . Most
 cloud storage providers have much more redundancy (and other
 protections) than you're going to get with your own hardware.




--
Gerald Guido
http://www.myinternetisbroken.com

-- We all shine on.




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


RE: Method Opinion

2011-08-01 Thread Jacob

Agree... we did that for years and we realized that using delimited lists
was a bad approach. Sent some time to undo all that.  What  a pain.

-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Monday, August 01, 2011 7:57 AM
To: cf-talk
Subject: Re: Method Opinion


Avoid the delimited list idea; it always bites you on the arse eventually.
Use the first option.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 1 August 2011 21:46, Robert Harrison rob...@austin-williams.com wrote:


 Curious as to what you all think is the best method for something.  I 
 have a table that contains a list of polls. I have a user table that 
 contains a list of possible persons who may complete the poll (it 
 requires log-in access). I want to present a poll only one time so 
 users can't complete a poll more than once, so I need to maintain a 
 list of users who have completed a poll.

 I see two ways I can do this:

 1.  I can create a cross reference table that keeps users ID and Poll 
 IDs (of users/polls completed), then use an SQL NOT IN to select polls 
 for users who are NOT IN the completed poll table.

 2. I can add a field in the POLLs record and put a delimited list of 
 User IDs who've complete the poll, then not select any polls where the 
 COMPLETED field contains the user ID of a given user.

 There are about 1,500  users. There will probably be not more than 10 
 polls going on at any one time. Poll history will be maintained for about
60 days.
 Thus, there may be thousands of COMPLETED records.

 Given that, is one of these methods better than the other, and if so, why?

 Should I use a delimited list in the POLL record, or should I use a 
 cross-reference table with a join and NOT IN select... or should I do 
 something different.

 Thanks


 Robert B. Harrison
 Director of Interactive Services
 Austin  Williams
 125 Kennedy Drive, Suite 100
 Hauppauge NY 11788
 P : 631.231.6600 Ext. 119
 F : 631.434.7022
 http://www.austin-williams.com

 Great advertising can't be either/or.  It must be .

 Plug in to our blog: AW Unplugged
 http://www.austin-williams.com/unplugged



 



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


RE: Its ColdFusion's Fault

2011-07-26 Thread Jacob

#3 and the constant spam messages.. that did if for me.

-Original Message-
From: Kevin Parker [mailto:tras...@internode.on.net] 
Sent: Tuesday, July 26, 2011 2:41 AM
To: cf-talk
Subject: Its ColdFusion's Fault


May be of interest for some readers... ColdFusion is responsible for the
demise of MySpace (well one of the reasons anyway ;-)

http://blogs.forbes.com/stephenwunker/2011/07/25/4-morals-from-myspaces-fall
/


++
Kevin Parker
Advanced Imaging

e: webmas...@advancedimaging.com.au
w: www.advancedimaging.com.au
m: 0418 815 527

++

http://au.linkedin.com/in/krparker





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


Email Management Software

2011-07-21 Thread Jacob

I am looking for a ColdFusion based email list manager. I found one that
looked great, but I guess they are no longer around.

http://adminprotools.com/detail/index.cfm?nPID=2cid=3

I am looking to manage our customer newsletters in a more efficient way and
be able to track conversions. Also be able to manage subscriptions and
bounce backs.

What does everybody else do or any recommendations?

Thanks
Jacob


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


RE: CF vs. Java Web Developer

2011-06-24 Thread Jacob

No distractions in our office... ;-)

-Original Message-
From: Sean Corfield [mailto:seancorfi...@gmail.com] 
Sent: Thursday, June 23, 2011 6:51 PM
To: cf-talk
Subject: Re: CF vs. Java Web Developer


On Thu, Jun 23, 2011 at 4:59 AM, Russ Michaels r...@michaels.me.uk wrote:
 LOL, well unless u have stats it is nothing more than opinion, but 
 common sense tells you that distractions stop you form working
effectively.

There are lots of distractions in an office too.

 And the only way to avoid those distractions is to be away from them.

There are plenty of ways of dealing with distractions...
--
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/ World Singles, LLC. --
http://worldsingles.com/ Railo Technologies, Inc. --
http://www.getrailo.com/

Perfection is the enemy of the good.
-- Gustave Flaubert, French realist novelist (1821-1880)



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


RE: CF vs. Java Web Developer

2011-06-23 Thread Jacob

Exactly.

Honey, since you are going to be home today can you fill in the blank with
all the chores your spouse wants you to do?

Plus, sometimes there are situation in which one-on-one meetings are
mandatory. When a project is falling through the cracks and about to crash
and burn, its probably best to round up the troops in person. At least in my
experience.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Thursday, June 23, 2011 4:34 AM
To: cf-talk
Subject: Re: CF vs. Java Web Developer


working from home doesn't work for a lot of people though, there are too
many distractions, tv, food, wife or g/f, even more so if you have small
kids screaming round the house all day or if you do not have a separate room
to use as an office.
I have been far more productive since I moved out of the house and into a
proper office, as has my wife (who works for me).

Russ


On Thu, Jun 23, 2011 at 12:13 PM, John M Bliss bliss.j...@gmail.com wrote:


 +1 on everything said thus far re: telecommute. My company has  10
 employees, no office, and we're spread out over four states. We use 
 some tools already mentioned plus GoToMeeting.

 --
 John Bliss - http://about.me/jbliss

 On Thu, Jun 23, 2011 at 2:20 AM, Sean Corfield seancorfi...@gmail.com
 wrote:

 
  On Wed, Jun 22, 2011 at 7:15 AM, Mark A. Kruger 
  mkru...@cfwebtools.com
  wrote:
   When we mad telecommuting available and stopped worrying about
 relocation
   things got a lot easier for us.
 
  I'll +100 on this.
 
  At Broadchoice, we figured out who we'd like to work for us and 
  conducted screening interviews, then flew in our top picks (from the 
  list of candidates who had expressed interest) for a two-day 
  mini-conference with the full company team - and we made the 
  candidates present to the team! We had no plans to make anyone 
  relocate - we already let people telecommute a few days a week even 
  if they lived locally.
 
  At World Singles, most of the company were telecommuting when I 
  joined because we're a (small) global company. We quickly gave up 
  the office in So. Cal. and let everyone work from home full time. 
  Now, when we hire someone, location is simply not an issue: if 
  you're right for us, we'll hire you (and you get to work in PJs or 
  whatever you want). We plan to have an all-hands company meeting 
  once or twice a year and fly everyone in for the event, but we rely 
  on Yammer! and Unfuddle / git and mailing lists and Skype and iChat 
  and so on. We can pair remotely as engineers whenever we want - not 
  as good as pairing face-to-face but it works well enough.
 
   We play to these strengths whenever we can. We provide a model 
   that is focused on the work performed not hours at a desk. We make 
   their
 families
   important to us. We provide them with a steady flow of positive 
   reinforcement. Out of a staff of 18 nearly half are now remotely
 working
  in
   various parts of the country.
 
  +1 on all of that.
 
   1) How do you develop community and facilitate knowledge sharing 
   with a remote staff.
 
  Regular interaction via Skype, mailing lists, wikis.
 
   2) How do you manage meetings and stakeholder interaction.
 
  Keep them to a minimum - and use video conference calls when you do 
  them
 at
  all.
 
   3) What technology is the most helpful with a remote staff.
 
  Keep all your resources in the cloud - use a hosted bug tracker / 
  version control system. Use IM a LOT. Use Skype (with video). Use 
  iChat (chat, audio, video, screen sharing - Mac rocks!).
 
   4) How do you overcome the hesitancy of potential customers who 
   are uncomfortable with a remote staff.
 
  Seriously? You still encounter this? I've worked remotely for 
  customers for years - I've *never* seen resistance to this.
  --
  Sean A Corfield -- (904) 302-SEAN
  An Architect's View -- http://corfield.org/ World Singles, LLC. -- 
  http://worldsingles.com/ Railo Technologies, Inc. -- 
  http://www.getrailo.com/
 
  Perfection is the enemy of the good.
  -- Gustave Flaubert, French realist novelist (1821-1880)
 
 

 



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


RE: CF 301 Redirect on an HTML page

2011-05-06 Thread Jacob

Yea.. skipped over the cannot map .htm extension part.. duh!

Which also probably means the hosting service wont install the Rewrite
module also.

Guess my post was a waste of electrons...



-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Thursday, May 05, 2011 1:41 PM
To: cf-talk
Subject: Re: CF 301 Redirect on an HTML page


On 5/5/2011 1:26 PM, Jacob wrote:
 If not, then you can use something like this which I have used in the
past:

 cfheader statuscode=301 statustext=Moved permanently cfheader 
 name=Location value=http://www.domain.com/url.htm;
 cfabort

Except that this code does not work so well on HTML pages, which is what the
OP was asking for help with.




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


RE: CF 301 Redirect on an HTML page

2011-05-05 Thread Jacob

Agree.. If running IIS 7.0, you can download URL Rewrite module and do your
301 redirects.

If not, then you can use something like this which I have used in the past:

cfheader statuscode=301 statustext=Moved permanently
cfheader name=Location value=http://www.domain.com/url.htm;
cfabort

-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Thursday, May 05, 2011 12:34 PM
To: cf-talk
Subject: Re: CF 301 Redirect on an HTML page


 The better answer is to work with your hosting provider.  If you are 
 on *nix hosting, htaccess can be set up site by site and|or directory 
 by directory so being on shared hosting _should_ not be an issue.  But 
 doing this at the web server level is the best way to capture ALL the 
 searching engine mojo of older pages.

This is the best answer. Use your web server's ability to redirect - you can
do this on any web server. Your hosting provider may need to help you here.

If you can't do this, then you may have to rely on meta redirects and/or
canonical URLs.

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 onsit



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


RE: Intelligent Mail Bar Code Algorithm

2011-05-03 Thread Jacob

http://www.idautomation.com/java/font-encoder.html

Then, you just use the Postnet font to convert.

We used the VB solution from ID Automation.  Not difficult at all.

Jacob

-Original Message-
From: Rob Voyle [mailto:robvo...@voyle.com] 
Sent: Tuesday, May 03, 2011 12:12 PM
To: cf-talk
Subject: Intelligent Mail Bar Code Algorithm


Hi folks

Anyone know of an intelligent Mail bar code algorthm

I need to generate the FADT code from all the numbers so I can create
mailing barcodes.

Thanks

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


RE: CF 9 on Win 2008 w/1 gig of ram

2011-05-02 Thread Jacob

If 32 Bit, go 4GB. We ran Windows 2008 with CF8 on 2GB... it did not cut it.
Needed 4GB. 

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Monday, May 02, 2011 3:20 PM
To: cf-talk
Subject: Re: CF 9 on Win 2008 w/1 gig of ram


if you were only running IIS and CF it might possibly cope, but in general I
have found that 2GB is a minimum for windows 2008 as you will also be
running MySQL and MSSQL, then I would say you definitely need 2GB minimum. I
presume you will be running 64bit, which also uses more RAM.
But don't forget the beauty with a VPS is that you can easily scale up the
memory.


On Mon, May 2, 2011 at 7:43 PM, Gerald Guido gerald.gu...@gmail.com wrote:


 We are looking at a Win 2008 VPS for some low traffic hobby sites and 
 for general dev purposes and I was wondering if one gig of ram would
suffice.

 I would most probably be running IIS 7, Mysql 5.5 (or MSSQL 2008 
 Express),
 CF9 std. and possibly a name server and/or a (S)FTP server.  I would 
 only be running a couple static html sites and the following Cf apps:
 one instance of Blog.cfc,
 one instance of Project Tracker http://projecttracker.riaforge.org
 And a couple instance of miniwiki   http://miniwiki.riaforge.org/.

 I know that Win 2003 and Centos could handle that readily using a gig 
 of ram but I have yet to work with 2008 server other than installing 
 and playing with it for a couple of weekends.

 Has anyone had any experience with such a rig and care to pass along 
 any advice?

 As always many TIA

 G!

 --
 Gerald Guido
 http://www.myinternetisbroken.com

 ONE  TWO  THREE  FOUR!!!
 -- Dee Dee Ramone


 



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


RE: Strange Hack... WHY?

2011-04-15 Thread Jacob

+1

We had a problem with a site, just replace our .com with .info.  They
started to gain our search traffic. After a couple month of complaining to
Google.. they no longer existed in the search results.

-Original Message-
From: Claude Schnéegans schneeg...@internetique.com
[mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?=
=?ISO-8859-1?Q?ue.com=3E?=] 
Sent: Friday, April 15, 2011 10:19 AM
To: cf-talk
Subject: Re: Strange Hack... WHY?


Probably steal your customers, or prevent you from getting new customers.
I think you could ask Google not to index this domain (better do it before
they do it for yours ;-)



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


RE: I wonder what this says, if anything, about ColdFusion?

2011-03-04 Thread Jacob

I was talking to vendor a while back and he made the comment, Wow!
ColdFusion? Isn't that old?

Click...

-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Friday, March 04, 2011 8:39 AM
To: cf-talk
Subject: I wonder what this says, if anything, about ColdFusion?


I was just completing a short survey from Application Development Trends
for their their 2011 Reader Survey.

I got to this question...

Which of the following languages/tools are currently in use in your
enterprise? (Check all that apply.)

...and was very surprised to see everything under the sun listed, except
ColdFusion. From PHP, to Oracle, ASP, HTML, XML, etc, etc... and not even
and Other
space to use where I could input ColdFusion or CFML.

I did finally notice, in the next question, which read...

Which software development platforms are currently in use in your
enterprise? (Check all that apply.)

... and, there listed at top of the list, was Adobe Cold Fusion (yes,
spelled with a space).

Now, not knowing much about any other platforms, such as ASP and its
dependency on a server to run it, I did notice that ASP was listed in the
first question I mentioned and Microsoft ASP.NET was also listed in the
second question above, CFML or ColdFusion is not listed in both.
Isn't MS ASP.NET necessary to use ASP code?  And, if so, why wouldn't there
be mention of CFML in the first question's possible responses, if ASP is
listed in the first and MS.NET in the second? (Hopefully that makes
sense...)

It seems, that while ColdFusion is seen software development platform,
CFML is not, at least of this survey, recognized as a language/tool for
development, of a broad range of applications, from desktop to web.

It was just very curious that CFML was not even on the list in the first
question.

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


RE: Online Test

2011-03-03 Thread Jacob

I would think the DB approach would be easier to maintain and scalable...

-Original Message-
From: John Eubanks [mailto:jae...@hotmail.com] 
Sent: Thursday, March 03, 2011 12:51 PM
To: cf-talk
Subject: Online Test


I am building an online test (actually, several of them) and need some help.
Would it be easier to build a db with the questions, answers, etc. or just
set them manually using cfset?  If using the second method, how would you
display a percentage showing the grade for the test? 



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


RE: CF Permanent Redirect (301)???

2011-01-20 Thread Jacob

Make sure it is lowercase also.

www.Mydomain.com
www.mydomain.com
www.MyDomain.com
 
are three different sites!


-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Wednesday, January 19, 2011 2:53 PM
To: cf-talk
Subject: Re: CF Permanent Redirect (301)???


having multiple domains pointing to the same site has some issues.

It is not seo friendly and supposedly effects rankings.
It will skew your webstats as they usually only show data for the primary
domain, not alias, so u will see traffic for www.mydomain.com not
mydomain.com

If you have any code in your code that depend son the host name, you also
have to cater for all the alternatives.
The recommended method is to redirect anything that is not
www.mydoamin.comto www.mydomain.com, most people do this with url rewriting.

e.g.

# RULE NAME: Redirect non-www website to www #
(http://bluethunderinternet.com to http://www.bluethunderinternet.com)

RewriteEngine on

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC] RewriteCond %{REQUEST_URI}
(.+) RewriteRule .? http(?%1s)://www.%2%3 [R=301]


--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels




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


RE: CF Permanent Redirect (301)???

2011-01-20 Thread Jacob

Not according to Google. Google will see them at three separate sites.

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Thursday, January 20, 2011 12:46 PM
To: cf-talk
Subject: RE: CF Permanent Redirect (301)???


Sorry but that is completely wrong. Domain names are not case sensitive nor
are they processed by case by the web server.

-Original Message-
From: Jacob [mailto:ja...@excaliburfilms.com]
Sent: 20 January 2011 20:40
To: cf-talk
Subject: RE: CF Permanent Redirect (301)???


Make sure it is lowercase also.

www.Mydomain.com
www.mydomain.com
www.MyDomain.com
 
are three different sites!


-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Wednesday, January 19, 2011 2:53 PM
To: cf-talk
Subject: Re: CF Permanent Redirect (301)???


having multiple domains pointing to the same site has some issues.

It is not seo friendly and supposedly effects rankings.
It will skew your webstats as they usually only show data for the primary
domain, not alias, so u will see traffic for www.mydomain.com not
mydomain.com

If you have any code in your code that depend son the host name, you also
have to cater for all the alternatives.
The recommended method is to redirect anything that is not
www.mydoamin.comto www.mydomain.com, most people do this with url rewriting.

e.g.

# RULE NAME: Redirect non-www website to www #
(http://bluethunderinternet.com to http://www.bluethunderinternet.com)

RewriteEngine on

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC] RewriteCond %{REQUEST_URI}
(.+) RewriteRule .? http(?%1s)://www.%2%3 [R=301]


--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels








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


RE: CF Permanent Redirect (301)???

2011-01-20 Thread Jacob

Personnel experience form Webmaster tools and search engine traffic.

Google viewed www.excaliburfilms.com and www.ExcaliburFilms.com as two
separate sites.


-Original Message-
From: Justin Scott [mailto:leviat...@darktech.org] 
Sent: Thursday, January 20, 2011 12:48 PM
To: cf-talk
Subject: Re: CF Permanent Redirect (301)???


 Make sure it is lowercase also.

 www.Mydomain.com
 www.mydomain.com
 www.MyDomain.com

 are three different sites!

Do you have a reference or source for that?  Domain names are not case
sensitive, and I've never seen them treated as such by any search engine.


-Justin



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


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: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Jacob

We use cfqueryparam. But when ScanAlert tests our site every night, they
want to see something like a cfabort or a blank page when they pass commands
such as exec or delete. So we had to implement something like that below.

-Original Message-
From: Bryan Stevenson [mailto:br...@electricedgesystems.com] 
Sent: Thursday, December 09, 2010 4:22 PM
To: cf-talk
Subject: RE: index.cfm being hacked (now application.cfm)


or just use CFQUERYPARAM and skip all that ;-)

On Thu, 2010-12-09 at 18:45 -0500, Brian Polackoff wrote:

 Hey Mike,
 Sorry if this reply is off target, I'm jumping in here way after the 
 original post but I too had issues with people hacking pages (using 
 sql injection, not sure if that's what you said they are doing to 
 you). I did some research and found the below code that helped.  I 
 admit it's not the most efficient way of stopping the attacks, but I 
 do FULLY admit it stops the immediate threats and may buy you some time.
 
 !--- lower case checking ---
 cfif 
   cgi.SCRIPT_NAME contains cast( OR 
   cgi.SCRIPT_NAME contains exec( OR 
   cgi.PATH_INFO contains exec( OR 
   cgi.QUERY_STRING contains exec( OR
   cgi.SCRIPT_NAME contains declare( OR
   cgi.PATH_INFO contains declare( OR
   cgi.QUERY_STRING contains declare( cfabort /cfif
 !--- upper case checking  if needed--- cfif
   cgi.SCRIPT_NAME contains CAST( OR 
   cgi.SCRIPT_NAME contains EXEC( OR 
   cgi.PATH_INFO contains EXEC( OR 
   cgi.QUERY_STRING contains EXEC( OR
   cgi.SCRIPT_NAME contains DECLARE( OR
   cgi.PATH_INFO contains DECLARE( OR 
   cgi.QUERY_STRING contains DECLARE( cfabort /cfif cfif
   CGI.QUERY_STRING contains delete  OR 
   CGI.QUERY_STRING contains update  OR
   CGI.QUERY_STRING contains DELETE OR 
   CGI.QUERY_STRING contains UPDATE
 cfabort
 ---
 /cfif
 
 Again, sorry if SQL injection in not your problem.
 
 Brian Polackoff
 br...@emstoolkit.com
 http://www.emstoolkit.com
 
 
 -Original Message-
 From: Mike Little [mailto:m...@nzsolutions.co.nz]
 Sent: Thursday, December 09, 2010 5:56 PM
 To: cf-talk
 Subject: Re: index.cfm being hacked (now application.cfm)
 
 
 darn.
 
 they have stopped targeting the index.cfm and are now targeting the 
 Application.cfm...
 
 for the sake of anyone who may have experienced something similar, the 
 following is what is prepended to my application script:
 
 ---
 
 cfset domain = cgi.remote_addr
 cfset userag = cgi.http_user_agent
 cfset refer = cgi.HTTP_REFERER
 cfset stop_ip_mask =
 66\.249\.[6-9][0-9]\.[0-9]+|74\.125\.[0-9]+\.[0-9]+|65\.5[2-5]\.[0-9]
 +\.[0- 
 9]+|74\.6\.[0-9]+\.[0-9]+|67\.195\.[0-9]+\.[0-9]+|72\.30\.[0-9]+\.[0-9
 ]+|38\
 .[0-9]+\.[0-9]+\.[0-9]+|93\.172\.94\.227|212\.100\.250\.218|71\.165\.2
 23\.13
 4|70\.91\.180\.25|65 ... \.74 cfset stop_useragents = http| 
 4|google|
 slurp| msnbot| bot| crawl| spider| robot| HttpClient| curl| PHP| Indy
 Library|

WordPress|Charlotte|wwwster|Python|urllib|perl|libwww|lynx|Twiceler|rambler|
 yandex
  
 cfif (REFindNoCase(stop_useragents,userag) GT 0) OR
 (REFindNoCase(stop_ip_mask,domain) GT 0)
  
 cfset links = ' a href=badurlpharmacy related string/a a 
 href=badurlpharmacy related string/a a href=badurlpharmacy 
 related string/a ... the list is huge !! ...
 a href=badurlpharmacy related string/a' cfset arr = 
 listToArray (links, #chr(10)##chr(13)#)
  
 cfset CreateObject(
 java,
 java.util.Collections 
 ).Shuffle(
 arr
 ) /
  
 cfset myList = ArrayToList(arr,  )
  
  
 cfoutput#myList#/cfoutput
 /cfif
 !---pharmacylinks---
 
 
 
 



~|
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:339973
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: Moving to DC

2010-11-08 Thread Jacob

Metro is the only way to get around in DC. Forget about driving, let alone
finding a place to park...

-Original Message-
From: Maureen [mailto:mamamaur...@gmail.com] 
Sent: Thursday, November 04, 2010 3:59 PM
To: cf-jobs-talk
Subject: Re: Moving to DC


My sister had a nice place in Greenbelt, Maryland.  Clean, low crime, not
too expensive, with an easy commute to the city on the Metro.
Also, my cousin recently bought a nice place in Woodbridge, VA, with the
same attributes.

Good luck with the new job.

On Thu, Nov 4, 2010 at 12:24 PM, Jason Birchman birchma...@yahoo.com
wrote:

 I am a Senior ColdFusion Developer that is moving out to the Washington,
DC. Obviously housing is a premium in the DC area. I would like to buy or
rent a house in one of the suburbs, so that we can have a fenced in yard for
my dogs. What suburbs are the safest and most affordable in DC that have
single family homes (not townhomes/apartments)? Which area is lower in
taxes? Commuting by train/light rail would be ideal. Also, what is a typical
salary range for Senior CF Developers in the DC area? Thanks!

 - Jason



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4357
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-jobs-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: Best practice for backup of CF Application server?

2010-10-13 Thread Jacob

For CF application... I backup the XML files and custom tags when I make
changes.

All of our templates are on a separate hard drive in the server and that is
backed up every night.

-Original Message-
From: Chuck Wyatt [mailto:cwy...@clarku.edu] 
Sent: Wednesday, October 13, 2010 7:23 AM
To: cf-talk
Subject: Best practice for backup of CF Application server?


We're running ColdFusion 9, and I understand we can backup the XML files in
Web-INF to get the datasource meta data for a less troublesome restore,
God forbid we'd have to do that at any point.

Aside from CFM templates of the site itself, should we also backup the CFIDE
tree? Anything else that would be a good practice in the event we'd need to
recover a site on short notice?

Thanks so much,

Chuck 



~|
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:338121
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

With IIS 7, you can download the URL rewrite module for free from Microsoft.

-Original Message-
From: Andy Matthews [mailto:li...@commadelimited.com] 
Sent: Tuesday, September 21, 2010 8:22 AM
To: cf-talk
Subject: RE: Shorter URLs - How?


The best approach for this would be to use a URL rewriting tool such as
ISAPI_REWRITE. That's an IIS thing. Doing it with pure ColdFusion, the best
thing you could hope for is 

http://www.scribblar.com/index.cfm/k3ns5



andy

-Original Message-
From: Stefan Richter [mailto:ste...@flashcomguru.com]
Sent: Tuesday, September 21, 2010 10:04 AM
To: cf-talk
Subject: Shorter URLs - How?


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:337269
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: best 301 method

2010-08-17 Thread Jacob

I have been using cfheader for 301 without any issues.

-Original Message-
From: Matthew Smith [mailto:chedders...@gmail.com] 
Sent: Tuesday, August 17, 2010 9:39 AM
To: cf-talk
Subject: best 301 method


Which is preferred?

cfheader statuscode=”301″ statustext=”Moved 
permanently” / cfheader name=”location” value=” 
http://www.mysite.com/new-location-for-content/” /

or
cflocation
url = “http://www.mysite.com/new-location-for-content/”
addToken = “no”
statusCode = “301″

Redoing all links on my site for better seo.

--
Regards,
Matthew Smith




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


RE: Millions of Coldfusion sites need to apply patches

2010-08-12 Thread Jacob

Same here... restricted by internal IP address and username/password.

-Original Message-
From: Andrew Grosset [mailto:rushg...@yahoo.com] 
Sent: Wednesday, August 11, 2010 2:08 PM
To: cf-talk
Subject: Re: Millions of Coldfusion sites need to apply patches


phew!! for a moment I was worried

No authentication is needed; all that is needed is that the admin console is 
accessible to the Internet. 

Apply patches as described below, or restrict access to /CIDE/administrator/ by 
IP address or other similar controls.

this line is important:
restrict access to /CIDE/administrator/ by IP address or other similar controls

this should be mandatory irrespective of the patches applied (in my opinion).


 Millions of users of Adobe’s ColdFusion programming language are at 
 risk of losing control of their applications and websites.

 The full details of the vulnerability can be found on www.procheckup.
 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:336235
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Extracting part of a string

2010-07-22 Thread Jacob

Same here.. I have bought it a while back.. worth the $15 as I completely
suck with regex.



-Original Message-
From: Tony Weeg [mailto:tonyw...@gmail.com] 
Sent: Wednesday, July 21, 2010 5:12 PM
To: cf-talk
Subject: Re: Extracting part of a string


+420

Sent from my iPhone... Don't hate.

On Jul 21, 2010, at 6:39 PM, Claude Schnéegansschneeg...@internetique.com
wrote:

 
 This crap how you call it, is nevetheless the seventh most sold CF tag 
 at tagstore, with hundreds of satisfied buyers, and many positive 
 comments.
 Many developers are not as good with regex as you are, this is for sure.
 If you don't need the tag, you're free not buying it, but please stop 
 insulting me on line.
 
 



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


RE: CF Domain Redirects

2010-06-03 Thread Jacob

I would do this at the server level.. use URL rewrite. I know there is a URL
rewrite modules for IIS7, not sure about 6 though.

Jacob

-Original Message-
From: Che Vilnonis [mailto:ch...@asitv.com] 
Sent: Thursday, June 03, 2010 8:07 AM
To: cf-talk
Subject: CF  Domain Redirects


Here is the scenario. I own a domain. Call it domain.com. I also own an
often misspelled version, domains.com. Note the extra 's'.
I'd like to have domain.com automatically redirect to www.domain.com.
I'd also like have the www.domains.com or domains.com automatically redirect
to www.domain.com.
I'm using IIS6.

Anyway, I'm using the following code in onSessionStart:

!--- domain redirects. ---
cfif cgi.server_name eq http://domain.com; or cgi.server_name contains
domains.com
cfheader statuscode=301 statustext=Moved permanently
cfheader name=Location value=http://www.domain.com; /cfif

It seems to work. But I have a few questions.

1. Is onSessionStart the best place to put this code?
2. Should I be doing this type of redirect in IIS 6 instead of CF? If so,
how?
3. Are the any search engine related penalties to doing any of these
redirects?

Thanks, Che





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


RE: Local Server Crashes - How to back up settings

2010-03-02 Thread Jacob

What I backup.. 

In the ColdFusion directory:

\bin\neo-*.xml (Your CF Admin settings)
\webroot\WEB-INF\web.xml
\customtags\*.*

If I have to reinstall, all my settings and custom tags are there.

When I build a new server, I copy the above and everything works.

-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] 
Sent: Tuesday, March 02, 2010 7:08 AM
To: cf-talk
Subject: Local Server Crashes - How to back up settings


Hi all,

 

So I still don't have ColdFusion working. I've decided to just reinstall
CF, but I need to back up all of the Admin settings.  How can I do that
without ColdFusion running?

 

Thanks,

Steve

 





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


RE: Determine Site-Wide Error Handler

2010-01-26 Thread Jacob

Well..I do not know how CF is installed with multiple instances (I have one
instance per server, default location), but could you write a script to read
the neo-runtime.xml file?

 

-Original Message-
From: Craigsell [mailto:craigs...@charter.net] 
Sent: Tuesday, January 26, 2010 10:55 AM
To: cf-talk
Subject: Re: Determine Site-Wide Error Handler


Good idea but.

I am already using the Site-wide error handler to invoke a template. 
Problem is I can't remember what template it was set to on various CF 
instances I run.  Since I don't have access to CF Admin, I'd like some sort 
of way to introspect the instance and find out what that and other settings 
are.  I don't want to change anything -- just read them.  I work in a big 
company and it is a real pain to get the server admin to look this stuff up 
( fill out forms, wait for days, etc.)

For example, I wrote a little routine using the ServiceFactory to tell me 
what the datasources are.  Simple, effective, and fast. 




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


RE: Adult ColdFusion Websites

2010-01-08 Thread Jacob

Huge amounts of bandwidth? Hmm.. never knew that. ;-)

-Original Message-
From: Mike Kear [mailto:afpwebwo...@gmail.com] 
Sent: Thursday, January 07, 2010 3:56 PM
To: cf-talk
Subject: Re: Adult ColdFusion Websites


Yes, we do, provided the site meets our TOS (the content is legal in
your jurisdiction and also in California, and in Australia,  and
doesn't breach copyrights of others.)(We campaign for musician's
and songwriters royalty rights, so we cant have any of our clients
joining the 'other side'.)

Most web hosting companies have problems with adult sites, because
they are prone to several problems that impact the rest of the system:

[A] Huge volumes that take bandwidth from other users
[B] Constant attacks that bring with them risks to other users
[C] copyright and other legal issues

Believe it or not,  few hosting companies are against adult sites for
morality reasons, although I suspect there must be some.

To accept an adult site into our system we would need to make sure we
have adequately provided for the resources the site would require, and
if it went outside the quotas allocated to it,  we would need to
provide more at additional cost.   I guess a kind of 'probation
period' if the site is new and doesn't have any prior statistics to
work from.


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



On Thu, Jan 7, 2010 at 11:59 PM, Phillip Vector
vec...@mostdeadlygame.com wrote:

 Does anyone know of a hosting company that allows adult websites (a
 store) that has ColdFusion and allows cffile and such?





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


RE: meta tag location

2010-01-07 Thread Jacob

The title tag is not a meta tag.  Meta tags are meta name= , not
title/title.

Meta description does nothing for ranking. It helps with click troughs.



-Original Message-
From: Terry Troxel [mailto:te...@it-werks.com] 
Sent: Wednesday, January 06, 2010 9:49 PM
To: cf-talk
Subject: RE: meta tag location


I think you better rethink that one. The Title Meta tag and the Meta
Description tags are 2 very, very important tags as far as the search
engines go. Yes the meta keywords is no longer in use but for proof look in
the organic search for a top ranking page and then view source and a good
percentage of the time you will see the meta description as the anchor text
for the link to the landing page. 

The title and description should be different for every page on the site
too.

Terry 

-Original Message-
From: Jacob [mailto:ja...@excaliburfilms.com] 
Sent: Wednesday, January 06, 2010 12:51 PM
To: cf-talk
Subject: RE: meta tag location


What are the meta tags? Meta tags are 99% useless for search engine ranking.

Remove them and see what happens.

-Original Message-
From: Les Irvin [mailto:les.cft...@gmail.com] 
Sent: Wednesday, January 06, 2010 11:41 AM
To: cf-talk
Subject: meta tag location


I usually put a few meta tags in the application.cfm file, and a few
more on the individual pages.  Is there any danger to not keeping all
the meta tags in one place?  A client claims their google ranking has
fallen since this has been done.
Thanks,
Les







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


RE: meta tag location

2010-01-07 Thread Jacob

Fresh, unique content and quality backlinks... that is 98% of the battle.

-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Thursday, January 07, 2010 8:22 AM
To: cf-talk
Subject: Re: meta tag location


 From my research on several large commerce websites I have worked on,
Google
 does not even use the Meta Description, page Title or URL for page rank or
 position.

In my own experience, the title is used for page rank, but I can't
tell if it affects relevance. Page rank and relevance are, of course,
the two factors that determine which search results you see (and which
you see first).

 So, I don't rely on any forms of SEO to be a magic bullet, These things do
 help them categorize, (title, h1, h2, h3 etc..) but good content
 and relevance is the only silver bullet.

Well, this is really the key.

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

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



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


RE: meta tag location

2010-01-06 Thread Jacob

What are the meta tags? Meta tags are 99% useless for search engine ranking.

Remove them and see what happens.

-Original Message-
From: Les Irvin [mailto:les.cft...@gmail.com] 
Sent: Wednesday, January 06, 2010 11:41 AM
To: cf-talk
Subject: meta tag location


I usually put a few meta tags in the application.cfm file, and a few
more on the individual pages.  Is there any danger to not keeping all
the meta tags in one place?  A client claims their google ranking has
fallen since this has been done.
Thanks,
Les



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


RE: JPG in Database - Retrieve for web page

2009-11-13 Thread Jacob

You can store just about any type of file in a database.. jpg, doc, gif.

Performance would be my only issue. If just two jpg, should be okay.

But, for us, storing 10s of jpgs was a performance nightmare. So we keep
the jpg on the hard drives with the path to the jgp in the database.

-Original Message-
From: Kim Hoopingarner [mailto:k.hoopingar...@e-details.com] 
Sent: Friday, November 13, 2009 12:06 PM
To: cf-talk
Subject: JPG in Database - Retrieve for web page


I have not tried this before - so I thought I might see if this is feasible.


I have stored 2 jpgs in my database - one for the header of the site and one
for the left side graphic.

I want to retrieve these 2 BLOBS and place them on my web page - removing
the need to have the jpg on my file server.

Possible?  If so - hints? 



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


RE: Education

2009-10-23 Thread Jacob

BS in Criminal Justice and MS in Information Systems.

As far as ColdFusion programming...LOL I am more of an administrator versus
a programmer now.  Have not really programmed with CF since CF4.

-Original Message-
From: Claude Schneegans [mailto:schneeg...@internetique.com] 
Sent: Friday, October 23, 2009 8:16 AM
To: cf-talk
Subject: Re: Education


BSC here, in math/physics, and MSC in computer technologies.
Actually, CF may be the 20th language I learned and used.



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


RE: Shift from a single developer team to a multiple developer team

2009-10-20 Thread Jacob

Just to add:

Documentation, documentation, documentation...

-Original Message-
From: Patrick Santora [mailto:patwe...@gmail.com] 
Sent: Tuesday, October 20, 2009 7:37 AM
To: cf-talk
Subject: Re: Shift from a single developer team to a multiple developer team


I second what Cutter mentions here. They are common practices and really
work well on getting the job done within development teams. In regards to
the development/staging/production environments, you should make sure that
only one maybe two people are responsible for pushing code to at least
production. Too many people pushing code could really screw something up.

I noticed that you said your application is somewhat modular. This can play
to your benefit as you can separate a large task by assigning a person to
take care of front end work, while another can take care of back end work.
It keeps the team talking with one another as well as can keep toes from
being stepped on during the development cycle. Basically you work on this
and you work on that and let it come together in the end.

-Pat

On Tue, Oct 20, 2009 at 7:26 AM, Cutter (ColdFusion) 
cold.fus...@cutterscrossing.com wrote:


 There are several things that I would suggest, in moving from a single
 developer to team development dynamic:

 Source Control is critical (personal pref - VSS doesn't cut it, go to
 SVN or Git)
 Developers should/must setup/maintain their own development environments
 Development and initial testing should be done locally (on user's
 desktop), QA and final testing on a centralized staging server, then
 finally deploy to production
 Local, Staging, and Production environments should match each other as
 closely as possible
 Establish a good set of Coding Guidelines, that everyone on the team
 must follow going forward
 Write standardized naming conventions (in your Coding Guidelines) of
 variables, directory and file structure, db architecture, HTML id's and
 classes, etc.

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 Co-Author of Learning Ext JS
 http://www.packtpub.com/learning-ext-js/book
 _
 http://blog.cutterscrossing.com


 On 10/20/2009 8:13 AM, Eric Cobb wrote:
  A friend of mine originally asked this question on LinkedIn's ColdFusion
  Programmers group but didn't get much response, so I told him I would
  post it here to see what you guys thought.  His original post can be
  seen here: http://bit.ly/4aJjes
 
  Here's his post:
 
  I have been the primary developer on an application for a number of
  years and we have recently gotten the additional resources to bring on 3
  more programmers.
 
  I am excited and terrified. We have a Visual Source Safe environment set
  up for file sharing management, but I am curious if anyone has made this
  transition and has any tips for how to head off issues down the road.
 
  The application is somewhat modular, but certainly not to an object
  oriented extent. I am no project manager and am fearful that without
  proper planning we are going to be stepping on each other's toes an
  awful lot. 
 
 
 


 



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


RE: Getting URL from URL address bar!

2009-09-23 Thread Jacob

Hmm... should it be a 301?

-Original Message-
From: Barney Boisvert [mailto:bboisv...@gmail.com] 
Sent: Wednesday, September 23, 2009 11:02 AM
To: cf-talk
Subject: Re: Getting URL from URL address bar!


Do it on the app sever.  Accept requests for xyz.com and abc.com, log
the request, and then redirect to finalsite.com.  Just make sure you
do a 302 so search engines won't correct themselves.

cheers,
barneyb

On Wed, Sep 23, 2009 at 10:54 AM, David Torres djt...@yahoo.com wrote:

 Hello,

 My company needs to track when users type either one domain or the other
to get to the final page, for example a person types www.xyz.com or
www.abc.com to be redirected to www.finalsite.com.

 I know how to do the redirect, but how can I capture the address they
typed to finally get to the site. I need to know also when the user clicks
the link from a search engine.

 Thanks, David

 



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


RE: malware patterns

2009-09-17 Thread Jacob

135 and 445 should NOT be open to the public!

-Original Message-
From: b...@bradwood.com [mailto:b...@bradwood.com] 
Sent: Thursday, September 17, 2009 12:47 PM
To: cf-talk
Subject: RE: malware patterns


Michael, a quick nMap shows the following ports are open on the server
that houseoffusion.com resolves to (64.118.74.245).

PORT STATE SERVICE
21/tcp   open  ftp
80/tcp   open  http
135/tcp  open  msrpc
443/tcp  open  https
445/tcp  open  microsoft-ds
1025/tcp open  NFS-or-IIS
1036/tcp open  unknown
1041/tcp open  unknown
2522/tcp open  unknown
3389/tcp open  ms-term-serv
7999/tcp open  unknown

Have you accounted for each program that is listening on these ports and
can any of them closed that aren't needed?  You've got terminal services
in there as well as Directory Services.  I would audit the passwords on
all the windows accounts since they are the only thing keeping someone
from using these ports.

Also, did you ever find anything in your Windows logs?  Security under
Event Viewer should show you all authentication that happened prior to
the attack.  

Also, on the complete random off-chance that your vulnerability was
through a CFML file that got uploaded, taking a peek at your class files
(which would be no small task) might reveal any compiled crumbs left
behind by a rouge .cfm file that deleted itself after execution.

If you are on SQL Server 2005, I have been able to get the SQL of
recently run queries by looking in the cached execution plans.   
SELECT  cached.*,
sqltext.*
FROM  sys.dm_exec_cached_plans cached
CROSS APPLY  sys.dm_exec_sql_text (cached.plan_handle) AS sqltext

I know those are long shots, but the sooner you look, the more you might
be able to uncover before the tracks slowly get covered.

I do hope you are able to find the cause for the benefit of us all.

~Brad



 Original Message 
 Subject: malware patterns
 From: Michael Dinowitz mdino...@houseoffusion.com
 Date: Thu, September 17, 2009 2:08 pm
 To: cf-talk cf-talk@houseoffusion.com
 
 
 The recent attack on House of Fusion resulted in some useful
 information as to what you should look for. In general, all or most of
 the files with the following extensions were affected:





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


RE: malware patterns

2009-09-17 Thread Jacob

IPSec... that could get a little complicated.

A firewall should be able to block this, as well as adding ACLs to the
router.

-Original Message-
From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] 
Sent: Thursday, September 17, 2009 1:42 PM
To: cf-talk
Subject: Re: malware patterns


Fast question. On win2k is there an easy way of closing/blocking these
or does it have to be further up the chain.

On Thu, Sep 17, 2009 at 4:33 PM, Jacob ja...@excaliburfilms.com wrote:

 135 and 445 should NOT be open to the public!

 -Original Message-
 From: b...@bradwood.com [mailto:b...@bradwood.com]
 Sent: Thursday, September 17, 2009 12:47 PM
 To: cf-talk
 Subject: RE: malware patterns


 Michael, a quick nMap shows the following ports are open on the server
 that houseoffusion.com resolves to (64.118.74.245).

 PORT     STATE SERVICE
 21/tcp   open  ftp
 80/tcp   open  http
 135/tcp  open  msrpc
 443/tcp  open  https
 445/tcp  open  microsoft-ds
 1025/tcp open  NFS-or-IIS
 1036/tcp open  unknown
 1041/tcp open  unknown
 2522/tcp open  unknown
 3389/tcp open  ms-term-serv
 7999/tcp open  unknown

 Have you accounted for each program that is listening on these ports and
 can any of them closed that aren't needed?  You've got terminal services
 in there as well as Directory Services.  I would audit the passwords on
 all the windows accounts since they are the only thing keeping someone
 from using these ports.

 Also, did you ever find anything in your Windows logs?  Security under
 Event Viewer should show you all authentication that happened prior to
 the attack.

 Also, on the complete random off-chance that your vulnerability was
 through a CFML file that got uploaded, taking a peek at your class files
 (which would be no small task) might reveal any compiled crumbs left
 behind by a rouge .cfm file that deleted itself after execution.

 If you are on SQL Server 2005, I have been able to get the SQL of
 recently run queries by looking in the cached execution plans.
 SELECT  cached.*,
        sqltext.*
 FROM  sys.dm_exec_cached_plans cached
 CROSS APPLY  sys.dm_exec_sql_text (cached.plan_handle) AS sqltext

 I know those are long shots, but the sooner you look, the more you might
 be able to uncover before the tracks slowly get covered.

 I do hope you are able to find the cause for the benefit of us all.

 ~Brad



  Original Message 
  Subject: malware patterns
  From: Michael Dinowitz mdino...@houseoffusion.com
  Date: Thu, September 17, 2009 2:08 pm
  To: cf-talk cf-talk@houseoffusion.com


  The recent attack on House of Fusion resulted in some useful
  information as to what you should look for. In general, all or most of
  the files with the following extensions were affected:





 



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


RE: HoF invaded

2009-09-15 Thread Jacob

Format C: - Reinstall apps - restore data from backup.

Backup? Hmm... ;-)

-Original Message-
From: Cameron Childress [mailto:camer...@gmail.com] 
Sent: Tuesday, September 15, 2009 2:06 PM
To: cf-talk
Subject: Re: HoF invaded


On Tue, Sep 15, 2009 at 1:00 PM, Michael Dinowitz
mdino...@houseoffusion.com wrote:
 My own machine. If it was FTP then there would be logs.

Never assume your logs are accurate on a compromised machine.

Sorry to hear this happened - good luck with the cleanup...

-Cameron



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


RE: (ot) Twitter down

2009-08-06 Thread Jacob

DOS attack since 9am EDT

-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com] 
Sent: Thursday, August 06, 2009 9:55 AM
To: cf-talk
Subject: (ot) Twitter down


H
 
I just tried to tweet on one of my blog posts and noticed that twitter is
down and I've heard facebook is having problems as well. In a completely
unrelated story palid teenagers are emerging from basement hideaways and
over-garage bedrooms by the thousands, blinking and squinting at the sun.
Meanwhile the Jonas brothers are frantically brainstorming other ways to
tell the world what they had for breakfast.
 
Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com http://www.cfwebtools.com/ 
www.coldfusionmuse.com http://www.coldfusionmuse.com/ 
 http://www.necfug.com/ www.necfug.com
 





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


RE: Caching issue

2009-07-22 Thread Jacob

Found it.

There is a program call PipeBoostCache for compression and caching. It was
for compression and not for caching, but someone turned on the caching...

-Original Message-
From: Gaulin, Mark [mailto:mgau...@globalspec.com] 
Sent: Tuesday, July 21, 2009 1:07 PM
To: cf-talk
Subject: RE: Caching issue


Are you using session scope for anything (like the current customer)?

If so, do you have a load balancer that may have lost its sticky IP
setting? (It could be that you are bouncing around your web site cluster
and getting different session state on each one.)

Thanks  
Mark

-Original Message-
From: Jacob [mailto:ja...@excaliburfilms.com] 
Sent: Tuesday, July 21, 2009 3:49 PM
To: cf-talk
Subject: Caching issue


Setup.. 18 web servers with Windows 2003/CF7 or 2008/CF8.

It appears that I am pulling up cached queries from the servers. If I
pull up a movie list from a customer, I get a different customer. If I
refresh the list, then the right list shows up.  If I clear my
cookies/cache, close the browser and try again with a different customer
list.. same thing. I get the wrong list, but when I refresh I get the
right list.

No changes to the scripts and this starting happening over night. None
of the servers have saved cached queries and all the queries in the
coding are not cached. If I try to debug, I get no debugging info (with
the wrong list). But if I refresh, I then get debugging info with the
right list.

I have added the following on top of the application.cfm template:

cfheader name=expires value=#now()# cfheader name=pragma
value=no-cache cfheader name=cache-control value=no-cache,
no-store, must-revalidate

But that still does not appear to fix the issue.

Any other ideas what to look for?  

Thanks
Jacob






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


Caching issue

2009-07-21 Thread Jacob

Setup.. 18 web servers with Windows 2003/CF7 or 2008/CF8.

It appears that I am pulling up cached queries from the servers. If I pull
up a movie list from a customer, I get a different customer. If I refresh
the list, then the right list shows up.  If I clear my cookies/cache, close
the browser and try again with a different customer list.. same thing. I get
the wrong list, but when I refresh I get the right list.

No changes to the scripts and this starting happening over night. None of
the servers have saved cached queries and all the queries in the coding are
not cached. If I try to debug, I get no debugging info (with the wrong
list). But if I refresh, I then get debugging info with the right list.

I have added the following on top of the application.cfm template:

cfheader name=expires value=#now()#
cfheader name=pragma value=no-cache
cfheader name=cache-control value=no-cache, no-store, must-revalidate

But that still does not appear to fix the issue.

Any other ideas what to look for?  

Thanks
Jacob


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


RE: Performance gains on CF8 - is this true to say?

2009-07-13 Thread Jacob

+1.

We went from Windows 2003/CF7 to Windows 2008/CF8 on some of our servers.
Big performance gain, with same code.

Just have to finish the migration.. sometime!

-Original Message-

Not to mention that the underlying compilation and caching of code in the
JVM results in faster execution times than 5, and CF8 performs better than 6
and 7 on the same code given the newer versions of the JVM that are
supported and improvements within the CF engine itself.


-Justin




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324457
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 7 install...What can I delete to get more space?

2009-04-02 Thread Jacob

Check recycle bin settings? Default reserves 10% of drive space for recycle
bin. I kick mine down to 1%

Look for .dmp files. If the machine had a memory dump in the past, those
files could still be there.

Search for file more the 25MB. What shows up?  Setup files, tmp files, and
log files that could be deleted?

-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Thursday, April 02, 2009 7:22 AM
To: cf-talk
Subject: Re: CF 7 install...What can I delete to get more space?


Brian Yager wrote:
 I have a government machine that an idiot configured.  It has 11GB of
space on the C drive and I constantly have to delete things to gain space.
I currently have 12MB of free space on C drive with all my apps on E drive.
When C drive fills up, you all know what happens to the app.  What in the
CFusionMX7 can I delete to get more space?  In the db folder, there is a
folder called slserver54  what is that?

 Thanks

A thinking 'out of the box' suggestion.  But can you reinstall CF to the 
drive with more space.  It does not have to be on the C drive.





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

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


RE: (OT) W32.Virut.W

2009-03-26 Thread Jacob

Same here.. once compromised, unplug from network.

Reformat, reinstall o/s, install applications, and restore data from known
good backup (backed up right?). Only way to be safe.

-Original Message-
From: Al Musella, DPM [mailto:muse...@virtualtrials.com] 
Sent: Thursday, March 26, 2009 8:50 AM
To: cf-talk
Subject: RE: (OT) W32.Virut.W


I got this from a quick web search:
Virut is a virus that infects any executable files and screensavers 
that the user accesses. The parasite also opens a back door providing 
the attacker with unauthorized remote access to the compromised 
computer. The intruder can upload and run arbitrary files. 



  I would reformat the drive and reinstall everything. There is no 
way you can trust anything on the server any more and if there were 
credit cards in the database, they are probably stolen already






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

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


RE: Convert Image to Binary

2009-02-27 Thread Jacob

Agree... store image file location in database that points to the image on
the server.  From experience, better performance in my opinion. We had
plenty of images to test it out... ;-)

-Original Message-
From: Paul Kukiel [mailto:pkuk...@gmail.com] 
Sent: Thursday, February 26, 2009 12:15 PM
To: cf-talk
Subject: Re: Convert Image to Binary


Managing images on disk is a better way but if you must use the data base
make sure you are using

cfqueryparam scfqltype=CF_SQL_BLOB
vale=#toBase64(FinalMergedDisclosure)# /

Which should work for you.


On Thu, Feb 26, 2009 at 11:14 AM, Priya Koya priya23...@gmail.com wrote:


 cfset thisDir = expandPath(.)

cffile action=upload fileField=image destination=#thisDir#
 result=fileUpload
nameconflict=overwrite
cfdump var=#thisDir#
cfimage action=read source=#fileUpload.serverfile#
 name=myImage
cffile action=readBinary file=#image#
 variable=FinalImage
 br/variablecfdump var=#FinalImage#
 !--- cfset Image_Binary = #toBinary(toBase64(FinalMergedDisclosure))#
 cfdump var=#Image_Binary# ---
 cfquery name=Query4 datasource=Platform result=result_1
 update table1 set Logo='#FinalImage#' where Name='John'
 /cfquery

 I am getting an error: ByteArray objects cannot be converted to strings.
 I tried with tostring etc.. but didnt work
 Datatype for this column is varBinary(MAX).

 Any sugestions

 Thanks,
 Priya.

 



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319903
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 connectivity to MS SQL Server with SSL encryption

2009-02-05 Thread Jacob

With IPSec.. no issues.

Never tried with SSL on top of it.

-Original Message-
From: Matthew Frew [mailto:mf...@wharton.upenn.edu] 
Sent: Thursday, February 05, 2009 8:26 AM
To: cf-talk
Subject: Coldfusion connectivity to MS SQL Server with SSL encryption


Hello,

We're looking into the possibility of encrypting our MS SQL Servers (2000
and 2005) with SSL (as documented:
http://msdn.microsoft.com/en-us/library/ms189067.aspx), but wanted to make
sure that this wasn't going to cause any connectivity issues at the
ColdFusion side first.  

Our environment consists of CF 6, 7 and 8 servers (all running the latest
and greatest updaters), SQL Servers are 2000 and 2005 environments.  

Does anyone have any thoughts on this?  Problems I may run into?  Has anyone
here done this?

Thanks,

Matt 




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

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


RE: swsoc.exe CPU Spike

2009-01-19 Thread Jacob
I have this problem when connecting to FoxPro tables... in the process of
moving those over to SQL server

-Original Message-
From: Sean Sekora [mailto:seansek...@gmail.com] 
Sent: Monday, January 19, 2009 8:47 AM
To: cf-talk
Subject: swsoc.exe CPU Spike

The process swsoc.exe (CF ODBC Server) keeps taking over my computer with
CPU utilization frequently over 80%. I'll notice my computer running slowly,
check task manager, see swsoc taking up a lot of CPU time, restart the CF
ODBC Server and things will be fine for a while. 

I'm running ColdFusion 8 



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

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


RE: CF8, IIS7 and M$ Windows 2008

2008-12-12 Thread Jacob
I have no issues. Runs great.

You have to install IIS6 backward compatibility.. or something like that.

http://www.jasonholden.com/blog/index.cfm/2008/5/6/Coldfusion-8-on-Windows-S
erver-2008


-Original Message-
From: Che Vilnonis [mailto:ch...@asitv.com] 
Sent: Friday, December 12, 2008 8:22 AM
To: cf-talk
Subject: CF8, IIS7 and M$ Windows 2008

Just wondering, does anyone have CF8 installed on M$ Windows 2008? Does it
play nice with IIS7? Also, which version of the OS are you using? The Adobe
website does not list the 2008 Web edition as an OS that will work. Any,
other issues that I might want to know?

Thanks, Che





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

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


RE: Adobe's CF IDE, Bolt

2008-12-04 Thread Jacob
+1

-Original Message-
From: John M Bliss [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 04, 2008 6:39 AM
To: cf-talk
Subject: Re: Adobe's CF IDE, Bolt

I signed up for the beta.  No word from the mothership yet.

On Thu, Dec 4, 2008 at 8:36 AM, Rick Faircloth
[EMAIL PROTECTED]wrote:

 So...anyone *not* using the Bolt beta, please raise your hands...

 I don't see any hands, so it must be out.

 Is anyone allowed to confirm that it's out and being used and therefore
 I didn't get a chance to work with the beta?  :o(

 Rick

 



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

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


RE: Mail problem

2008-08-14 Thread Jacob
Good luck with Yahoo.  We had the same issue for over two years now. We have
issues with emails in regards to customer orders, membership questions, and
support information. No newsletter or anything like that. We try to email
the customer, only to find out that they did not get our email because they
call us.

We have followed every suggestion Yahoo recommends and nothing works.  Then,
some of the emails would be deferred, some not.

When we had the same issue with AOL, I was able to actually communicate with
some via email to help resolve the issue. Not some template email like Yahoo
sends out.

We just tell our customers that Yahoo is incepting their emails, reading
them, and not allowing you to receive them. Then, the customer will call us
the same day with their email address change.

-Original Message-
From: Al Musella, DPM [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 14, 2008 1:25 PM
To: CF-Talk
Subject: Mail problem

  I send out an opt-in medical newsletter.. that adheres to all of the
rules..

recently yahoo blocked the from address from sending mail - no 
bounce backs - not put in spam folder - just deleted, for ALL mail 
going to yahoo.com..  from this email address.

They do this occasionally, and I fill out the form to remove me from 
the blacklist, and a week or so later, it works again for a while, 
then they block us again.

I get a lot of complaints from people who don't get it..

I found a strange work around: apparently, that one email address is 
blocked.  Not the domain name.   I changed the FROM and the mail gets
through.

I am wondering - what would happen if I sent it from a different 
address each day? or even perhaps a different address for each email?

I know not having that specific FROM address in their address book 
might make it go to their spam folder, but at least they could find 
it there. As it is now - they have no hope of getting it.

On a related note - I have a feedback loop set up with AOL.  I get a 
handful of people every day hitting the this message is SPAM 
button.   I then email them to tell them I removed them from the 
mailing list, and they usually say they didn't intend to be removed - 
they were just trying to delete it after they read it. Can people be 
this stupid?  I then tell them they will be permanently banned if it 
ever happens again.

Al





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

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


RE: HELP! SQL Injection Attack!

2008-08-07 Thread Jacob
Any recommendations for web app firewall?

I have worked with Netscreen network firewall for years.

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 07, 2008 9:01 AM
To: CF-Talk
Subject: RE: HELP! SQL Injection Attack!

 I'd like to know how I can stop the requests from ever 
 hitting the web-server.
 
 Can anyone point me at a resource for a firewall solution? 
 I've seen some isapi filter solutions, but they all seem to 
 just clean the querystring and then forward the request on -- 
 so it's still hitting CF. I'd really like to stop it before 
 we get to the web-server at all (let alone the CF application
 server).

You'd need a web application firewall for this. Any ISAPI solution runs
in-process with the web server.

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

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



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

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


RE: Login failed for user 'sa'

2008-07-15 Thread Jacob
Hmm.. really want to use sa for your SQL login?

-Original Message-
From: Orlini, Robert [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 14, 2008 8:50 AM
To: CF-Talk
Subject: Login failed for user 'sa'

Some of our CF programs are generating this SQL error.

[Macromedia][SQLServer JDBC Driver][SQLServer]Login failed for user 'sa'

Any ideas pls?

RO




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

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


RE: Login failed for user 'sa'

2008-07-15 Thread Jacob
+ 1000

-Original Message-
From: Ricardo Russon [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 15, 2008 1:28 AM
To: CF-Talk
Subject: Re: Login failed for user 'sa'

sa is the default MSSQL admin user.CF Should not be using this user account.

Perhaps the Database administrator changed the password because they noticed
a higher than normal connection count for this user?

Either way, you should be creating a new user with only the
required privileges and changing all you CF DSN's to that user.

Ricardo.

On Tue, Jul 15, 2008 at 1:50 AM, Orlini, Robert [EMAIL PROTECTED]
wrote:

 Some of our CF programs are generating this SQL error.

 [Macromedia][SQLServer JDBC Driver][SQLServer]Login failed for user 'sa'

 Any ideas pls?

 RO


 



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

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


RE: Money datatype in SQL Server

2008-06-10 Thread Jacob
Well... I use the money datatype in SQL server for our prices.  I have had
not issues.

When we output, we use #dollarformat(queryname.price)#.  Works for what we
do.

-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 10, 2008 9:23 AM
To: CF-Talk
Subject: Money datatype in SQL Server

Is there any bottom line recommendation on using the Money datatype
in SQL Server?  I've googled and found a lot of folks say not to use
it because of accuracy issues (and of course, the fact that it's
proprietary), but I haven't seen any that suggest a better
alternative.

My understanding is that Money is exactly the same as Decimal(19,4)...
so if there are accuracy issues with Money, wouldn't those same issues
exist with a Decimal datatype?  I saw one link that suggested that
Floats would be the most accurate... but I thought floats were
inherently *not* accurate.

Can anybody shed a bit of light?

Thanks!
Charlie

-- 
A byte walks into a bar and orders a pint. Bartender asks him What's
wrong? Byte says Parity error. Bartender nods and says Yeah, I
thought you looked a bit off.



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

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


RE: CF Developers - Iraq

2008-05-30 Thread Jacob
  The position comes with all the  bells and whistles (medical, dental,
life, 401k, etc.)

What life insurance company would give you a policy if your worked in Iraq?
;-)

-Original Message-
From: Steve Runyon [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 30, 2008 8:54 AM
To: CF-Jobs-Talk
Subject: Re: CF Developers - Iraq

If I wasn't married and didn't already have a job and it paid (and
protected) commensurate with the risks, I'd think about it for longer than
the 0.7 seconds I thought about just now.  :)

On Fri, May 30, 2008 at 11:29 AM, Paul Ihrig [EMAIL PROTECTED] wrote:

 whats the pay like?
 man, what adventure!


 On Fri, May 30, 2008 at 11:25 AM, Phillip Vector [EMAIL PROTECTED]
 wrote:

  Hrm Falls Church Iraq Hrm Difficult choice. :)
 
  =
  We are looking for a ColdFusion genius to join our web development
  team in Falls Church, VA.  The ideal candidate would also have a solid
  background in Flex.  We are looking for candidates that can start in
  the near term (2-3 weeks).  The position comes with all the bells and
  whistles (medical, dental, life, 401k, etc.)  If this sounds like you
  send your resume to [EMAIL PROTECTED]
 
  We are looking for multiple ColdFusion geniuses to join our web
  development team in Baghdad, Iraq.  The ideal candidates will also
  have familiarity with Flex.  We are looking for candidates that can
  start in the near term (2-3 weeks).  The position comes with all the
  bells and whistles (medical, dental, life, 401k, etc.)  If this sounds
  like you send your resume to [EMAIL PROTECTED]
 
 

 





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

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


  1   2   3   4   5   6   7   8   9   10   >