Re: Converted Application.cfm to Application.cfc and Having Problems

2009-06-18 Thread Michael Dinowitz

Maybe those per app settings are being overwritten in some other part of the
app.

On Thu, Jun 18, 2009 at 10:23 PM, Dawson, Michael m...@evansville.eduwrote:


 Yes, the per-app setting is enabled and I have specified my mappings and
 custom tag paths in the application.cfc file.

 The weird thing is that it works the majority of the time, but, man, the
 performance certainly sucks, not to mention the intermittent I can't find
 the custom tag errors.

 I would prefer if it would have just borked every time.  At least I would
 have something to start with.  ;-)

 Tomorrow, I'm going in with a fresh mind and I will strip everything down
 to the minimum until I find the problem.

 I just with Adobe would not have used custom tag paths to locate
 components.

 mike

  _

 From: Michael Dinowitz [mailto:mdino...@houseoffusion.com]
 Sent: Thu 6/18/2009 5:34 PM
 To: cf-talk
 Subject: Re: Converted Application.cfm to Application.cfc and Having
 Problems




 Are you using the per-app settings right? The docs are a little wonky.
 I have a writeup on blog of fusion but the basics are below

 http://www.blogoffusion.com/032508-coldfusion-8-per-app-settings--mappings.cfm

 This is what the docs say
 cfset this.mappings[MyMap]=c:\inetpub\myStuff

 This is what is needed
 cfset this.mappings[/MyMap]=c:\inetpub\myStuff

 Note the slash in the beginning of the mapping.

 Or it may be something else. :)








 

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


Re: client holding open a connection

2009-06-12 Thread Michael Dinowitz

It looks like cfflush might be the culprit here. The connection seems to be to 
a bot which may be slow or inefficient. I'm speculating that the connection 
that is opened by cfflush to the webserver and caller may not obey the default 
timeout for an application. Again, not sure, but the removal of cfflush looks 
like a valid solution to the problem. I'll know soon.


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


Re: client holding open a connection

2009-06-12 Thread Michael Dinowitz

Not refusing but either not closing the connection or keeping it open longer
than it should.
Normally, the CF server generates some content and sends it as a whole to
the webserver to be delivered. Once the data is handed off, the CF thread is
dead. In this case, a timeout will kill the thread and nothing generated
will go to the webserver.
Now a cfflush takes some (but not all) of the content generated as a result
of a thread and gives it to the webserver to deliver. The webserver is
'told' that more is coming till all of it is done. The webserver gives the
data that it has already and delivers it with a 'promise' to the client that
more will come. When CF finishes the data it has for the request, the client
sends it and then closes the connection. If the client is slow in getting
the information, the webserver will keep the connection open and send data
down it until all of it is sent.
Now lets speculate that as long as the webserver still has content for the
client, the connection to CF is kept open as well. CF has finished sending
data to the webserver and the thread should close but it's kept open until
the webserver closes it.
I know this sounds strange, but it looks very much like what's going on.
I'll let you know what else I find.

On Fri, Jun 12, 2009 at 6:48 PM, Ben Nadel b...@bennadel.com wrote:


 Michael,

 I'm not sure I understand? You mean like after the bot gets the first chunk
 of content, it somehow refuses to get the rest?


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

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


 

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


client holding open a connection

2009-06-11 Thread Michael Dinowitz

I've got a client site that keeps going down and the reason is rather
strange. Some domain has read the sitemap for the site and is hitting
the site 10+ times in a single second. Now this would not be a problem
except that according to the IIS logs, they are holding open the
connection for a huge amount of time, well above the timeout value set
in the CF admin. Even if the page is returning 0 bytes, the connection
stays active for 150 seconds.
Has anyone heard of this?

I'm coding a solution to abort any connection that has more than 4
connections in a single second but that feels like a hack.

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos

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


Re: client holding open a connection

2009-06-11 Thread Michael Dinowitz

various. some have not 'compatable' segment of the browser type, some
do. Different IPs announce as different browsers. It looks like a bot
but it would be a bot that's used by banks as well as non-banks and it
would have that connection open issue.

I may know what the problem is, but I'm still investigating.

On 6/11/09, Dave Watts dwa...@figleaf.com wrote:

 I've got a client site that keeps going down and the reason is rather
 strange. Some domain has read the sitemap for the site and is hitting
 the site 10+ times in a single second. Now this would not be a problem
 except that according to the IIS logs, they are holding open the
 connection for a huge amount of time, well above the timeout value set
 in the CF admin. Even if the page is returning 0 bytes, the connection
 stays active for 150 seconds.
 Has anyone heard of this?

 What user agent string are you seeing in the IIS logs?

 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!

 

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


New House of Fusion lists and aliases

2009-06-08 Thread Michael Dinowitz

Due to requests and interest, I've started a few new lists on House of Fusion. 
Jquery (http://www.houseoffusion.com/groups/jquery)
Flex Newbies (http://www.houseoffusion.com/groups/flex-newbies)
ColdFusion Builder (http://www.houseoffusion.com/groups/coldfusion-builder)

I've also gotten requests to add aliases to the main mailing lists to make 
posting easier. A few people were typing cf in their TO field and it 
automatically entered cf-talk when cf-community was meant or visa versa. The 
aliases are:

cf-community-   community 
cf-talk -   coldfusion 
cf-jobs -   jobs 
cf-newbie   -   newbie 

If there's any lists that you feel are missing or any features you want 
added/changed, you can email me directly or use the contact form at:
http://www.houseoffusion.com/contact.cfm

Thank you for your participation. I hope you enjoy the new lists and features. 

Michael Dinowitz
Host: House of Fusion 

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


Re: Dynamic robots.txt

2009-05-27 Thread Michael Dinowitz

I've gone the route of rewriting IIS's 404 handler in the past and I highly
suggest against it. Mapping .txt to CF would work, but that means every .txt
file will be handled, not just robots.txt. What I do for my clients is use
the ionic isapi to watch for any call to robots.txt and then redirect the
request (on the back end) to ColdFusion. To the visitor, it looks like an
actual robots.txt. I do the same for dynamic sitemaps as well as a number of
other things.

http://www.codeplex.com/IIRF

Yes it's free but that should not be a negative.

On Wed, May 27, 2009 at 9:41 AM, Andy Matthews amatth...@dealerskins.comwrote:


 We have an application which delivers about 2000 websites. This is really
 nice for lots of things, but not so nice for items such as robots.txt where
 we might want unique values. Reviewing the spec for robots.txt it requires
 that sitemap references be absolute paths (while everything else can be
 root
 relative). As a hard coded file we obviously can't do this.

 A coworker had the idea to delete our robots.txt file and use our 404
 handler to toss that request to ColdFusion, and write in the absolute path
 to our sitemap each time the file is requested.

 1) Can this be done reliably?
 2) Is anyone out there doing this already and could answer these questions?

 Andy Matthews
 Senior Web Developer

 www.dealerskins.com

 P Please consider the environment before printing this e-mail.

 Total customer satisfaction is my number 1 priority! If you are not
 completely satisfied with
 the service I have provided, please let me know right away so I can correct
 the problem,
 or notify my manager Aaron West at aw...@dealerskins.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:322837
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamic robots.txt

2009-05-27 Thread Michael Dinowitz

Sounds like the same type of app I work on for a client of mine. He has a
number of websites pointing to a single IP and the domain requested
determines the content provided. A royal mess but...
I'd love to rebuild it but he's more interested in my SEO work, which is why
the dynamic sitemaps and robots.txt (and lowercase urls, and no ? vars, and
and and)

On Wed, May 27, 2009 at 4:09 PM, Cutter (CFRelated) 
cold.fus...@cutterscrossing.com wrote:


 It's a little hard to explain. It's an inherited application, that is
 (very) slowly being refactored. To get some idea, you can read this post
 from last year:


 http://blog.cutterscrossing.com/index.cfm/2008/6/22/Build-Applications-That-Scale

 No, there aren't 2000 entries in IIS. It's a single application template
 engine that keys off of the domain name to decide what the site will
 look like/do. It's crazy to work on, and a testament to what CF is
 capable of. Peter Bell was brought in to help us with some planning on
 refactoring, and Mike Brunt was brought in post server migration to
 assist us with some fine tuning. As a team, it isn't what our ideal app
 would look like, and we're moving in that direction, but we also have to
 keep feeding the kids;)

 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 5/27/2009 2:43 PM, Nathan Strutz wrote:
  I second Michael's suggestion of IIRF, http://www.codeplex.com/IIRF -
 it's
  pretty good.
 
  Now, back to the original question, how to make a dynamic robots.txt
 file.
 
  Why not generate it? Throw together a script that generates the content
 of
  your file, then write it to the web root of your web sites. ba-da-bing,
 no
  server installs for rewrite plugins, no strange 404 error catching and no
  reconfiguration of JRun to get it to parse *.txt files. Put it on a
 schedule
  to run every day or every hour or just run it when you want.
 
 
  Now that that's solved (...right...) what's this about an app that runs
 2000
  web sites? Please tell me there aren't 2000 entries in your web server
 for
  different domains and that you instead, intelligently, map them to the
 same
  web front end with some certain things switched in and out based on the
  domain... please?
 
  I once worked at this shop where we had 10 nearly identical sites. Just
 the
  pain in managing that was hard enough. When the owner wanted to add 5
 more,
  I stopped him, wrote a generic customizable version and then let him add
 as
  many as he wanted. Less management for me, quicker response time for him.
 
 
  nathan strutz
  [Blog and Family @ http://www.dopefly.com/]
  [AZCFUG Manager @ http://www.azcfug.org/]
  [Twitter @nathanstrutz]
 
 
  On Wed, May 27, 2009 at 11:17 AM, Michael Dinowitz
  mdino...@houseoffusion.com  wrote:
 
  I've gone the route of rewriting IIS's 404 handler in the past and I
 highly
  suggest against it. Mapping .txt to CF would work, but that means every
  .txt
  file will be handled, not just robots.txt. What I do for my clients is
 use
  the ionic isapi to watch for any call to robots.txt and then redirect
 the
  request (on the back end) to ColdFusion. To the visitor, it looks like
 an
  actual robots.txt. I do the same for dynamic sitemaps as well as a
 number
  of
  other things.
 
  http://www.codeplex.com/IIRF
 
  Yes it's free but that should not be a negative.
 
  On Wed, May 27, 2009 at 9:41 AM, Andy Matthews
 amatth...@dealerskins.com
  wrote:
  We have an application which delivers about 2000 websites. This is
 really
  nice for lots of things, but not so nice for items such as robots.txt
  where
  we might want unique values. Reviewing the spec for robots.txt it
  requires
  that sitemap references be absolute paths (while everything else can be
  root
  relative). As a hard coded file we obviously can't do this.
 
  A coworker had the idea to delete our robots.txt file and use our 404
  handler to toss that request to ColdFusion, and write in the absolute
  path
  to our sitemap each time the file is requested.
 
  1) Can this be done reliably?
  2) Is anyone out there doing this already and could answer these
  questions?
  Andy Matthews
  Senior Web Developer
 
  www.dealerskins.com
 
  P Please consider the environment before printing this e-mail.
 
  Total customer satisfaction is my number 1 priority! If you are not
  completely satisfied with
  the service I have provided, please let me know right away so I can
  correct
  the problem,
  or notify my manager Aaron West at aw...@dealerskins.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:322845
Subscription: http

Re: cfdot.net new Coldfusion / C# Comparison site

2009-05-17 Thread Michael Dinowitz

What does .Net have that you think is missing in ColdFusion? Should there be
a separate page for each language on what's missing and maybe how it can be
remedied?

On Sun, May 17, 2009 at 6:18 PM, Mike Chabot mcha...@gmail.com wrote:


 For features where there is no obvious equivalent you could add
 entries stating that so people don't waste time looking around. The



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


Missing mail

2009-05-15 Thread Michael Dinowitz

Some messages sent last night did not make it to the list. If you think your
post was one of them, check the archives to see if its there. If not, please
post again.

Thank you

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


(ot) Database comparison software

2009-05-15 Thread Michael Dinowitz

When I have to compare two directories of code, I use beyond compare. It
shows me the differences on a macro and micro level. Now if I wanted to do
the same with with a SQL server, what would I use? I want to compare the
format of two databases and see if there are any differences in the tables.
I could do a 'hack' and generate a script for each DB and then compare them
but there must be something  a little cleaner.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Best way to extend from a parent directory

2009-05-14 Thread Michael Dinowitz

I have an application where a component in one directory wants to extend a
component from a previous directory. Normally you would need to either write
the extend path from the root or from a mapped location
examples:
root.dir1.dir2.component
mapped_location.dir2.component

Is there a way to extend from a directory up without using either of these
methods? Basically, the equivalent of html's ../

Thanks

-- 
Michael Dinowitz   (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Publisher: Flex Authority(http://www.flex-authority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: Paypal Changes

2009-05-14 Thread Michael Dinowitz

If you mean Payflowpro then there are 2 fast solutions that do not require a
new Java install:
1. CF_PayFlowPro (http://cf_payflowpro.riaforge.org)
This is a component that literally drops into place where the Payflowpro
CFXC tag was. I used it for a client and it took all of 1 minute to put in
and run a few tests. Worked perfectly.
2. cfPayflowPro (http://cfpayflowpro.riaforge.org)
This is a set of components that take the place of the old CFX tag. This
means a rewrite of any code

On Thu, May 14, 2009 at 7:54 PM, Al Musella, DPM
muse...@virtualtrials.comwrote:


   I just heard about the paypal changes..
 
 http://www.pdncommunity.com/pdn/board/message?board.id=payflowthread.id=6807
 
 http://www.pdncommunity.com/pdn/board/message?board.id=payflowthread.id=6807

 Starting Sept 1 none of my paypal sites will wok:)


 I have a bunch of websites on cfmx 7. Apparently the new tags work on
 latest Java SDK, v4.31.

 Can I just install that version of Java on the cfmx 7 server without
 hurting anything else?


 

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


Re: steve.lichtenberg has invited you to Spokeo

2009-05-05 Thread Michael Dinowitz

Please do not send general social networking requests to the lists. If
there is someone you want to connect with, let them know directly.
General requests like this can be lost on your specific target.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos

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


Re: better mass mailing

2009-05-01 Thread Michael Dinowitz

None at all. I think its great and does the job well. Unfortunately, without
hearing from Howie, I have to find solutions for people who want to use the
product but can't register, renew, buy, or whatever it.

On Thu, Apr 30, 2009 at 4:30 PM, Al Musella, DPM
muse...@virtualtrials.comwrote:


 What problem are you having with iMS?


 At 11:50 AM 4/30/2009, you wrote:

 Till now I've been using iMS to send out list mail. The advantages are
 that
 iMS will do a single connection to a mail server and send all messages for
 that mail server on a single connection. This is important when combined
 with its ability to set tokens in an email which will be replaced with
 unique values (such as a recipient's id). If I was to do the same with CF,
 it would generate 3,000 unique emails per cf-talk post. This does not have
 the single connection efficiency that iMS does.
 So here's the question. Does anyone know of a tokenized mass mailing
 application? iMS still works for me but I'm looking towards the future.
 
 Thanks



 

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

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


better mass mailing

2009-04-30 Thread Michael Dinowitz

Till now I've been using iMS to send out list mail. The advantages are that
iMS will do a single connection to a mail server and send all messages for
that mail server on a single connection. This is important when combined
with its ability to set tokens in an email which will be replaced with
unique values (such as a recipient's id). If I was to do the same with CF,
it would generate 3,000 unique emails per cf-talk post. This does not have
the single connection efficiency that iMS does.
So here's the question. Does anyone know of a tokenized mass mailing
application? iMS still works for me but I'm looking towards the future.

Thanks
-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: CFINPUT won't accept submit as a type

2009-04-26 Thread Michael Dinowitz

The server has to be on CF MX (6) or lower. CF7 and over has submit as a
proper type for cfinput.

On Mon, Apr 27, 2009 at 1:09 AM, Maureen mamamaur...@gmail.com wrote:


 Have any of you seen this? It makes no sense at all since cfinput
 type=submit  is valid syntax

 Here's the code:
 cfform method=get name=loginForm onsubmit=return false;
   cfinput type=text name=username label=username /
   cfinput type=password name=password label=password /
   cfinput type=submit name=submit value=login! onclick=doLogin();
 /
  /cfform

 Here's the error:   Attribute validation error for tag CFINPUT.
 The value of the attribute TYPE, which is currently submit, must be
 one of the values: RADIO,CHECKBOX,PASSWORD,TEXT.

 

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


cf admin mail location mapping

2009-04-21 Thread Michael Dinowitz

Does anyone know offhand where the mail directory is mapped in CF8? I'd
rather not have the mail piled onto the C drive if I can help it.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


~|
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:321832
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 admin mail location mapping

2009-04-21 Thread Michael Dinowitz

Found it but it'll be an ugly change. The value is:
{neo.rootdir}/mail
rootdir is basically a 'hard' setting which defaults to c:\coldfusion8. I say 
hard because changing it will have a massive effect on your CF server. This 
means that I'll have to edit the value by hand to remove the rootdir reference. 
This is not good as it will have to be redone anytime a new release of CF or a 
server patch is applied.
Ick.

Oh, the files are:
\lib\neo-mail.xml
\runtime\servers\coldfusion\server-inf\temp\wwwroot-tmp\server_settings.xml

I'm not sure if the second file is necessary.

Does anyone know offhand where the mail directory is mapped in CF8? I'd
rather not have the mail piled onto the C drive if I can help it.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos 

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


Re: CFIMAGE - for all formats

2009-04-17 Thread Michael Dinowitz

What is the image type?

On Fri, Apr 17, 2009 at 7:25 AM, Fawzi Amadu abd...@gmail.com wrote:


 Hi, I am trying to resize images with CFIMAGE but when I process my code, I
 keep getting an error that: The images/consumer/ image format is not
 supported on this operating system.

 Initially I left the format attribute out and got the same error with a
 suggestion that I try using GetReadableImageFormats(), but this hasn't
 resolved the problem.

 How can I resolve this problem, TIA



 Here's the code:

 The error occurred in
 C:\ColdFusion8\wwwroot\e-Ghana\process_simpleSearchResults.cfm: line 45
 43 :
 44 : td width=10%!--- creating a resized version of uploaded image
 of product. ---
 45 : cfimage source=images/consumer/#Cnsmr_ProductIMAGE# action=resize
 width=100 height=60 name=resizedImg format= GetReadableImageFormats()
 46 : cfimage source=#resizedImg# action=writeToBrowser!---img
 src=images/consumer/#Cnsmr_ProductIMAGE#---/font/td
 47 : td width=90%font size=+2#Cnsmr_ProductDESCRIPTION#
 /fontnbsp; font size=+2a
 href=showProductDetail.cfm?Cnsmr_ProductID=#URLEncodedFormat(TRIM(Cnsmr_ProductID))##Cnsmr_ProductMODELNo#
 /fontnbsp;/a

 

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


Re: (OT) W32.Virut.W

2009-03-27 Thread Michael Dinowitz

Not yet but I did come to a solution. The virus is doing 2 basic things.
1. spawning off new process files to run
2. opening up a back door for someone to come in and update/install new
viruses
I'm using a program called stopzilla to stop the backdoors from operating
until I can remove them. No new processes are being spawned off and the
machine isn't rebooting every few minutes 2 or 3 times a day. It's proved
itself enough and I'll be ordering a subscription soon.


On Thu, Mar 26, 2009 at 9:32 AM, Gerald Guido gerald.gu...@gmail.comwrote:


 Shot in the dark... but did you try Dr. Web?

 http://www.freedrweb.com/

 HTH
 G!

 On Thu, Mar 26, 2009 at 5:12 AM, Michael Dinowitz 
 mdino...@houseoffusion.com wrote:

 
  Thanks but neither solution seems to have an option to actually remove
 the
  viruses.
 



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


Re: (OT) W32.Virut.W

2009-03-26 Thread Michael Dinowitz

Thanks but neither solution seems to have an option to actually remove the
viruses.

On Wed, Mar 25, 2009 at 11:33 PM, Kym Kovan dev-li...@mbcomms.net.auwrote:


 Michael Dinowitz wrote:
  The House of Fusion webserver has the W32.Virut.W virus. Does anyone know
 a
  way to remove this virus remotely on a windows 2000 machine? I can't boot
 it
  into safe mode so that's not an option.
  Thanks
 


 We have used TrendMicro's Housecall successfully on some virii or check
 the other online ones:

 http://www.precisesecurity.com/antivirus/online-scan.htm


 --

 Yours,

 Kym Kovan
 mbcomms.net.au


 

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


(OT) W32.Virut.W

2009-03-25 Thread Michael Dinowitz

The House of Fusion webserver has the W32.Virut.W virus. Does anyone know a
way to remove this virus remotely on a windows 2000 machine? I can't boot it
into safe mode so that's not an option.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: Yikes... List Spam

2009-03-24 Thread Michael Dinowitz

Yes, a spam message got through masquerading as a legit post. I've removed it. 
I think that's 1 so far this year. :(

Do everyone else get spam mail through the list? 


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


(admin) off topic threads

2009-03-24 Thread Michael Dinowitz

As we just saw, a spam message got through to the list. I've since deleted
it from the archives. If such a message does come through in the future, or
any message which is an abuse of the list, please do not reply to it as I
will have to remove the reply as well.
Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: Yet another SEO/URL rewrite question....

2009-03-19 Thread Michael Dinowitz

.baseball is a non-standard extension and does not fit the 3-4 letter norm
so Google may not like it. some-cool-products.cfm is valid but the name
should be contextual to the content of the file. If your product is
baseballs and footballs, I'd suggest
www.mycoolsite.com/products/baseball/babe-ruth-signed-baseball.cfmhttp://www.mycoolsite.com/some-cool-product.baseball
www.mycoolsite.com/products/baseball/old-style-wood-baseball.cfmhttp://www.mycoolsite.com/some-cool-product.baseball
www.mycoolsite.com/products/footballhttp://www.mycoolsite.com/some-cool-product.baseball
/pigskin.cfm
www.mycoolsite.com/products/football/http://www.mycoolsite.com/some-cool-product.baseball
oilskin.cfm

Descriptive sub-directories are great when the content of the sub-directory
all interrelate.
I do a 2 day hands on understanding of how Google expects and likes content
which the above is just a tiny fraction. In the end there's just one thing
that will make you succeed. Good content with good descriptive display. No
tricks, just follow the rules, especially the ones that people ignore (like
basic HTML).

On Wed, Mar 18, 2009 at 9:43 AM, Will Tomlinson w...@wtomlinson.com wrote:


 I'm planning on using onMissingMethod() to create some pretty URL's for
 products, using a new db field (productPrettyTitle) in my products table.
 I'd rather not use an ISAPI filter right now.

 Everything seems to work OK so far, but I wondered what would happen if I
 took it a step further.

 Is there a downside to adding more keyword-rich extensions in whatever CF
 config xml file?

 So for a baseball product site, I'd have:

 www.mycoolsite.com/some-cool-product.baseball

 Instead of:

 www.mycoolsite.com/some-cool-product.cfm

 Will googlebot care? Will I be penalized?

 Thanks,
 Will


 

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


Re: Read email contents and enter into database

2009-03-17 Thread Michael Dinowitz

cfpop returns a query object which can be looped through to get each email,
which is contained within a single row. Do a test on the email and look at
body, textbody, and htmlbody to see which you want. Once you know what you
want to send to the DB, just loop over the query and run a cfquery to insert
as normal.

On Tue, Mar 17, 2009 at 12:45 PM, Jason Congerton 
ja...@jasoncongerton.co.uk wrote:


 Hi

 I have had look via google and found no answers, has anybody ever needed to
 read the contents of an email and enter them into a database.

 The subject line will contain a unique identifier and emails will be fired
 into a single account.

 I need to get the body contents and enter them into a database aginst the
 unique id in the subject line.

 I know i will need cfpop to read the mail, just not sure how to access the
 contents.

 Many thanks

 Jason

 

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


Re: Infusion mail server from Coolfusion

2009-03-11 Thread Michael Dinowitz

I've installed a copy onto a new machine just recently and had no real
problems with the demo time. I have not moved my license yet but will try it
tonight to see if I can get it done. What version of the code did you try to
install and what's failing? If it was a higher version than what I got to
work, I'll send you my install for you to try.
Also, remember that iMS uses domain templates that may have to be mapped in
'strange' ways. I had to play with them a little on my new CF8 based mail
server to get them working. Oh, and I had to move an older CF dll to work
properly. Give me your setup specs and I'll get mine together for you.

On Wed, Mar 11, 2009 at 4:08 PM, Jim Edlin jim.ed...@webmond.com wrote:


 The Infusion mail server from Coolfusion uses a phone home license
 enforcement scheme - which is now a problem since their authentication
 server has gone 404 (as the whole company seems to be doing).  Being
 unaware
 of that problem, we attempted to move Infusion to a new server (which
 required uninstalling it on the old server).  Now we can't get it to
 install
 and authorize on either the new or old server.  We have some code that is
 specifically dependent on the Infusion server.  Does anyone know of a
 workaround to keep this server alive until we can code an alternative using
 another server.



 --Jim Edlin



 Jim Edlin

 jim.ed...@webmond.com

 www.jimedlin.com

 AIM: jakedlin

 415-810-1425





 

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


Re: Infusion mail server from Coolfusion

2009-03-11 Thread Michael Dinowitz

If anyone has problems getting a new install of iMS working, let me know.
I'll try to walk you through

On Wed, Mar 11, 2009 at 5:03 PM, Michael Dinowitz 
mdino...@houseoffusion.com wrote:

 I've installed a copy onto a new machine just recently and had no real
 problems with the demo time. I have not moved my license yet but will try it
 tonight to see if I can get it done. What version of the code did you try to
 install and what's failing? If it was a higher version than what I got to
 work, I'll send you my install for you to try.
 Also, remember that iMS uses domain templates that may have to be mapped in
 'strange' ways. I had to play with them a little on my new CF8 based mail
 server to get them working. Oh, and I had to move an older CF dll to work
 properly. Give me your setup specs and I'll get mine together for you.


 On Wed, Mar 11, 2009 at 4:08 PM, Jim Edlin jim.ed...@webmond.com wrote:


 The Infusion mail server from Coolfusion uses a phone home license
 enforcement scheme - which is now a problem since their authentication
 server has gone 404 (as the whole company seems to be doing).  Being
 unaware
 of that problem, we attempted to move Infusion to a new server (which
 required uninstalling it on the old server).  Now we can't get it to
 install
 and authorize on either the new or old server.  We have some code that is
 specifically dependent on the Infusion server.  Does anyone know of a
 workaround to keep this server alive until we can code an alternative
 using
 another server.



 --Jim Edlin



 Jim Edlin

 jim.ed...@webmond.com

 www.jimedlin.com

 AIM: jakedlin

 415-810-1425





 

~|
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:320417
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 restart daily

2009-03-10 Thread Michael Dinowitz

It looks like it was the whole machine and at the time A message is given
that the Windows 2000 Hotfix Rollup 1 was installed. On a daily basis.

On Sat, Mar 7, 2009 at 11:44 AM, Brad Wood b...@bradwood.com wrote:


 Michael, do you have any word on this?  I'm kind of curious.

 Could you clarify if the ColdFusion service is restarting or the OS.
 You said cron job-- are you hosting on Linux?

 First of all, how do you know it is restarting?  What is the symptom?

 If it is ColdFusion that is restarting, start with the server out logs in
 /log/
Also on ColdFusion: Do you have SeeFusion installed to log long requests
 and server memory levels?
 If it is windows that is restarting check the window system event log (and
 check for Windows update auto-restarts)
Also on Windows: Check windows scheduled tasks under system tools.
 If it is Linux that is restarting, start looking in /var/log/message
Also on Linux: how are you viewing cron jobs?  If it is root's cron job,
 you won't see it with crontab until you su to root.

 Hope you get the source.  :)

 Thanks.

 ~Brad

 - Original Message -
 From: Michael Dinowitz mdino...@houseoffusion.com
 To: cf-talk cf-talk@houseoffusion.com
 Sent: Friday, March 06, 2009 12:22 PM
 Subject: CF restart daily


 
  I've looked through the archives. I've checked my settings. I've done
 just
  about everything possible to be done and I still can't find out why HoF
  reboots every day at about 12:00. If it was memory, I'd expect it to be
  more
  random. It looks like some sort of scheduled event but there is no cron
  job
  on the server. Any other scheduled events I could look at?
 

 

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


CF restart daily

2009-03-06 Thread Michael Dinowitz

I've looked through the archives. I've checked my settings. I've done just
about everything possible to be done and I still can't find out why HoF
reboots every day at about 12:00. If it was memory, I'd expect it to be more
random. It looks like some sort of scheduled event but there is no cron job
on the server. Any other scheduled events I could look at?


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


Re: Need a new host

2009-03-02 Thread Michael Dinowitz

I've used AHPHosting.net for the last 10 years or so. Their only problem is
that whenever there is a problem with my servers, they look bad. I have my
own boxes there, thought the new mail server is on a VPS.

On Mon, Mar 2, 2009 at 9:13 AM, David Fekke da...@fekke.com wrote:


 I need a new host for a client of mine. Here are the requirements;

 ColdFusion 8 on Windows
 SQL Server 2005/8, 2008 preferred
 Support for a java library that lets him connect to a First Data merchant
 account
 SSL certificate support

 The client would prefer a shared hosting environment to keep costs down.

 

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


Re: Chrome now higher traffic than IE on some of my sites

2009-03-02 Thread Michael Dinowitz

House of Fusion's Google analytics stats for January shows:
47.06%  Firefox
43.41%  IE
 4.30%  Chrome
 3.04%  Safari
 1.40%  Opera

We tend to be tech user heavy on our visitors so the numbers may not reflect
those of non-tech focused sites.

An additional but unrelated stat shows that visitors using a resolution size
of 1280x1024 or better has risen to 73.5%.
We're movin on up - Jeffersons

On Mon, Mar 2, 2009 at 10:23 PM, Rick Root rick.r...@webworksllc.comwrote:


 On Mon, Mar 2, 2009 at 9:08 PM, John M Bliss bliss.j...@gmail.com wrote:
 
  Seems anomalous to me:
 http://www.w3schools.com/browsers/browsers_stats.asp

 I would agree.  I don't have quick stats on browsers for classcreator
 but I do track user agents whenever a user logs in to our system.
 I've tracked over 1.1 million logins since january 1 of this year, and
 here are some basic counts:

 MSIE938310
 Firefox 175743
 Chrome  4953

 Classcreator is definately IE-heavy!

 --
 Rick Root
 New Brian Vander Ark Album, songs in the music player and cool behind
 the scenes video at www.myspace.com/brianvanderark

 

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


Re: HTTP_USER_AGENT question

2009-02-20 Thread Michael Dinowitz

They do, but they are usually one shot sessions. Basically, most bots do not
keep state. When it hits one page and gets a session, the next page it hits
is treated as if it was a new visit. In other words, a new session. The
amount of bots that keep state and have a single session were rare but are
becoming more prevalent. When I write bots, I always write them with state
management.

Bottom line is that if you have session turned on, every visitor will have a
session.

On Fri, Feb 20, 2009 at 7:14 AM, John M Bliss bliss.j...@gmail.com wrote:


 
  It notes the more common bots (google) and assigns them a timeout of 2
  seconds.


 I'm under the impression that bots (or just the Google bot?) don't do
 sessions at all, no?


 On Fri, Feb 20, 2009 at 1:44 AM, Michael Dinowitz 
 mdino...@houseoffusion.com wrote:

 
  I use this in my application.cfc right at top. It notes the more common
  bots
  (google) and assigns them a timeout of 2 seconds. You can use the same
  logic
  for whatever you want.
 
  IF
 
 
 (REFindNoCase('Slurp|Google|BecomeBot|msnbot|ZyBorg|RufusBot|EMonitor|java',
  cgi.http_user_agent))
 This.sessionTimeout=createtimespan(0,0,0,2);
 
 
  On Thu, Feb 19, 2009 at 10:22 PM, Les Mizzell lesm...@bellsouth.net
  wrote:
 
  
   In working out my Googlebot problem, I came across an idea of using
   HTTP_USER_AGENT to identify a bot, and then exclude it from an area or
   whatever (redirect it to www.disney.com or something... that's a joke)
   ... assuming it gets in despite the robots.txt file.
  
   So, this looks like a good starting point to modify from:
  
  
  
 
 http://www.bennadel.com/blog/1083-ColdFusion-Session-Management-And-Spiders-Bots.htm
  
   I see how to deal with bots you can identify. Can anybody think of a
 way
   or have an example of how to figure out that it's a unidentifiable bot
   (rather than a real user with a browser) and redirect/whatever?
  
   Just asking
  
  
 
 

 

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


Re: HTTP_USER_AGENT question

2009-02-19 Thread Michael Dinowitz

I use this in my application.cfc right at top. It notes the more common bots
(google) and assigns them a timeout of 2 seconds. You can use the same logic
for whatever you want.

IF
(REFindNoCase('Slurp|Google|BecomeBot|msnbot|ZyBorg|RufusBot|EMonitor|java',
cgi.http_user_agent))
This.sessionTimeout=createtimespan(0,0,0,2);


On Thu, Feb 19, 2009 at 10:22 PM, Les Mizzell lesm...@bellsouth.net wrote:


 In working out my Googlebot problem, I came across an idea of using
 HTTP_USER_AGENT to identify a bot, and then exclude it from an area or
 whatever (redirect it to www.disney.com or something... that's a joke)
 ... assuming it gets in despite the robots.txt file.

 So, this looks like a good starting point to modify from:


 http://www.bennadel.com/blog/1083-ColdFusion-Session-Management-And-Spiders-Bots.htm

 I see how to deal with bots you can identify. Can anybody think of a way
 or have an example of how to figure out that it's a unidentifiable bot
 (rather than a real user with a browser) and redirect/whatever?

 Just asking

 

~|
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:319590
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 posts and CF-talk

2009-02-18 Thread Michael Dinowitz

How are you searching and what criteria?

On Wed, Feb 18, 2009 at 12:23 PM, Don L do...@yahoo.com wrote:


 I tried to dig up some old posts/follow-ups here, with phrase and/or
 {myUserId} to no avail.  What gives?  tks.

 

~|
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:319491
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 posts and CF-talk

2009-02-18 Thread Michael Dinowitz

Did you try the search in the upper left hand corner? It's CF-Talk specific.
The search in the upper right has an option for all of HoF, but not as
specific as the left one. Also, use don l. in quotes as one criteria.

On Wed, Feb 18, 2009 at 2:11 PM, Don L do...@yahoo.com wrote:


 How are you searching and what criteria?
 
 On Wed, Feb 18, 2009 at 12:23 PM, D
 
 
  I tried to dig up some old posts/follow-ups here, with phrase and/or
  {myUserId} to no avail.  What gives?  tks.
 
 

 Well, like a month or two ago, I posted a question about Adobe's key staff
 member on ColdFusion including tech and biz, couldn't find it any more,
 tried Adobe staff AND Don L. | Adobe AND Don L. | Don L.etc. with no
 luck.

 

~|
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:319496
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 posts and CF-talk

2009-02-18 Thread Michael Dinowitz

I have to reorganize the site. desperately.

On Wed, Feb 18, 2009 at 2:37 PM, Don L do...@yahoo.com wrote:


 Did you try the search in the upper left hand corner? It's CF-Talk
 specific.
 The search in the upper right has an option for all of HoF, but not as
 specific as the left one. Also, use don l. in quotes as one criteria.
 
 On Wed, Feb 18, 2009 at 2:11 PM, D
 
 

 yeah, i missed the top left search box for cf-talks only, called me
 right-eyed, got it, thks.

 

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


(Admin) Please check your filter

2009-02-06 Thread Michael Dinowitz

Someone on the list has an anti-spam filter which is spamming anyone who
posts to the list. If you recognize this text then please look into it.

Location: ICAA/First Administrative Group/CA-SYD-EXCH-01

Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: (Admin) Please check your filter

2009-02-06 Thread Michael Dinowitz

I removed the person this morning. If I get a response to this email I'll
dig further.

On Fri, Feb 6, 2009 at 1:48 PM, Dave Watts dwa...@figleaf.com wrote:


  Someone on the list has an anti-spam filter which is spamming anyone who
  posts to the list. If you recognize this text then please look into it.
 
  Location: ICAA/First Administrative Group/CA-SYD-EXCH-01

 The mail headers contain this address: antigen_ca-syd-exch...@icaa.org.au

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

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

 

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

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


Re: Antigen Notification

2009-02-04 Thread Michael Dinowitz

can you forward me the entire message so I can look it over and stop it. I
just need to see who's address is generating these.
Thanks

On Wed, Feb 4, 2009 at 2:42 PM, Claude Schneegans 
schneeg...@internetique.com wrote:


 Hi,

 Wondering if other people are receiving this message for every message
 they post here:
  Microsoft Antigen for Exchange found a message matching a filter. The
 message is currently Purged.
  Message: Re: PayPal French accents mishandled from CF pages
  Filter name: IllegalMimeHeader

 Looks some one here is behind some moron anti-spam filter?
 Or CF_Talk is really generating bad Mime header?

 

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


Re: Antigen Notification

2009-02-04 Thread Michael Dinowitz

Found it. Fixed it


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


Re: PayPal French accents mishandled from CF pages

2009-02-03 Thread Michael Dinowitz

Are you defining a base content-type for the page?

meta http-equiv=Content-type content=text/html; charset=UTF-8
What about your doctype?


On Tue, Feb 3, 2009 at 4:50 PM, John Pullam jpul...@mcleansystems.comwrote:


 I have a strange problem that involves passing hidden fields that contain
 French accents to PayPal from a Coldfusion web page. When I pass a form
 variable like this with the French accents imbedded in the data:

 input type=hidden name=city value=St-Jérôme

 PayPal struggles with the value and converts it into something unusable.
 When I create the identical page as an htm without server CF processing,
 PayPal eats it up and it works properly.

 Can anyone suggest what the difference between such a request being made
 from a post on a cfm page is versus an identical htm page?

 I'm sure someone will want to see the form tag. It is:

 form action=https://www.paypal.com/cgi-bin/webscr; method=post

 

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


Re: PayPal French accents mishandled from CF pages

2009-02-03 Thread Michael Dinowitz

Load up both pages in firefox and then view info for each. A plain,
non-outputting CF page gave me a content-type of utf-8 while a plain,
non-outputting htm page gave me a content-type of ISO-8859-1. I think CF
automatically returns the generated page using the utf-8 content type.

On Tue, Feb 3, 2009 at 8:29 PM, John Pullam jpul...@mcleansystems.comwrote:


 Are you defining a base content-type for the page?
 
 meta http-equiv=Content-type content=text/html; charset=UTF-8
 What about your doctype?
 
 
 On Tue, Feb 3, 2009 at 4:50 PM, John Pullam jpul...@mcleansystems.com
 wrote:
 
 
 Here is the Doctype:

 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN 
 http://www.w3.org/TR/html4/strict.dtd;

 Bear in mind that the 2 pages are identical. The page that works is called
 TestPayPal.htm, and the page that doesn't is called TestPayPal.cfm

 The only things I can think of is that the PayPal server is seeing the CFM
 and treating it differently. (Or that there is some invisible attribute that
 goes along with the page while it is in the client browser and is
 subsequently sent to the PayPal server when the FORM Post is executed.)

 There is no other special HTML ... this is pretty vanilla stuff.

 

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


Re: Just checking

2009-01-30 Thread Michael Dinowitz

The mail server had a totally corrupted drive and I had to get a whole new 
machine together. That means a new and better mail server but a downtime as I 
tried to recover stuff and get everything working.

Not heard a peep from CF-Talk in a while. Is anybody there? :O. 

~|
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:318662
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 Bolt anyone?

2009-01-23 Thread Michael Dinowitz
Information about Bolt can be found here:
http://labs.adobe.com/wiki/index.php/Bolt
There is a link to apply for the beta program when it is available. Other
than that, the NDA on Adobe alpha/beta programs restrict speaking about the
program.

On Fri, Jan 23, 2009 at 12:46 PM, Rick Faircloth
r...@whitestonemedia.comwrote:

 Anyone seen the beta of Bolt, yet?

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


webservice failure in cf 8

2009-01-16 Thread Michael Dinowitz
I have a client site that was working great. The machine got a worm and the
CF was reinstalled as CF 8.01. Now the webservice on the site fails with an
error of:
java.lang.ClassNotFoundException: _.redirect.RemotenumbersService

The webservice is:
cfobject type=WebService webservice=http://sitename/remote.cfc?wsdl;
name=ws refreshwsdl=Yes

Anyone ever see this or know what's up?
Thanks

If I don't reply to a reply with my thanks its because I'm running to pick
up Judith and the new baby before Shabbos. One day old and home. Fun!! :)
-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional
Si, soy el senor chico malo para todos


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


Re: webservice failure in cf 8

2009-01-16 Thread Michael Dinowitz
Wonderful. Thanks

 I have a client site that was working great. The machine got a worm 
 and the
 CF was reinstalled as CF 8.01. Now the webservice on the site fails 
 with an
 error of:
 java.lang.ClassNotFoundException: _.redirect.RemotenumbersService
 
 The webservice is:
 cfobject type=WebService webservice=http://sitename/remote.
 cfc?wsdl
 name=ws refreshwsdl=Yes
 
 Anyone ever see this or know what's up?
 Thanks
 
 Sounds like the generated class files got whacked..
 
 clean them up by deleting in webapps/cfusion/web-inf/cfusion/stubs 
 then the next time the page is run the ws stubs will be recreated. 
 
 Sam 


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


Re: AHP Hosting Down... Anyone on AHP?

2009-01-14 Thread Michael Dinowitz
House of Fusion is on the AHP Hosting network and has no problems. I checked
on some client sites and they're fine as well. What's wrong?

On Wed, Jan 14, 2009 at 3:09 PM, Mike Francisco cfmike...@gmail.com wrote:

 Is anyone being affected by AHP Hosting right now?

 Mike


 

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


Re: AHP Hosting Down... Anyone on AHP?

2009-01-14 Thread Michael Dinowitz
I saw their home site (http://www.ahphosting.net) down but not any of the
clients I knew of. As long as the clients are still up...
The last thing I need is the network going down as we release the PDF for
the next issue of Flex Authority.


On Wed, Jan 14, 2009 at 3:31 PM, Mike Francisco cfmike...@gmail.com wrote:

 Thanks Charlie, Mike.

 AHP was down for arout 15 to 30 min. I even checked AHP's own
 http://www.ahphosting.net and it was down as well for the duration as
 well.

 Anyway, It seems like everything is back to normal again.

 Mike




  -Original Message-
  From: Charlie Griefer [mailto:charlie.grie...@gmail.com]
  Sent: Wednesday, January 14, 2009 12:21 PM
  To: cf-talk
  Subject: Re: AHP Hosting Down... Anyone on AHP?
 
  i'm on a VPS with AHP, and it seems to be up.
 
  On Wed, Jan 14, 2009 at 12:09 PM, Mike Francisco
  cfmike...@gmail.comwrote:
 
   Is anyone being affected by AHP Hosting right now?
  
   Mike
  
  
  
 
 

 

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


Re: Authors out there?

2009-01-07 Thread Michael Dinowitz
1. CF-Jobs
2. Please post original url
3. A number of people on this list have written for Fusion Authority and
other publications so it should be a great interest.

On Wed, Jan 7, 2009 at 9:18 AM, Greg Luce luce...@gmail.com wrote:

  Just thought I'd forward this that came up in my RSS reader this
 morning: Seeking
 authors for Adobe software (PA)
 --
 Reply to: job-983162...@craigslist.org
 job-983162...@craigslist.org?subject=seeking%20authors%20for%20adobe%20software%20%20(PA)http://job-983162...@craigslist.org?subject=seeking%20authors%20for%20adobe%20software%20%20%28pa%29
 
  [? http://www.craigslist.org/about/help/replying_to_posts]
 Date: 2009-01-06, 9:27PM EST


 Write and Inspire! We are a traditional technical publisher that publishes
 cutting-edge computer books to world-wide audience. We are currently
 looking
 for a technical author who is capable of writing a book on the following
 software:

 Adobe Flash CS4
 Adobe InDesign CS4
 Adobe PhotoShop CS4
 Adobe After Effect CS4
 Adobe ColdFusion 8
 Adobe Dreamweaver CS4

 Whether you are a computer science student or a software engineer, you can
 make a difference by writing your own computer book and share your
 knowledge
 to the world-wide readers.

 Author is paid by royalty income once the book is published. No advance
 payments.


   - Location: PA
   - Compensation: Author is paid by royalty income once the book is
   published. No advance payments.
   - Telecommuting is ok.
   - This is a part-time job.
   - This is a contract job.
   - Principals only. Recruiters, please don't contact this job poster.
   - Please, no phone calls about this job!
   - Please do not contact job poster about other services, products or
   commercial interests.

 PostingID: 983162970


 

~|
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:317511
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) Ionic's Isapi Rewrite Filter and Site Crash

2009-01-07 Thread Michael Dinowitz
I had the same problem at one point and I think it turned out to be a bad
regex. A few questions:
1. is the ini file of the same filename as the dll and are they in the same
directory?
2. are you making sure that the rewriterule is both case insensitive and is
set to be the last rule checked?
3. have you put an index.cfm into the www.mysite.com/attorney/bob_smith
directory and looked at the page results in debug mode (or dumped out the
cgi vars)?

As it stands now, the regex will fail if www.mysite.com/attorney/bob_smith/
is the page requested. It will also fail for any subdirectories of bob_smith
or any file in the bob_smith directory. If your goal is to always get the
subdirectory directly under attorney then use this:
RewriteRule  ^/attorney/([^/]+)   /lawyers/get-bio.cfm?attorney=$1 [I,L]

This will avoid any problems with a trailing slash or file name in the
request.

As a side note, bob-smith is more valuable seo wise. Google looks at a dash
as a space. An underscore is a literal underscore character, not a space.

On Wed, Jan 7, 2009 at 9:06 PM, Les Mizzell lesm...@bellsouth.net wrote:

 If anybody is familiar with Ionic's Isapi Rewrite Filter...

 I have asked folks over on the Ionic's forum about this, but there's not
 much traffic there and I *bet* somebody here can answer before I get
 replies. Sorry for the OT, but I need to figure this out sooner than later!

 First, I'm *not* a server administrator. I know just enough to make
 small tweaks and get myself into trouble. So be kind!

 Trying to set up my first rewrite:

 RewriteRule  ^/attorney/([^/]+)$   /lawyers/get-bio.cfm?attorney=$1

 Should rewrite: www.mysite.com/attorney/bob_smith to
 www.mysite.com/lawyers/get-bio.cfm?attorney=bob_smith. Correct? The
 code above is the *only* thing in the .ini file. Do I need anything else?

 I placed the .dll and .ini file in a folder on the server. Went into the
 IIS Admin (IIS 7 I think...) and added the.dll to the ISAPI filters.
 Didn't do anything else. Was planning on restarting the server late this
 evening when site activity was quite.However, the site immediately went
 down. There's a problem with the resource you're trying to access
 500 error...'

 I removed the filter from the ISAPI filter window, and the site was back
 up. Tried a second time just to be sure. Yup - site went down
 immediately. No stop/start IIS.

 OK, now I'm afraid to do anything else. I can't afford to take the site
 down again by mistake.

 I'll happily attempt to list other settings or stuff from log files if
 needed to help me figure what I've got wrong. You *might* have to tell
 me where to look though...

 The site in question is a Coldfusion site, but sections are .net. There
 are two aspnet_filters listed already. Possible conflict?

 Log file shows: The HTTP Filter DLL
 C:\Windows\System32\IsapiRewrite\IsapiRewrite4.dll failed to load.  The
 data is the error.

 Not sure what to do next. Help?

 

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


Re: (ot) Ionic's Isapi Rewrite Filter and Site Crash

2009-01-07 Thread Michael Dinowitz
What I meant was testing a file in a physical directory structure like you
have below. Creating an attorney directory and a bob_smith subdirectory. The
index.cfm that is run may tell you more based on the debug info. But this
may be moot as the regex I gave below may fix the problem. Or maybe not. :)


  3. have you put an index.cfm into the www.mysite.com/attorney/bob_smith
 
  directory and looked at the page results in debug mode (or dumped out the
  cgi vars)?

 Couldn't test that. Adding the dll took out the entire site and threw a
 500 error for *any* page request, not just the url I'm wishing to redirect.

 I'll re-download the Ionic files in case something got corrupted and try
 again at some *very* late hour when hopefully nobody will notice a short
 outage if it doesn't work again.


  RewriteRule  ^/attorney/([^/]+)   /lawyers/get-bio.cfm?attorney=$1 [I,L]

 Will try this once I get a successful installation that doesn't crash!

 

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


Re: Test Post

2008-12-25 Thread Michael Dinowitz
The mail server did a disk check when I rebooted it and it took till now for
it to finish. Sorry about the massive delay, but we're back. I'll have the
email about House of Fusion support donations out to you soon. :)
No, really.

https://www.paypal.com/cgi-bin/webscr?amount=item_name=House+of+Fusionbusiness=donations%40houseoffusion.comundefined_quantity=cmd=_xclick


On Thu, Dec 25, 2008 at 11:10 AM, Phillip M. Vector 
vec...@mostdeadlygame.com wrote:

 Is this list working?

 

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


Official ColdFusion IDE announced

2008-11-18 Thread Michael Dinowitz
Ben just announced it. Sign up for access to the beta (or whatever) at 
http://labs.adobe.com/wiki/index.php/Bolt 

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


Re: Official ColdFusion IDE announced

2008-11-18 Thread Michael Dinowitz
I don't think most people are using cfeclipse. It's not a very comfortable 
environment for a lot of people, myself included. I'd love to see statistics, 
but I'm betting less than a third of the community is on it. 
Free is nice, but comfort is better.

If it costs more than $0 I'll carry on using cfeclipse, as will most people I 
suspect.

I wonder just how much the commercial release is going to cost?  I 
can't see spending more than $50 for a new IDE.


Matthew Williams
Geodesic GraFX 

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


Re: Official ColdFusion IDE announced

2008-11-18 Thread Michael Dinowitz
Lets be blunt - Bolt is a commercial product and it will have a price tag. If 
it has features you want and you think its worth it then you'll buy it. If not, 
then not. No need to debate, no need to argue. Bottom line. 

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


Re: Any regular expression guru here?

2008-11-13 Thread Michael Dinowitz
In the example below, you only want to replace the b while leaving the a and
c alone, right? Will the b always have a format of
b=tyweu8939skdksspdssdsd. Does tyweu8939skdksspdssdsd have a pattern to
it? Is it that the b= values always have 21 characters after it?
Point is, what's the pattern associated with the b?

On Thu, Nov 13, 2008 at 12:11 PM, Don L [EMAIL PROTECTED] wrote:

 What I'd like to want to do is to replace a value from a simple text which
 looks like this:
 a=
 b=tyweu8939skdksspdssdsd
 c=sd

 How do I replace the value of b when the b value is unknown?

 Thanks.




 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315220
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 Job Market

2008-11-07 Thread Michael Dinowitz
The second issue of the Fusion Authority Quarterly Update was all about CF
and OO. I'd say it's a good place to start.

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: lists question

2008-11-05 Thread Michael Dinowitz
CF-Jobs is written so that any reply is automatically sent to the original
posters email address, not to the cf-jobs list. In order to reply to the
cf-jobs list someone would have to write the cf-jobs email address in
specifically or have a bad email client. I'm setting the cf-jobs list to
reject any 'reply-to' message which will stop replies but the off topic
stuff would still be a problem. The answer to that is something I've been
planning for a while which is to use a singe, standard job posting form to
post to the list rather than free-flow emails. In other words, you would
have to post from the site only for cf-jobs.

On Wed, Nov 5, 2008 at 3:29 PM, Larry C. Lyons [EMAIL PROTECTED]wrote:

 No. I do not want to see the CF-jobs talk littered with chatter and
 garbage. its bad enough that people automatically respond to the list
 without checking for the sender's email address. Combining the two
 lists will really reduce the signal to noise ratio.

 On Wed, Nov 5, 2008 at 12:32 PM, Steve Runyon [EMAIL PROTECTED] wrote:
  Given how infrequently the lists are used correctly, would it make sense
 to
  combine CF-Jobs and CF-Jobs-Talk?  I agree that the concept of splitting
 the
  two is a good one in theory, but maybe it doesn't make real-world sense.
 
 
 

 

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


Re: lists question

2008-11-05 Thread Michael Dinowitz
I'm totally against salary based on when you were born. :)
If you have some example forms and/or suggestions, please let me know. I'm
doing it both for people looking for work as well as people looking to hire.

On Wed, Nov 5, 2008 at 4:34 PM, Phillip M. Vector [EMAIL PROTECTED]
 wrote:

 As long as you put on there telecommuting as an option and salary
 offered (rejecting letters like DOB or such), I'm all for it. :)

 Michael Dinowitz wrote:
  CF-Jobs is written so that any reply is automatically sent to the
 original
  posters email address, not to the cf-jobs list. In order to reply to the
  cf-jobs list someone would have to write the cf-jobs email address in
  specifically or have a bad email client. I'm setting the cf-jobs list to
  reject any 'reply-to' message which will stop replies but the off topic
  stuff would still be a problem. The answer to that is something I've been
  planning for a while which is to use a singe, standard job posting form
 to
  post to the list rather than free-flow emails. In other words, you would
  have to post from the site only for cf-jobs.
 
  On Wed, Nov 5, 2008 at 3:29 PM, Larry C. Lyons [EMAIL PROTECTED]
 wrote:
 
  No. I do not want to see the CF-jobs talk littered with chatter and
  garbage. its bad enough that people automatically respond to the list
  without checking for the sender's email address. Combining the two
  lists will really reduce the signal to noise ratio.
 
  On Wed, Nov 5, 2008 at 12:32 PM, Steve Runyon [EMAIL PROTECTED]
 wrote:
  Given how infrequently the lists are used correctly, would it make
 sense
  to
  combine CF-Jobs and CF-Jobs-Talk?  I agree that the concept of
 splitting
  the
  two is a good one in theory, but maybe it doesn't make real-world
 sense.
 
 
 
 
 
 

 

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


I'm available

2008-10-29 Thread Michael Dinowitz
Hi,
I'm Michael Dinowitz. I run this list and it's home, House of Fusion. I'm
available for ColdFusion and content optimization (SEO) work as well as
training in those (and related) areas.

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: I'm available

2008-10-29 Thread Michael Dinowitz
GMail automatically set the wrong address. :(

On Thu, Oct 30, 2008 at 1:06 AM, Michael Dinowitz 
[EMAIL PROTECTED] wrote:

 Hi,
 I'm Michael Dinowitz. I run this list and it's home, House of Fusion. I'm
 available for ColdFusion and content optimization (SEO) work as well as
 training in those (and related) areas.

 --
 Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
 President: House of Fusion(http://www.houseoffusion.com)
 Publisher: Fusion Authority(http://www.fusionauthority.com)
 Adobe Community Expert / Advanced Certified ColdFusion Professional




-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: Ben Forta for president?

2008-10-24 Thread Michael Dinowitz
Please move the non-technical part of this thread to CF-Community.
Thanks

On Thu, Oct 23, 2008 at 10:16 PM, Mike Kear [EMAIL PROTECTED] wrote:

 Is this true?   Ben Forta is running for President of the USA??

 Bit of fun, but I'm really impressed with the video.   Have a look 

 http://www.tsgnet.com/pres.php?id=370617altf=Cfoaltl=Gpsub


 It's a bit of fun for Friday but i have serious tech question about
 this - how do they do the video clip?   What technology are they using
 to create the video on the fly?   I specially like the tattoo.   Is
 this a flash application?



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


Re: onMissingTemplate() as a controller - somewhat...

2008-10-17 Thread Michael Dinowitz
It's a valid way of thinking and even warranted an article (
https://secure.houseoffusion.com/Vol2Issue3.cfm). The performance overhead
is just as much as any other handler - what's needed to look up the actual
template and data. I use this all the time and there is no problem with it
that I've seen so far.

Note that it will not work for the default document in a directory or an
assumed default document.

On Fri, Oct 17, 2008 at 10:46 AM, Jason Fill [EMAIL PROTECTED] wrote:

 I am currently trying to plan out an application and am curious about what
 other think about something I have in mind.

 I would like the URLs to be in the form of
 domain.com/thepagename-pageid.cfm.  Simple as thatbut the page will
 not actually exist.  My thought was just to use the onMissingTemplate()
 handler to handle the request and dynamically generate the content.

 The issue is, I am not sure if this is completely the incorrect line of
 thinking - AND - also what the performance implications might be under load.

 I know an ISAPI rewrite can be used, but I want to stay away from that as
 this application will be distributed to others and I do not want them to
 have to reconfigure their webserver.  It need to work right out of the box.

 Any suggestions would be helpful.  I have read some blog posts in regards
 to this and I know some people are using it, but mostly curious if anyone
 sees a major issue with this under a load situation.

 Thanks in advance!

 

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

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


Re: onMissingTemplate() as a controller - somewhat...

2008-10-17 Thread Michael Dinowitz
I did the same with the global error handler and that was the wrong tool.
The onmissingtemplate() handler is a very good tool for this, especially for
those who do not have the ability to use a rewriter. As for the intent of
the onmissingtemplate() handler, it was discussed while in beta and things
were changed to make sure that it could be used properly for handling
intended missing templates.

I use this for my clients and for my own sites, even when I have access to
the webserver. It can actually be more efficient than a rewriter, not less.
A rewriter looks at EVERY request. images, css, js, whatever. The
onmissingtemplate() deals with a CF template only and only the one
requested. I'd rather be more specific on whats being handled that less so,
especially when the less so is global to the entire site.

On Fri, Oct 17, 2008 at 3:44 PM, Judah McAuley [EMAIL PROTECTED] wrote:

 I did this back in the days of CF 5 where I'd use the site-wide error
 template as a url remapper. It worked. I won't really recommend it
 though because it is using a tool that was really meant for a
 different task.

 Instead, I'd suggest using a url rewriter plugin for your webserver.
 modrewrite for apache or isapi rewrite for IIS, there are probably
 others, will let you handle incoming requests at the webserver level
 and produce requests to CF that have the proper combination of query
 string objects that you'd expect in a normal request. That would then
 leave you to use onMissingTemplate() to handle what it was intended
 for..missing templates.

 So in short, yes, it should work. But no, I wouldn't do it that way :)

 Judah

 On Fri, Oct 17, 2008 at 7:46 AM, Jason Fill [EMAIL PROTECTED] wrote:
  I am currently trying to plan out an application and am curious about
 what other think about something I have in mind.
 
  I would like the URLs to be in the form of
 domain.com/thepagename-pageid.cfm.  Simple as thatbut the page will
 not actually exist.  My thought was just to use the onMissingTemplate()
 handler to handle the request and dynamically generate the content.
 
  The issue is, I am not sure if this is completely the incorrect line of
 thinking - AND - also what the performance implications might be under load.
 
  I know an ISAPI rewrite can be used, but I want to stay away from that as
 this application will be distributed to others and I do not want them to
 have to reconfigure their webserver.  It need to work right out of the box.
 
  Any suggestions would be helpful.  I have read some blog posts in regards
 to this and I know some people are using it, but mostly curious if anyone
 sees a major issue with this under a load situation.
 
  Thanks in advance!
 
 

 

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

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


Re: onMissingTemplate() as a controller - somewhat...

2008-10-17 Thread Michael Dinowitz
On Fri, Oct 17, 2008 at 4:01 PM, Judah McAuley [EMAIL PROTECTED] wrote:

 Those are some fine points. I presume that in all cases, you have to
 have your webserver not check for the existence of a file before handing
 off the request.

Correct. This is why there is a problem when the visitor is trying to get a
directory's default document. The webserver always checks for a default
document, even when the don't check for document's existence is set to
off.


 I'm curious about the efficiency argument there. I can see your point
 about the webserver not having to look at calls for a js file or css
 file or what have you, but the lookup in the url rewriter is usually a
 pretty straight forward regex with exclusion rules for file extensions
 (css, js, gif, etc). How much overhead do you think that adds? Versus

The exclusion rules still have to be written and checked. All of the regex
rules in a rewriter file have to be checked to see if any match. Even if you
set the regex tests to stop after the first match a check will be made.

onmissingtemplate() which will only run when a CF file is requested,
 but it will have to look for the existence of a file before firing the
 handler.

This is done anyway. All the handler does is step between the request and
the global missing template handler. There is nothing really extra for its
usage.


 If you are running through a rewriter, you are probably
 sending every request to a single file (index.cfm) or perhaps a couple
 files, so the existence of that file will probably be cached.

Not always. While some may use a single file for all rewrites, I'd expect
that people would use more than one for different operations. A missing
template goes to X when in one directory and Y when in another, especially
when dealing with seperate applications (blog, forum, etc.). And that
assumes that your only using a missing template style rewriter. What about
when you have a request come in for a file with extension X but you want it
to run as extension Y (a good seo practice when dealing with dynamic pages
without passed variables).


 But if
 you are throwing a bunch of urls at cf that all look like different
 file names /my-article-1.cfm, /my-article-2.cfm, etc) then it will
 have to look for the existence of every unique url before firing the
 handler.

Already being done so not an issue.


 Have you done any overhead comparison between the two methods?

None worth talking about. My tests have all been 'real world' and if it runs
quickly, efficiently and makes the client happy, then it's ok with me. :)
I use both techniques for different sites and I prefer the
onmissingtemplate() way more because it just feels 'cleaner' and more
integrated into my application. I can have a single directory with an
application.cfc that inherits from the root one. This child application.cfc
can have the onmissingtemplate() and nothing else, making it very specific
to the type of template expected. I usually have an index.cfm and some form
of base template in the directory as well for a standard layout.
Here's an exmaple from a client sub-site written almost totally in CF8.
http://www.800renewable.com/glossary/

The glossary has an index.cfm and an application.cfc. When a request comes
in for a glossary item, we know that it will not exist so the
onmissingtemplate() handler (the only thing in the application.cfc) will run
and provide the content. Very clean.


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


Re: onMissingTemplate() as a controller - somewhat...

2008-10-17 Thread Michael Dinowitz
I almost forgot the most important thing about using onmissingtemplate() for
dynamic page generation. It allows an application to be distributed. A CF8
version of blogcfc could be using it to display each blog entry as if it was
a real page rather than an obviously generated one with masked variables
(yes, Google knows about this specifically and advises against it).


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


testers needed for tag stripper

2008-10-13 Thread Michael Dinowitz
I've found a few problems with the automatic cfqueryparam application I
wrote. If the option to skip commented code is set to on and there are
nested comments, there can be problems. I've written a fast stripcontainer
function that will remove a open/close tag pair while not screwing up due to
nesting. Before I release it, I need a few testers. Anyone willing? The
basic test I've done is to remove nested comments, but others may find
situations that I have not thought of that may cause the code to fail.
Please email me off list for the code.

Thanks

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: How does Security affect search engine spiders?

2008-10-12 Thread Michael Dinowitz
There is an option in adsense to bypass login based security in order to
index pages for ads. While your pages may not have ads on them, using this
option guarantees that Google will get through your security.

On 10/12/08, Doug Boude (rhymes with 'loud') [EMAIL PROTECTED] wrote:

 Hi all. I am curious if anybody knows how securing a site affects a search
 engine spider's ability to crawl it. For instance, if I have my entire site
 secured by means of authentication so that any page request is redirected to
 the login page if the appropriate security creds are not present in session,
 do spiders receive the same treatment? Are they also prohibited by my
 security from crawling any page except the login page? If this is true, what
 can I do to allow spiders to have access to crawl content but still apply
 security to regular human visitors? My only thought on that is to detect
 the fact that they are a spider (not sure how to do that though) and not
 implement security in that case.

 Thanks for your ideas and thoughts. Feel free to email them to me at
 [EMAIL PROTECTED]

 Doug  :0)

 

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


Re: How does Security affect search engine spiders?

2008-10-12 Thread Michael Dinowitz
correct
https://www.google.com/adsense/list-auth
Use this section to allow the AdSense crawler to access pages that are
behind a login. Our crawler will access these pages only to determine
content for ad targeting purposes and will fully comply with Google's privacy
policy http://www.google.com/privacy.html

While they are determining content for ad targeting, they are looking at the
pages content. This content will not show up in their index but logic says
that it will be used to effect your ranking. I've seen search results that
show a site and when I click on it, I get the logic. This says that Google
has indexed past the login.

On 10/12/08, Adrian Lynch [EMAIL PROTECTED] wrote:

 And not include what it finds in its index?

 Adrian


 -Original Message-
 From: Michael Dinowitz
 Sent: 12 October 2008 22:51
 To: cf-talk
 Subject: Re: How does Security affect search engine spiders?


 There is an option in adsense to bypass login based security in order to
 index pages for ads. While your pages may not have ads on them, using this
 option guarantees that Google will get through your security.

 On 10/12/08, Doug Boude (rhymes with 'loud') [EMAIL PROTECTED] wrote:
 
  Hi all. I am curious if anybody knows how securing a site affects a
 search
  engine spider's ability to crawl it. For instance, if I have my entire
 site
  secured by means of authentication so that any page request is redirected
 to
  the login page if the appropriate security creds are not present in
 session,
  do spiders receive the same treatment? Are they also prohibited by my
  security from crawling any page except the login page? If this is true,
 what
  can I do to allow spiders to have access to crawl content but still apply
  security to regular human visitors? My only thought on that is to
 detect
  the fact that they are a spider (not sure how to do that though) and not
  implement security in that case.
 
  Thanks for your ideas and thoughts. Feel free to email them to me at
  [EMAIL PROTECTED]
 
  Doug  :0)


 

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


Re: How early can I learn MOM, SCOM AND WSUS

2008-10-08 Thread Michael Dinowitz
It would depend on what you want to do and what you know already. Could you
give more details about what you mean?

As for other non-technical posts to this thread, please remember that this
is a tech only list.

On Wed, Oct 8, 2008 at 3:20 PM, sandeep saini [EMAIL PROTECTED]wrote:

 Thanks

 

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

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


Re: New SQL Injection

2008-09-20 Thread Michael Dinowitz
If your interested, I have a project that I just wrote for a client that
will allow you to scan an entire directory tree for all files that have a
cfquery with un-paramed variables and fix them. It doesn't work
automatically (it could but I disabled that option) but instead gives you
the queries on a screen with a select next to each un-paramed variable with
a suggested option. It's not a polished app for commercial use but a tool
for back end site optimization. So if your up for a beta, let me know.

On Sat, Sep 20, 2008 at 9:45 AM, Al Musella, DPM
[EMAIL PROTECTED]wrote:

  A new type of sql attack is hitting my server since about 2 am this
 morning.  It got through the filter I use because it has
 different keywords.  Luckily the cfparam triggered an error - as it
 was looking for intergers and was finding this:
 =

 +and+1=convert(int,(select+top+1+table_name+from+information_schema.tables))--sp_password
 

 So I added sp_password and schema to my list of bad keywords

 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:312859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: What Cold Fusion Job boards are there?

2008-09-12 Thread Michael Dinowitz
NY is a hard place to find people as they're all 'taken'. Those who are
freelancers, like myself, either have a few set contracts or are at the whim
of headhunters who want to fit a programmer into a box with a low price with
no concept of skill.
I'm talking to a friend to get some space at Touro College to do a few
non-official classes on CF, HTML, Content Optimization, User Interface,
Editorial, and Psychology (yes, they all interrelate). Once I get a few
people living through that, I'll let people know. It'll take at least 3
months to do it right my way.

On Fri, Sep 12, 2008 at 5:31 PM, carl starm [EMAIL PROTECTED]wrote:

 I need to hire a cold fusion/sql pro shortly for NYC.

 Our preference is for someone to work at our location in NYC.

 I'll post the job here, but I was wondering what other places I should post
 this job to.

 I want to choose the best person for the job and would like to interview a
 few people.

 Thanks,


 

~|
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-Jobs-Talk/message.cfm/messageid:3984
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: imageScaleToFit() on CF8.0.1 takes forever or times out

2008-08-31 Thread Michael Dinowitz
I'd check the jvm memory settings for both boxes. Images are held in
allocated memory to be processed. Also, could you post some code here? There
are things like imageantialias() that are not needed for scaling but are use
by some which has a negative effect. Finally, I'd look at things like drive
access and speed. For me, processing an image takes almost no time, the
bottleneck is loading it into memory for use and then saving it.

On Sun, Aug 31, 2008 at 3:39 AM, Azadi Saryev [EMAIL PROTECTED] wrote:

 can somebody please confirm that this is a problem and not just me going
 crazy?

 after an upgrade to CF8.0.1 + cumulative hotfix + updated cfimage hotfix
 (and without the 2 hotfixes) imageScaleToFit function now takes forever
 to scale a .jpg image...
 the images are rather large (10+ MB), but that should not be a problem!

 i have even just downgraded my dev box to plain CF8+cumulative hf 3 -
 and it took about 4 seconds to scale 10 photos (each 10+MB) to 2
 different sizes each...

 my production CF8.0.1 server crashes on the first image in a batch with
 a java hotspot crash, restarting the cf server. however, scaling
 individual photos of smaller size does not seem to cause any problems...
 my dev box _before downgrade_ just timed out on the first photo...

 is this a know CF8.0.1 bug? are there any work-arounds known?

 meanwhile, i will upgrade my dev box to CF8.0.1 to see if it shows the
 problem again...

 TIA

 --

 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/


 

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


Re: House of Fusion Web Site Problem

2008-08-25 Thread Michael Dinowitz
It's on the list and it'll be looked at today. Unfortunately, we've been
busy with a few things such as getting the first issue of the Flex Authority
(http://www.flex-authority.com) out the door. Look for a full Nav redesign
going into place with jquery.

On Mon, Aug 25, 2008 at 9:50 AM, Andy Matthews [EMAIL PROTECTED]wrote:

 I brought this to the attention of HoF about 4 or 5 months ago and was told
 it'll get fixed...

 Now 4 or 5 months ago, you're posting the same thing.

 Maybe it'll get fixed before the end of the year.


 andy

 -Original Message-
 From: Robert Harrison [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 25, 2008 8:34 AM
 To: CF-Talk
 Subject: House of Fusion Web Site Problem

 FYI: The House of Fusion web site has a problem with the drop down menus.

 In IE 7 on Vista and XP the menus are going underneath the page layer.
 Someone may want to look at this.



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

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






 

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


Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Michael Dinowitz
Its not a matter of unfairly singled out as I have made the same request to
a number of people in the past. Conferences and hosting companies have been
the main ones but they have not been alone. When I saw the post with its
full feature list and then a demo version, it yelled sales post to me. I
prefer to review sales type posts before they are sent and to make sure that
they are properly notes as being sales posts. I'd like to keep this list as
technically specific as possible. I've deleted and moved threads in the past
to try and keep the technical quality here.

As for increasing the popularity of ColdFusion products, I'm not only all
for it but I do what I can to help in various ways. In the latest Flex
Authority, we did a review on two Flex information sites. Doing a product
review where the product brings something to the community (rather than just
a sales review) is well within the mission scope of the two journal lines
(both online and in print).

The main problem here is that the rebuke was public rather than private. I
have to make one public once in a while to make sure people know what's
going on. I'm sorry that Marius got hit with it.


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


Re: ANN: Open source ColdFusion CRM solution

2008-08-24 Thread Michael Dinowitz
Please clear any systems for sale, classes for pay, etc. with me before
sending to the list. I'd like to prevent the list from becoming a
free-for-all where each hosting company and product advertises.

Thank you.

On Mon, Aug 25, 2008 at 12:03 AM, Marius Milosav [EMAIL PROTECTED]wrote:

 Hello Everybody,

 I'm on cf-talk for a lng time and since I remember there were
 discussions (and complaints) about the lack of cf based open source
 applications.
 After some soul searching I have decided to release VICO solution as an
 open
 source application under the GPL3 license.

 VICO is a ColdFusion, multi-language enhanced CRM suite of applications
 that
 contains the following modules:
 *Virtual Help Desk (VHD)* is a very powerful Help Desk application.
 Some of the main VHD features:

   - rules based ticket creation by email
   - user defined escalation rules
   - SLA tracking
   - ticket flagging and updates by email
   - calendar dashboard view

 included are two separate modules for development purposes: Issue ticket
 (Bug Tracking) and Test Case

 *Virtual Sales Force (VSF)* - sales force management

   - lead, opportunity, quota and account management
   - calendar and contact management
   - expense, purchase order, VHD integration
   - available Outlook integration


 *Virtual Project Management (VPM)* full blown project management
 application

   - phase, task management
   - rule based project access
   - document management
   - resource allocation across multiple projects
   - template based project creation


 *Time Tracker*
 *Expense Management
 Invoice
 Purchase Order (PO)
 Administration
 Knowledge Base
 Portal
 Calendar*

 Currently it runs on CF8 with MS-SQL2000 or 2005 back end.
 A long time ago I had a few customers running it on Linux with Sybase and
 Oracle, but the last few versions were tested only on Windows and MS-SQL.
 I'm looking forward to your comments, suggestions, opinions and any ideas
 you may have to make this a very successful endeavor.

 There is a demo version that you can try:
 http://www.scorpiosoft.com/vicoDemo/

 Regards
 Marius
 ..


 

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


Re: SQL injection attack on House of Fusion

2008-08-10 Thread Michael Dinowitz
I propose a baseball bat. It works well with both genders.

On Sun, Aug 10, 2008 at 11:16 PM, William Seiter [EMAIL PROTECTED] wrote:

 You assume much.

 Women are just as prowess at running a computer virus attack as men.

 We just don't hear about them as much, as they seem to not get caught as
 often.



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


Re: SQL injection attack on House of Fusion

2008-08-10 Thread Michael Dinowitz
Wait, sorry. This is a cf-community thread, not a cf-talk one. It will be
moved right away.

On Sun, Aug 10, 2008 at 11:32 PM, Michael Dinowitz 
[EMAIL PROTECTED] wrote:

 I propose a baseball bat. It works well with both genders.

 On Sun, Aug 10, 2008 at 11:16 PM, William Seiter [EMAIL PROTECTED]wrote:

 You assume much.

 Women are just as prowess at running a computer virus attack as men.

 We just don't hear about them as much, as they seem to not get caught as
 often.





-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion (http://www.houseoffusion.com)
Publisher: Fusion Authority (http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


SQL injection attack on House of Fusion

2008-08-08 Thread Michael Dinowitz
Sorry for the problems with the House of Fusion site. We've been under
massive attack by sql injection bots and I've just been able to get a handle
on it. A fast solution to the problem is this:
cfif findnocase(';DECLARE, cgi.query_string)cfabort/cfif
It works unless you have a few hundred attacks at a time. In that case,
place a cfmail before the abort and send youself the cgi.remote_addr. Then
block it on the webserver level. It works very well. I've blocked a dozen
IPs and now the site is back to flying.

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion (http://www.houseoffusion.com)
Publisher: Fusion Authority (http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: SQL injection attack on House of Fusion

2008-08-08 Thread Michael Dinowitz
Covering the bases with cfqueryparam is one thing, being mobbed is another.
Sometimes you have to stop these things before any other code is run. I've
put that abort script at the top of all my application.cfcs jst to brute
force stop the horde.

On Fri, Aug 8, 2008 at 10:31 AM, Scott Stewart [EMAIL PROTECTED]wrote:

 Yeah, I've gotten a couple today.. but fortunately when Ray built
 BlogCFC. he covered his bases.

 Scott Stewart
 ColdFusion Developer

 Office of Research Information Systems
 Research  Economic Development
 University of North Carolina at Chapel Hill

 Phone:(919)843-2408
 Fax: (919)962-3600
 Email: [EMAIL PROTECTED]

 Michael Dinowitz wrote:
  Sorry for the problems with the House of Fusion site. We've been under
  massive attack by sql injection bots and I've just been able to get a
 handle
  on it. A fast solution to the problem is this:
  cfif findnocase(';DECLARE, cgi.query_string)cfabort/cfif
  It works unless you have a few hundred attacks at a time. In that case,
  place a cfmail before the abort and send youself the cgi.remote_addr.
 Then
  block it on the webserver level. It works very well. I've blocked a dozen
  IPs and now the site is back to flying.
 
 

 

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


Re: SQL injection attack on House of Fusion

2008-08-08 Thread Michael Dinowitz
Which explains why House of Fusion is being so heavily hit. We're literally
everywhere on Google. Fusion Authority on the other hand has all of its urls
masked to .htm so the only one being attacked there is an old .cfm archive.
I'm working on a webserver level fix for this which will bypass the need to
block based on IPs. I just need a few moments. The attacks are hitting VERY
hard. I got 4000 alert emails in the space of 5 minutes before I turned them
off again.

On Fri, Aug 8, 2008 at 11:27 AM, Tom Chiverton [EMAIL PROTECTED]
 wrote:

 On Friday 08 Aug 2008, Scott Stewart wrote:
  I'm almost flattered that someone thought my site was important enough
  to attack...

 They didn't. The attack is probably driving itself based on a Google search
 (
 [inurl:.cfm] ?) .

 --
 Tom Chiverton

 

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

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

 CONFIDENTIALITY

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

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

 

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

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


Re: SQL injection attack on House of Fusion

2008-08-08 Thread Michael Dinowitz
I'm using ionic isapi with the following
RewriteCond %{QUERY_STRING} ;DECLARE [I]
RewriteRule ;DECLARE /index.htm [I,L]

it works perfectly except for a single issue. If you're using a custom 404
in iis (like piping 404 errors to CF), then the isapi will hang the server.

-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion(http://www.houseoffusion.com)
Publisher: Fusion Authority(http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: Any cfhttp gurus out there?

2008-07-16 Thread Michael Dinowitz
Dump out the entire cfhttp to see what the headers look like. It may be that
they are using connection keep-alive to prevent spidering or something else.
In some cases the page is doing a redirect and you don't see it because
cfhttp turns on redirect as a default. Setting it to no may tell you more
about the request.
Once my computer is free (it's bogged down parsing a million plus comics)
I'll test it out to see what I can.

On Wed, Jul 16, 2008 at 1:53 PM, Che Vilnonis [EMAIL PROTECTED] wrote:

 I used to be able hit this link and get results with a cfdump...
 http://www.dealsonwheels.com/dowrss/chevrolet_camaro.aspx

 Now, all I get is a value of Connection Failure for cfhttp.fileconent.
 I know the link works since I can add it to FireFox and a Live Bookmark
 is created. Any ideas? Is it an encoding or a useragent issue? I'm on a
 CF8 box.

 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;203748912;27390454;j

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


Re: Missing Messages --- was Re: The Woes of CFThread -- going out of my mind!

2008-07-10 Thread Michael Dinowitz
I'd also check if there's a spam blocker 'upstream' from you, especially if
your getting your mail through a business location. In addition, the server
is set to try and send mail for 48 hours before dropping it. A network
problem that prevents or distorts mail server connections within that time
frame could also cause mail to not show up.


On Thu, Jul 10, 2008 at 12:00 PM, Ian Skinner [EMAIL PROTECTED] wrote:

 Brad Wood wrote:
  Dan, I already suggested this approach to IAN nearly a month ago--
  twice.
 
  http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:307447
  http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:307626
 
  If he thought there was merit in that he probably would have tried it
  already.
 
  ~Brad

 I suspected I have not been getting all of HOF messages, but now I have
 confirmation.  I had noticed that once in a while I did not recieve a
 copy of a message I sent to the lists.  I also noticed that there were
 increasing cases where there seemed to be replies to messages that I
 never receive the original.

  I never received either of these replies a month ago.

 I do not see in messages from HOF in the spam folder at my end, but I am
 not sure what may be happening in between.  I'll have to look up
 Micheal's address when I get back from my 9:00 am meeting to see if
 anything is getting bounced back.


 

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


Re: SOT: submitting a form

2008-06-27 Thread Michael Dinowitz
The issue is with how you've stored the list name and a new security
feature. An email address can have two parts, the address itself and how it
announces itself. My email is mdinowit but it announces itself as Michael
Dinowitz. If an email comes to the list and announces itself as something
other than the list name, it's held for review. This stops the huge amount
of spam that is given random names.
Your TO address is announcing itself as CF-Talk House of Fusion. It's
technically correct but my code is a little too sensitive. Let me see what I
can do to make it a little less sensitive.
Sorry for the inconvenience. We've had 3 or 4 spam messages get through this
year and I'd like to make sure that doesn't happening anymore.

On Fri, Jun 27, 2008 at 2:05 PM, Claude Schneegans 
[EMAIL PROTECTED] wrote:

  Is there any problem with the list?

 Apparently, I can answer, but not send new messages.
 Ok, let me answer to myself on this one ;-)

 I have form with a Javascript validating system.
 After hundreds of successful submits of the form, I recently got one
 form submitted with two mandatory date fields empty.
 If a visitor has Javascript disabled, he cannot even see the form, then
 I suppose it is not the issue.

 The Javascript validation system is triggered by onClick=return
 checkInput() on the submit button.
 A form can also be submitted by pressing Enter, but this also triggers a
 click on the submit button,
 so the validation is performed as well.

 Is there some other way to submit a form that will not trigger a click
 on the submit button
 that I didn't think of ?

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


 

~|
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:308253
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 Newbie Developer NYC

2008-06-26 Thread Michael Dinowitz
If you need, I'm available for teaching and mentoring in the NY area (I'm in
Brooklyn), though not as a full time employee. This may allow you to 'grow'
someone into a better ColdFusion programmer or even train one from the
ground up.

On Thu, Jun 26, 2008 at 11:12 AM, kim torrance [EMAIL PROTECTED]
wrote:

 I am currently looking for a 1-3 year CF developer for a major bank located
 downtown NYC.  Base salary is in the $75-95K range.

 Description Below:

 A  Bachelor's degree in Computer Science or Information Science or
 equivalent education and/or work experience;
 Experience developing systems with ColdFusion;
 Experience with HTML and Javascript;
 Experience with SQL Server and/or Oracle;
 Working knowledge of Windows 2003;
 Experience developing web-based systems;
 Strong analytical and problem solving skills;
 Excellent interpersonal and written communication skills;
 Strong customer service skills; the ability to handle multiple service
 requests;
 Familiarity with Java and/or J2EE technologies a plus;
 Familiarity with Word, Excel, and Powerpoint. Knowledge of macros a plus;
 and
 Familiarity with the Technology Project standards and Capability Maturity
 Model (CMM) a plus.


 Responsibilities:
 Develop new applications, apply software changes to enhance applications,
 and provide production support for several Bank businesses including
 Research, Statistics and Cash

 Develop test scripts and execute a full range of tests including unit,
 systems, regression and security tests;
 Write various types of documentation including code specifications,
 technical and user guides, etc.;
 Learn and apply business knowledge to perform development and support
 activities; and
 Learn and apply the BSD processes which incorporate the Technology Project
 Standards as well as Capability Maturity Model standards.

 If you are interested in  this position please send your resume and I will
 respond immediately.

 Thank You,
 Kim Torrance
 Lead Technology Management
 230 Park Avenue
 Suite 10
 New York, NY 10017
 [EMAIL PROTECTED]
 www.ltmgmt.com



 

~|
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-Jobs-Talk/message.cfm/messageid:3883
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


cfhttp failing to retrieve page

2008-06-06 Thread Michael Dinowitz
OK, this one has stumped me and it shouldn't. Using cfhttp to get this url,
I get no result
www.comicbookdb.com/browse.php?search=Publisherletter=all
I've played with the following settings with no result:
useragent
throwonerror
redirect
If I try www.comicbookdb.com I get a result

I've even tried setting and sending a cookie with no result. Anyone have a
clue?

Thanks


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


Re: cfhttp failing to retrieve page

2008-06-06 Thread Michael Dinowitz
It worked in the past and I'm trying it on my home test box. If the root url
works, why would the deeper one fail? I tried it by direct IP and it also
fails. Would there be something that the browser sends that cfhttp doesn't?

On Fri, Jun 6, 2008 at 4:04 PM, Raymond Camden [EMAIL PROTECTED] wrote:

 Did you try a network monitor tool? Also, did it work before? Don't
 forget CF caches the DNS look up. If the DNS changed for the site, CF
 could have the wrong IP.

 On Fri, Jun 6, 2008 at 2:59 PM, Michael Dinowitz
 [EMAIL PROTECTED] wrote:
  OK, this one has stumped me and it shouldn't. Using cfhttp to get this
 url,
  I get no result
  www.comicbookdb.com/browse.php?search=Publisherletter=all
  I've played with the following settings with no result:
  useragent
  throwonerror
  redirect
  If I try www.comicbookdb.com I get a result
 
  I've even tried setting and sending a cookie with no result. Anyone have
 a
  clue?
 
  Thanks
 
 
 



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


Re: cfhttp failing to retrieve page

2008-06-06 Thread Michael Dinowitz
Ah, I got it. Using Firebug I was able to find that you have to set the
following 2 cfhttpparams
cfhttpparam type=HEADER name=keep-alive value=300
cfhttpparam type=HEADER name=connection value=keep-alive
I guess that they have a setup that sends a single byte of data and then
sends more on the kept alive connection. A browser would be able to get the
additional data while a bot would not. Interesting. I wonder if I can
implement it. Let me test.

Sometimes you just need to talk a problem out with others to get a solution.


Thanks

On Fri, Jun 6, 2008 at 4:09 PM, Michael Dinowitz [EMAIL PROTECTED]
wrote:

 It worked in the past and I'm trying it on my home test box. If the root
 url works, why would the deeper one fail? I tried it by direct IP and it
 also fails. Would there be something that the browser sends that cfhttp
 doesn't?


 On Fri, Jun 6, 2008 at 4:04 PM, Raymond Camden [EMAIL PROTECTED] wrote:

 Did you try a network monitor tool? Also, did it work before? Don't
 forget CF caches the DNS look up. If the DNS changed for the site, CF
 could have the wrong IP.

 On Fri, Jun 6, 2008 at 2:59 PM, Michael Dinowitz
 [EMAIL PROTECTED] wrote:
  OK, this one has stumped me and it shouldn't. Using cfhttp to get this
 url,
  I get no result
  www.comicbookdb.com/browse.php?search=Publisherletter=all
  I've played with the following settings with no result:
  useragent
  throwonerror
  redirect
  If I try www.comicbookdb.com I get a result
 
  I've even tried setting and sending a cookie with no result. Anyone have
 a
  clue?
 
  Thanks
 
 
 




-- 
Michael Dinowitz (http://www.linkedin.com/in/mdinowitz)
President: House of Fusion (http://www.houseoffusion.com)
Publisher: Fusion Authority (http://www.fusionauthority.com)
Adobe Community Expert / Advanced Certified ColdFusion Professional


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


Re: do not increase counter is returns 0

2008-06-04 Thread Michael Dinowitz
This thread and all associated threads end NOW!

Your admin 

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


Re: Adobe ColdFusion Survey

2008-06-04 Thread Michael Dinowitz
1. All marketing posts should either be cleared before being posted to the list 
or posted to a non-technical list like CF-OT or CF-Community.
2. While discussion about the merits of the survey may be of community 
interest, please move it to another list. CF-OT is perfect for this.
3. Only you can prevent list fires - only you. 

~|
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:306815
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 Developers - Iraq

2008-06-02 Thread Michael Dinowitz
Oh, I know. I kind of run the lists. :)
A number of $50k was joked about on cf-jobs-talk so the speculation isn't
only here.

On Mon, Jun 2, 2008 at 11:45 AM, Phillip Vector [EMAIL PROTECTED]
wrote:

 Just to clear up some confusion, I'm not the one who posted the ad. I
 was mearly replying to 2 posts on the cf-jobs list.

 I have no idea what the pay is.. You would have to contact the person
 directly to get that.

 On Mon, Jun 2, 2008 at 8:40 AM, Michael Dinowitz
 [EMAIL PROTECTED] wrote:
  $500 an hour sounds like a reason for me to go despite my enhance risks.
 I
  wonder if I could get extra pay for being a Jew in death to Jews
  territory?
 
  On Sat, May 31, 2008 at 12:39 PM, Larry C. Lyons [EMAIL PROTECTED]
  wrote:
 
  It isn' that bad, quite a few people have returned relatively
  unscathed. Most civilian contractors who go over there never really
  are exposed to any major risks.
 
  On Sat, May 31, 2008 at 8:52 AM, Tom Chiverton [EMAIL PROTECTED]
 
  wrote:
   2008/5/30 Paul Ihrig [EMAIL PROTECTED]:
   whats the pay like?
  
   Seriously, how much is your life worth ?
   Working in *Iraq*... wtf... remote working at all. Geez.
   --
   Tom
  
  
 
 
 
 

 

~|
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:3862
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Re[4]: CF Developers - Iraq

2008-06-02 Thread Michael Dinowitz
Oh, well dental is worth the $187.50 reduction an hour.

On Mon, Jun 2, 2008 at 12:39 PM, Alex Puritche [EMAIL PROTECTED] wrote:

 Second that. Although, as alien, I'd agree just for $312.5/h + dental
 insurance.

 MD Yes, I know I would never get the price but that's the point. If
 someone
 MD really wants it (or me) then it's a NUMBER, not just a number.

  I thought you was agree to do it for a couple of months
  just for $312.5/h, wasn't you?

  MD $500 an hour sounds like a reason for me to go despite my enhance
  risks.



~|
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:3870
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Problem with onSessionStart

2008-05-27 Thread Michael Dinowitz
Dump out your CGI scope and make sure that the variable values you are
expecting are there. Along the same vein, the ucase is not needed as the
basic comparison is case insensitive.

cfdump var=#cgi#

On Tue, May 27, 2008 at 12:58 PM, Carl Von Stetten [EMAIL PROTECTED]
wrote:

 Why do you have locks? CF single threads these methods automatically.
 Secondly, I'd get rid of the cfreturn even though it isn't doing
 anything. Lastly, try renaming your application temporarily. That
 would force new sessions to be created.
 
 On Tue, May 27, 2008 at 11:35 AM, Carl V
 

 Ray,

 Thank you for responding.  The lock was just there for troubleshooting.  I
 removed it.  I also removed the return, and renamed the application.  My
 variable still is not being initialized.

 Some further information - in my OnRequestStart function I check the URL
 variable for the presence of restart=true.  If it is found, it runs the
 OnApplicationStart and OnSessionStart functions to reinitialize the
 application.

 Snippet from OnRequestStart function:
 !--- If URL parameter restart=true is passed, reinitialize
application and session variables ---
 cfif (UCase(Right(CGI.SCRIPT_NAME,3)) EQ CFM) AND
(UCase(CGI.SCRIPT_NAME) DOES NOT CONTAIN /TESTING/) AND
FindNoCase(restart=true,CGI.QUERY_STRING)
cfset OnApplicationStart()
cfset OnSessionStart()
 /cfif

 If I put the restart=true into the URL and load the page, the rd
 variable gets initialized.  It seems that OnSessionStart is not being
 executed when I first access this site.  Don't understand why it's not
 running.

 Carl

 

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


Re: Problem with onSessionStart

2008-05-27 Thread Michael Dinowitz
ok, try this.
1. create the object you expect to be loaded into session.rd and dump it
out. Make sure the content you expect to go into the session is going into
the session.
2. You can rerun the onsessionstart() by just using cfset onsessionstart()
from within any of the request methods.

On Tue, May 27, 2008 at 1:58 PM, Carl Von Stetten [EMAIL PROTECTED]
wrote:

 Michael,

 I looked at the CGI variables in the debug output.  CGI.HTTP_COOKIE
 contains the correct JSESSIONID.  CGI.QUERY_STRING contains my url
 variables, but not the CFID or CFTOKEN.  However, session.urltoken
 contains JSESSIONID, CFID and CFTOKEN.

 Do I need CFID and CFTOKEN explicitly in my URLs?  I thought the
 JSESSIONID was enough.

 Michael Dinowitz wrote:
  Dump out your CGI scope and make sure that the variable values you are
  expecting are there. Along the same vein, the ucase is not needed as the
  basic comparison is case insensitive.
 
  cfdump var=#cgi#
 
  On Tue, May 27, 2008 at 12:58 PM, Carl Von Stetten [EMAIL PROTECTED]
 
  wrote:
 
 
  Why do you have locks? CF single threads these methods automatically.
  Secondly, I'd get rid of the cfreturn even though it isn't doing
  anything. Lastly, try renaming your application temporarily. That
  would force new sessions to be created.
 
  On Tue, May 27, 2008 at 11:35 AM, Carl V
 
  Ray,
 
  Thank you for responding.  The lock was just there for troubleshooting.
  I
  removed it.  I also removed the return, and renamed the application.  My
  variable still is not being initialized.
 
  Some further information - in my OnRequestStart function I check the URL
  variable for the presence of restart=true.  If it is found, it runs
 the
  OnApplicationStart and OnSessionStart functions to reinitialize the
  application.
 
  Snippet from OnRequestStart function:
  !--- If URL parameter restart=true is passed, reinitialize
 application and session variables ---
  cfif (UCase(Right(CGI.SCRIPT_NAME,3)) EQ CFM) AND
 (UCase(CGI.SCRIPT_NAME) DOES NOT CONTAIN /TESTING/) AND
 FindNoCase(restart=true,CGI.QUERY_STRING)
 cfset OnApplicationStart()
 cfset OnSessionStart()
  /cfif
 
  If I put the restart=true into the URL and load the page, the rd
  variable gets initialized.  It seems that OnSessionStart is not being
  executed when I first access this site.  Don't understand why it's not
  running.
 
  Carl
 
 
 
 
 

 

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


Re: Test

2008-05-16 Thread Michael Dinowitz
fixed.

On Fri, May 16, 2008 at 3:10 PM, Jason Durham [EMAIL PROTECTED] wrote:

 Getting bounce backs testing list


 

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


Re: Test

2008-05-16 Thread Michael Dinowitz
I'm always upgrading and optimizing. 

Ps... the list has been extremely fast for me since that last hiccup Mike.
Whatever you did... I like it :-)

.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


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


Re: Are we all going to get email bombed?

2008-05-08 Thread Michael Dinowitz
The coldfusion on the mail server had a problem and only a trickle of mail
was going through. When I found this out I restarted it and your getting the
result. If you see a problem with the lists, please feel free to email me or
call me at
718-951-3235 (home)
718-252-2329 (cell)

- If you see something, say something...to me

On Thu, May 8, 2008 at 7:45 AM, Bobby Hartsfield [EMAIL PROTECTED]
wrote:

 Did I miss a maintenance schedule or something? I don't recall the list
 ever
 being down this long.

 Are we all going to get flooded once mail starts coming in again? I haven't
 seen anything since Tuesday morning. (May 06)

 ..:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com
 http://cf4em.com





 

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


<    1   2   3   4   5   6   7   8   9   10   >