Re: Good article DWMX. Phewww...I'm not so crazy after all

2005-02-23 Thread Massimo Foti
 And I still desperately want a checkbox in the preferences which
 allows me to _completely_ disable the design view, which MM seems to
 be _completely_ disinterested in offering me. DW is so closely tied to
 the design view that I find it frequently open in spite of never
 opening it myself -- I think just switching between working templates
 frequently activates split mode. (So I take it back, this is my big
 complaint -- the previous is my big wish.)

You may try to hack the MMDocumentTypes.xml inside DW's configuration. Turn
the internaltype attribute for CF documents from Dynamic to Text. This
should force DW to disable design view based on file extension.

Keep in mind, DW has multi user configuration:
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_16420

No need to say it's better to back up first :-)


Massimo Foti
DW tools: http://www.massimocorner.com
CF tools:  http://www.olimpo.ch/tmt/



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196061
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Getting File Size with Java

2005-02-23 Thread Massimo Foti
 Have any more in your library you want to share??

I have a few CFC that leverage Java APIs available here:

http://www.olimpo.ch/tmt/


Massimo Foti
DW tools: http://www.massimocorner.com
CF tools:  http://www.olimpo.ch/tmt/




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196062
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


THIS scope

2005-02-23 Thread James Holmes
Does anyone use the THIS scope any more? Having just converted some nasty
old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
things to really nice, new, VARIABLES scope code using getters and setters,
I can't see a use for THIS, except for the return in an init() method.

Does anyone have a use for THIS that I am missing?


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196063
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread Duncan
Application.cfc effectively replaces the cfapplication tag. This tag:

cfapplication name=myapp sessionmanagement=yes sessiontimeout=10

becomes the following code in the pseudo-constructor area of
Application.cfc (i.e., immediately after the opening cfcomponent
tag):

cfset this.name = myapp /
cfset this.sessionmanagement = yes /
cfset this.sessiontimeout = 10 /

See the following documentation:

Reference Manual:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/0693.htm

Developing ColdFusion Applications:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/1115.htm
http://livedocs.macromedia.com/coldfusion/7/htmldocs/1123.htm


On Wed, 23 Feb 2005 17:03:43 +0800, James Holmes
[EMAIL PROTECTED] wrote:
 Does anyone use the THIS scope any more? Having just converted some nasty
 old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
 things to really nice, new, VARIABLES scope code using getters and setters,
 I can't see a use for THIS, except for the return in an init() method.
 
 Does anyone have a use for THIS that I am missing?
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196064
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Nick de Voil
I have a similar problem, though I arrived at it a different way.

IIS 5 on Windows XP. CF running in J2EE mode on top of JRun4.

Befor installing CF7 I decided to re-install JRun. That went fine. I
downloaded the J2EE version of CF 7  installed the cfusion server in
JRun. That's also fine. I can run CF apps and JSPs/servlets via the JRun web
server with no problem. Also, IIS is serving HTML, ASP and Perl with no
problems.

Now, to connect CF up to IIS. I ran the JRun Web Server Config Tool and
connected the cfusion server to All web sites in IIS. I see in IIS that
the JRunScripts virtual dir has been created and the jrun.dll has appeared,
and the mappings for cfm, cfc etc have been created. However, when I try to
hit a .cfm page that's located under wwwroot I get Cannot find server or
DNS error. Or sometimes, it just hangs.

What am I missing?

Thanks

Nick

- Original Message - 
From: Sean Corfield [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, February 23, 2005 7:35 AM
Subject: Re: [cfaussie] Re: Problems installing CFMX 7


 Mike,

 I wish I could offer some help here... I can only suggest that you
 apply for the position of Macromedia ColdFusion Installation QA since
 you seem capable of breaking our installers in every possible way...
 :)

 I'll send parts of this thread to the installer guys here and see if
 they can help you off-list...

 Sean


 On Wed, 23 Feb 2005 07:13:19 +1100, Mike Kear [EMAIL PROTECTED]
wrote:
  Thanks Michael, I did both of those things, and they apparently did
  what they're supposed to, because there were no error messages,  but
  then what?
 
  I still can't get the administrator to work, because   it still wants
  to download the index.cfm file rather than run it.
 
  If i run the jrun web server configuration tool, it still doesn't
  enable the OK button, still can't find any Jrun.   If I try to
  manually configure the IIS5.1 because apparently the installAnywhere
  routine doesnt want to,  I can't even add the .cfm file extension to
  the configuration of the default site, because there is no .exe file
  to add to the dialog box.
 
  I still say there ought to be some information at macromedia.com to
  help people for whom things dont go perfectly.   Like me.   I think
  that's far more important than explaining what happens when it's a
  perfect installation  for people who never need to see it.
 

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196065
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread Sean Corfield
Strange... that's my response to another thread here on cf-talk...???

On Wed, 23 Feb 2005 20:11:42 +1100, Duncan [EMAIL PROTECTED] wrote:
 Application.cfc effectively replaces the cfapplication tag. This tag:
 
 cfapplication name=myapp sessionmanagement=yes sessiontimeout=10
 
 becomes the following code in the pseudo-constructor area of
 Application.cfc (i.e., immediately after the opening cfcomponent
 tag):
 
 cfset this.name = myapp /
 cfset this.sessionmanagement = yes /
 cfset this.sessiontimeout = 10 /
 
 See the following documentation:
 
 Reference Manual:
 
 http://livedocs.macromedia.com/coldfusion/7/htmldocs/0693.htm
 
 Developing ColdFusion Applications:
 
 http://livedocs.macromedia.com/coldfusion/7/htmldocs/1115.htm
 http://livedocs.macromedia.com/coldfusion/7/htmldocs/1123.htm
 
 On Wed, 23 Feb 2005 17:03:43 +0800, James Holmes
 [EMAIL PROTECTED] wrote:
  Does anyone use the THIS scope any more? Having just converted some nasty
  old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
  things to really nice, new, VARIABLES scope code using getters and setters,
  I can't see a use for THIS, except for the return in an init() method.
 
  Does anyone have a use for THIS that I am missing?
 
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196066
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: THIS scope

2005-02-23 Thread James Holmes
I probably should have mentioned that we are on 6.1.

Even in that case in CF7, I just tested and they don't have to be THIS
variables, they can be put in the VARIABLES scope.

-Original Message-
From: Duncan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 23 February 2005 5:12 
To: CF-Talk
Subject: Re: THIS scope

Application.cfc effectively replaces the cfapplication tag. This tag:

cfapplication name=myapp sessionmanagement=yes sessiontimeout=10

becomes the following code in the pseudo-constructor area of Application.cfc
(i.e., immediately after the opening cfcomponent
tag):

cfset this.name = myapp /
cfset this.sessionmanagement = yes / cfset this.sessiontimeout = 10
/

See the following documentation:

Reference Manual:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/0693.htm

Developing ColdFusion Applications:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/1115.htm
http://livedocs.macromedia.com/coldfusion/7/htmldocs/1123.htm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196067
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Mike Kear
I'm continuing with this farce ... 

Now i've deleted it all again, using uninstall, then deleted the
folders that were left over because even after a simple install, the
uninstall can't clean up after itself. (I really think Macromedia
ought to look for another install engine - this one doesn't do much of
a job of wrapping up all the files,  closing down apps it doesnt like
on the target machine and install in a way it can delete properly. )

Now when I close down my anti-virus app, and turn off the firewall,  I
reinstall CF7.

Whoah.  Excitement! But nothing different.   It appears to install
correctly, I let it have whatever defaults it wants,  followed all the
instructions the installer gave me, but no change.Still wants to
download any .cfm file instead of execute it.

I can't use IIS to enable .CFM files to be executed like .htm files
becuase there is no coldfusion executable for it to associate with the
..cfm files.

So does anyone else have any other suggestions?  

(This is the reason I dont participate in beta tests - I can't afford
to have my business closed down for all this time.  I have had no
development facility in my shop now for 2 days.)

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


On Wed, 23 Feb 2005 09:19:18 -, Nick de Voil [EMAIL PROTECTED] wrote:
 I have a similar problem, though I arrived at it a different way.
 
 IIS 5 on Windows XP. CF running in J2EE mode on top of JRun4.
 
 Befor installing CF7 I decided to re-install JRun. That went fine. I
 downloaded the J2EE version of CF 7  installed the cfusion server in
 JRun. That's also fine. I can run CF apps and JSPs/servlets via the JRun web
 server with no problem. Also, IIS is serving HTML, ASP and Perl with no
 problems.
 
 
[snip]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196068
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread James Holmes
For personal dev, I always install using the built-in server. Have you tried
that? 

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 23 February 2005 6:36 
To: CF-Talk
Subject: Re: [cfaussie] Re: Problems installing CFMX 7

I'm continuing with this farce ... 

Now i've deleted it all again, using uninstall, then deleted the folders
that were left over because even after a simple install, the uninstall can't
clean up after itself. (I really think Macromedia ought to look for another
install engine - this one doesn't do much of a job of wrapping up all the
files,  closing down apps it doesnt like on the target machine and install
in a way it can delete properly. )

Now when I close down my anti-virus app, and turn off the firewall,  I
reinstall CF7.

Whoah.  Excitement! But nothing different.   It appears to install
correctly, I let it have whatever defaults it wants,  followed all the
instructions the installer gave me, but no change.Still wants to
download any .cfm file instead of execute it.

I can't use IIS to enable .CFM files to be executed like .htm files becuase
there is no coldfusion executable for it to associate with the ..cfm files.

So does anyone else have any other suggestions?  

(This is the reason I dont participate in beta tests - I can't afford to
have my business closed down for all this time.  I have had no development
facility in my shop now for 2 days.)

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


On Wed, 23 Feb 2005 09:19:18 -, Nick de Voil [EMAIL PROTECTED] wrote:
 I have a similar problem, though I arrived at it a different way.
 
 IIS 5 on Windows XP. CF running in J2EE mode on top of JRun4.
 
 Befor installing CF7 I decided to re-install JRun. That went fine. I 
 downloaded the J2EE version of CF 7  installed the cfusion server 
 in JRun. That's also fine. I can run CF apps and JSPs/servlets via the 
 JRun web server with no problem. Also, IIS is serving HTML, ASP and 
 Perl with no problems.
 
 
[snip]



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196069
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Mike Kear
No I haven't.  Why?   Wouldn't that mean IIS wouldnt be running and
therefore my non-CF sites woudlnt work?

I could give it a try I guess.  Nothing else has worked.  But I still
think the installation routine ought to work with WinXPPro, (which it
apparently does in most cases) but give a hint as to what was wrong
when it doesnt go as expected.  Then it ought to either give
instructions about what to do, or point the user (me) to some
resources to help solve the issue.

This has been a bloody fiasco, and has cost me a considerable amount
of time and trouble, and it's just a good thing I'm not earning all my
income from coldfusion development at the moment or it would have cost
me two days income so far.


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

On Wed, 23 Feb 2005 18:48:08 +0800, James Holmes
[EMAIL PROTECTED] wrote:
 For personal dev, I always install using the built-in server. Have you tried
 that?
 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196070
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread Duncan
Sorry - I should have mentioned I cut that from an earlier post from
Sean to one of my questions.

Duncan

On Wed, 23 Feb 2005 01:35:58 -0800, Sean Corfield
[EMAIL PROTECTED] wrote:
 Strange... that's my response to another thread here on cf-talk...???
 
 On Wed, 23 Feb 2005 20:11:42 +1100, Duncan [EMAIL PROTECTED] wrote:
  Application.cfc effectively replaces the cfapplication tag. This tag:
 
  cfapplication name=myapp sessionmanagement=yes sessiontimeout=10
 
  becomes the following code in the pseudo-constructor area of
  Application.cfc (i.e., immediately after the opening cfcomponent
  tag):
 
  cfset this.name = myapp /
  cfset this.sessionmanagement = yes /
  cfset this.sessiontimeout = 10 /
 
  See the following documentation:
 
  Reference Manual:
 
  http://livedocs.macromedia.com/coldfusion/7/htmldocs/0693.htm
 
  Developing ColdFusion Applications:
 
  http://livedocs.macromedia.com/coldfusion/7/htmldocs/1115.htm
  http://livedocs.macromedia.com/coldfusion/7/htmldocs/1123.htm
 
  On Wed, 23 Feb 2005 17:03:43 +0800, James Holmes
  [EMAIL PROTECTED] wrote:
   Does anyone use the THIS scope any more? Having just converted some nasty
   old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
   things to really nice, new, VARIABLES scope code using getters and 
   setters,
   I can't see a use for THIS, except for the return in an init() method.
  
   Does anyone have a use for THIS that I am missing?
  
  
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196071
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Nick de Voil
Mike

 No I haven't.  Why?   Wouldn't that mean IIS wouldnt be running and
 therefore my non-CF sites woudlnt work?

No, you can run IIS and JRun's builtin server simultaneously on different
ports. JRun will automatically choose a port that's free.

However, using the builtin server isn't really very satisfactory if you want
a local dev or staging copy of a site which is deployed on IIS in
production - which is why I too am trying to get IIS connected to CF.

Nick




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196072
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread Joe Rinehart
James,

I use the THIS scope for creating complex types to be sent over Web
Services.  I think that's about the only time I use it anymore.

-Joe


On Wed, 23 Feb 2005 17:03:43 +0800, James Holmes
[EMAIL PROTECTED] wrote:
 Does anyone use the THIS scope any more? Having just converted some nasty
 old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
 things to really nice, new, VARIABLES scope code using getters and setters,
 I can't see a use for THIS, except for the return in an init() method.
 
 Does anyone have a use for THIS that I am missing?
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196073
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Storing sql inside a field.

2005-02-23 Thread Protoculture
using MS-SQL.

What would be the best way to store an SQL query inside a field? Just as a 
simple text string / varchar?

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196074
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread James Holmes
Exactly, the IIS sites would be on port 80 and CF would be on port 8500 (by
default, anyway). Agreed, it isn't a perfect staging setup but at least it
gets you working again. 

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 23 February 2005 7:59 
To: CF-Talk
Subject: Re: [cfaussie] Re: Problems installing CFMX 7

Mike

 No I haven't.  Why?   Wouldn't that mean IIS wouldnt be running and
 therefore my non-CF sites woudlnt work?

No, you can run IIS and JRun's builtin server simultaneously on different
ports. JRun will automatically choose a port that's free.

However, using the builtin server isn't really very satisfactory if you want
a local dev or staging copy of a site which is deployed on IIS in production
- which is why I too am trying to get IIS connected to CF.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196075
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Will Tomlinson (or anyone else for that matter)...

2005-02-23 Thread Adrian Lynch
Thanks Will, I found that thread and hoped it was being sorted by CT. I
tried to get the error this morning and failed, do you think or know if they
have implemented the fix across all servers? You also mentioned you had it
happen on Firefox, it was the same for me, it might just have been
coincidence but I couldn't get the error on IE6! The browser is the last
place I'd look at for the cause of CF errors, but in this case, with the use
of cookies for the session management, I think there might be a link. But
who knows.

including my rants sometimes ranting gets things done, not wanting to
remind you or anyone else about your .Net posts, but I think they were very
useful. As flustered as some people got, it also meant they dug deeper to
explain their thoughts and points of view which for a bystander like myself
maed for an interesting read.

Having you around on CT will be great for those of us less vocal with our
concerns!

Now, if you could just get CT to hurry up with Flash Remoting on CF7 :OD

Ade

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED]
Sent: 22 February 2005 20:49
To: CF-Talk
Subject: Re: Will Tomlinson (or anyone else for that matter)...


... did you get the 'Session is invalid' problem sorted on CrystalTech? I
just got the error myself and HoF is not letting me on to search the
archives.


Here's what they're saying in CT forum.

It turns out the session issue is a bug, just as the issues noted regarding
flash remoting. The remoting issues are resolved, and we received a fix from
Macromedia yesterday for the session timeout issues. It's being tested and
should be rolled out to servers today.

Derek Curtis
Director of Sales and Marketing
[EMAIL PROTECTED]

Go here to see all the posts on the matter, including my rants! :)

http://www.crystaltech.com/forum/topic.asp?TOPIC_ID=10418whichpage=1

HTH,

Will



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196076
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Storing sql inside a field.

2005-02-23 Thread Adrian Lynch
I'd say yes to the varchar. Were you thinking there might be a special
datatype to do this? I don't know of any.

Ade

-Original Message-
From: Protoculture [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 11:37
To: CF-Talk
Subject: Storing sql inside a field.


using MS-SQL.

What would be the best way to store an SQL query inside a field? Just as a
simple text string / varchar?

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 266.4.0 - Release Date: 22/02/2005


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196077
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Mike Kear
So that means I'd have to uninstall it (AGAIN!) and reinstall it,
using the internal web server option wouldn't it?

Gawd it'll mean hours of testing and reconfiguring all my sites.   I
am NOT looking forward to this.  And the only reason I started this at
all was because Tim Buntel convinced me it was easy to install,
wouldn't cause muh disruption  and I'd be able to get a good look at
the new product.  Not for any immediate use, mind you, but just in
case I work for a client who has CF7.

Sometimes I think I'm a really really slow learner.  I had this same
kind of problem installing CFMX6.0 - took a week in that case - and I
swore I'd never install a version x.0 of anything ever again.   I
forgot that lesson and look what happened.

Pity Macromedia's install guys haven't learned from the fiasco their
MX6.0 caused.  Remember the way it wouldn't install unless you had a
256colour video card on your server, but none of the documentation
said so?They have been pretty short-changed on documentation on
this install routine too.  Guess they havent learned a thing from the
MX6.0 fiasco.

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


On Wed, 23 Feb 2005 20:34:45 +0800, James Holmes
[EMAIL PROTECTED] wrote:
 Exactly, the IIS sites would be on port 80 and CF would be on port 8500 (by
 default, anyway). Agreed, it isn't a perfect staging setup but at least it
 gets you working again.
 
 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 23 February 2005 7:59
 To: CF-Talk
 Subject: Re: [cfaussie] Re: Problems installing CFMX 7
 
 Mike
 
  No I haven't.  Why?   Wouldn't that mean IIS wouldnt be running and
  therefore my non-CF sites woudlnt work?


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196078
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
This is very disappointing for me - I had high expectations that the
Macromedia install people would have learned from the fiasco
surrounding the CFMX6.0 install routines.  No such luck.There is
no documentation anywhere telling us what to do if the installation
doesn't go perfectly.   And nowhere does it say that CFMX7 wont work
with IIS5.1, the currently installed IIS with WinXPPro.

So far it's cost me a lot of hours and i have NO working CFMX on my
dev machines.   Here's the saga so far 

[A] downloaded the trial version.
[B] didnt extract properly (thanks Kay for the heads-up on that!)
[C} downloaded another copy, tested it with WinZIP and it worked ok.
[D] installed it into my Dev PC and let it take all the defaults.
[E] it didnt work.All .cfm files would try to open in dreamweaver
or download, not execute.
[F]  Tried the web site configuration tool - it couldn'lt recognise
any jrun and I couldn'lt get it to give me an OK button so i could
configure any sites.   In the services tool of WinXPPRo it showed that
IIS, and JRUN are both running.
[G] After mucking about with it for an hour, I decided to uninstall it
and try again.
[H] uninstalling CFMX7 removed my CFMX6.1 CFIDE folder, so my CFMX,
working, administrator was broken.
[I] I reinstalled CFMX7, and no change - still didnt work.   I decided
that despite all the claims to the contrary, it didnt like being on a
windowsXPPro PC with CFMX6.1
[J]  I uninstalled all versions of CFMX and reinstalled CFMX7.
[K]  No change to the situation in F, except now i didnt have CFMX6.1
either.  Now none of my dev sites work and the only way to do work is
to edit in dreamweaver, and upload to the production and test there.
BAD!!
[L] On the advice from a helpful CF-Talk-er, I ran the batch files to
connect to JRUN and IIS, but while they both ran without giving
errors,  it made no difference.
[M] on another suggestion of a helpful CF-Talk-er, I Uninstalled it
yet again, rebooted a couple of times, to ensure no trace of CFMX7
remained, then disconnected from ASDL, turned off anti-virus and
firewall, and ran the install again.  Nothing different.  Still IIS is
working, ColdFusion isnt.


If anyone has any better ideas, I'm at a loss as to what to try next. 
I've got my back against the wall now, because the only way I can work
on any sites is to work directly on the live or the client-viewable
staging sites.



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

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196079
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Upgrading and datasources

2005-02-23 Thread Calvin Ward
I was afraid it would come to that, pretty unfortunate.

- Calvin

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 22, 2005 2:38 PM
To: CF-Talk
Subject: RE: Upgrading and datasources

 Has anyone performed an upgrade to CFMX 7 from CF 5 and had 
 issues with the datasources not working properly?
 
 CFMX7 doesn't seem to translate port numbers for SQL Server 
 properly (especially if they are set to dynamically determine 
 in the ODBC console) and none of the passwords seem to work!

In my experience, you typically have to reconfigure SQL Server datasources
when upgrading CF 5 to CFMX. There are several differences between CFMX and
previous versions when it comes to SQL Server. If you use the SQL Server
JDBC driver, you can't use anything other than TCP/IP to connect, and you
can't use Windows authentication within SQL Server - you need to use native
SQL logins (untrusted connections). If you need to use other network
protocols or Windows authentication, you will need to use an ODBC datasource
instead, and choose ODBC Socket within the CF Administrator.

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!




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196080
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mac Jordan
can't you reinstall the dev copy of MX6?

-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196081
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Error Oddity

2005-02-23 Thread Scott Mulholland
No, win2000, cfmx6.1. 

-Original Message-
From: Jehiah Czebotar [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 22, 2005 8:06 PM
To: CF-Talk
Subject: Re: Error Oddity


 for a template that does exist?

are you running on a linux machine where filenames are case sensitive ?

-- 
[EMAIL PROTECTED]



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196082
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Robertson-Ravo, Neil (RX)
Mike, have you verified that .cfm files can indeed be parsed by JRun? i.e.
in IIS is the .cfm extension mapped to the correct .dll/.exe



-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2005 13:05
To: CF-Talk
Subject: CF7 won't run under IIS, wont install - business almost shut down
for 2 days now.

This is very disappointing for me - I had high expectations that the
Macromedia install people would have learned from the fiasco
surrounding the CFMX6.0 install routines.  No such luck.There is
no documentation anywhere telling us what to do if the installation
doesn't go perfectly.   And nowhere does it say that CFMX7 wont work
with IIS5.1, the currently installed IIS with WinXPPro.

So far it's cost me a lot of hours and i have NO working CFMX on my
dev machines.   Here's the saga so far 

[A] downloaded the trial version.
[B] didnt extract properly (thanks Kay for the heads-up on that!)
[C} downloaded another copy, tested it with WinZIP and it worked ok.
[D] installed it into my Dev PC and let it take all the defaults.
[E] it didnt work.All .cfm files would try to open in dreamweaver
or download, not execute.
[F]  Tried the web site configuration tool - it couldn'lt recognise
any jrun and I couldn'lt get it to give me an OK button so i could
configure any sites.   In the services tool of WinXPPRo it showed that
IIS, and JRUN are both running.
[G] After mucking about with it for an hour, I decided to uninstall it
and try again.
[H] uninstalling CFMX7 removed my CFMX6.1 CFIDE folder, so my CFMX,
working, administrator was broken.
[I] I reinstalled CFMX7, and no change - still didnt work.   I decided
that despite all the claims to the contrary, it didnt like being on a
windowsXPPro PC with CFMX6.1
[J]  I uninstalled all versions of CFMX and reinstalled CFMX7.
[K]  No change to the situation in F, except now i didnt have CFMX6.1
either.  Now none of my dev sites work and the only way to do work is
to edit in dreamweaver, and upload to the production and test there.
BAD!!
[L] On the advice from a helpful CF-Talk-er, I ran the batch files to
connect to JRUN and IIS, but while they both ran without giving
errors,  it made no difference.
[M] on another suggestion of a helpful CF-Talk-er, I Uninstalled it
yet again, rebooted a couple of times, to ensure no trace of CFMX7
remained, then disconnected from ASDL, turned off anti-virus and
firewall, and ran the install again.  Nothing different.  Still IIS is
working, ColdFusion isnt.


If anyone has any better ideas, I'm at a loss as to what to try next. 
I've got my back against the wall now, because the only way I can work
on any sites is to work directly on the live or the client-viewable
staging sites.



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



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196083
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: You are not authorized to view this page

2005-02-23 Thread Victor Moore
This one is killing me for the last day or so.

I have an app like this
app
\mod1
\mod2
\mod3

On the home page of the app there is link to mod1 mod2 mod3  If a user
clicks on the link it will open a new browser session with the
specified module.
Suddenly one of them displays: You are not authorized to view this
page in the new open browser.

I didn't change anything, the users say they didn't change anything, I
check permissions both at OS file level and in IIS and all the folders
(files) have the same permissions, but still one of the links (that
work one day before) shows that error.

Has anybody encountered this problem,? I have tried all the KB
articles (related to this issue) on Microsoft support site) but still
no go.

I feel like loosing it 

Thanks
Victor

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196084
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: [cfaussie] Re: Problems installing CFMX 7

2005-02-23 Thread Adrocknaphobia
Mike,

I'm afraid you are in a vast minority here as 1000s of people have
installed CF7 successfully. Placing the blame on MM may be a bit
hasty. From you last post, the install seems to be working fine, but
the web server connector is failing.

Being that there are a number of external issues you may introduce
with how you setup IIS, I would focus on trying to reestablish that
connection rather than keep reinstalling. Have you tried running
wsconfig?

Will CF parse templates through the built-in web server?

-Adam


On Wed, 23 Feb 2005 23:46:47 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 So that means I'd have to uninstall it (AGAIN!) and reinstall it,
 using the internal web server option wouldn't it?
 
 Gawd it'll mean hours of testing and reconfiguring all my sites.   I
 am NOT looking forward to this.  And the only reason I started this at
 all was because Tim Buntel convinced me it was easy to install,
 wouldn't cause muh disruption  and I'd be able to get a good look at
 the new product.  Not for any immediate use, mind you, but just in
 case I work for a client who has CF7.
 
 Sometimes I think I'm a really really slow learner.  I had this same
 kind of problem installing CFMX6.0 - took a week in that case - and I
 swore I'd never install a version x.0 of anything ever again.   I
 forgot that lesson and look what happened.
 
 Pity Macromedia's install guys haven't learned from the fiasco their
 MX6.0 caused.  Remember the way it wouldn't install unless you had a
 256colour video card on your server, but none of the documentation
 said so?They have been pretty short-changed on documentation on
 this install routine too.  Guess they havent learned a thing from the
 MX6.0 fiasco.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 On Wed, 23 Feb 2005 20:34:45 +0800, James Holmes
 [EMAIL PROTECTED] wrote:
  Exactly, the IIS sites would be on port 80 and CF would be on port 8500 (by
  default, anyway). Agreed, it isn't a perfect staging setup but at least it
  gets you working again.
 
  -Original Message-
  From: Nick de Voil [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 23 February 2005 7:59
  To: CF-Talk
  Subject: Re: [cfaussie] Re: Problems installing CFMX 7
 
  Mike
 
   No I haven't.  Why?   Wouldn't that mean IIS wouldnt be running and
   therefore my non-CF sites woudlnt work?
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196085
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
Yes I could and unless I resolve this soon, that's what I'll have to
do,  but I would rather install CF7.

If I go back to CFMX6.1 now, I will most likely never try out CF7. It
will never find it's way into my hosting company and I will never let
a client of mine have it either, because I wont trust it.


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


On Wed, 23 Feb 2005 13:13:07 +, Mac Jordan [EMAIL PROTECTED] wrote:
 can't you reinstall the dev copy of MX6?
 
 --
 mac jordan
 home: www.kestrel.org
 work: www.webhorus.net
 them: www.jordan-cats.org
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196086
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: XMl serching and inserting

2005-02-23 Thread Alex Sherwood
Read the docs for Using XML in the MM Developing Applications 
section of the docs. Very simple, straightforward examples that will 
show you exatly what you need.

--
ALEX

Duncan wrote:

Hi everyone,

I wonder if anyone can point me in the right direction to do the
following in MX 7

I need to open an XML doc, search for an element, and if its not there
insert it without disturbing the rest of the doc.

Heres the structure (its my fusebox.xml): 

fusebox
   circuits
   circuit alias=general path=general/ parent=/
   /circuits
/fusebox

I am looking to chuck in circuits dynamically.

Thanks!

  



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196087
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Adrocknaphobia
IIS -- Website -- Properties -- Home Directory -- Configuration
(Application Settings).

Are there Application Mappings for cfm, cfml, cfc, etc? 

-Adam


On Thu, 24 Feb 2005 00:04:38 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 This is very disappointing for me - I had high expectations that the
 Macromedia install people would have learned from the fiasco
 surrounding the CFMX6.0 install routines.  No such luck.There is
 no documentation anywhere telling us what to do if the installation
 doesn't go perfectly.   And nowhere does it say that CFMX7 wont work
 with IIS5.1, the currently installed IIS with WinXPPro.
 
 So far it's cost me a lot of hours and i have NO working CFMX on my
 dev machines.   Here's the saga so far 
 
 [A] downloaded the trial version.
 [B] didnt extract properly (thanks Kay for the heads-up on that!)
 [C} downloaded another copy, tested it with WinZIP and it worked ok.
 [D] installed it into my Dev PC and let it take all the defaults.
 [E] it didnt work.All .cfm files would try to open in dreamweaver
 or download, not execute.
 [F]  Tried the web site configuration tool - it couldn'lt recognise
 any jrun and I couldn'lt get it to give me an OK button so i could
 configure any sites.   In the services tool of WinXPPRo it showed that
 IIS, and JRUN are both running.
 [G] After mucking about with it for an hour, I decided to uninstall it
 and try again.
 [H] uninstalling CFMX7 removed my CFMX6.1 CFIDE folder, so my CFMX,
 working, administrator was broken.
 [I] I reinstalled CFMX7, and no change - still didnt work.   I decided
 that despite all the claims to the contrary, it didnt like being on a
 windowsXPPro PC with CFMX6.1
 [J]  I uninstalled all versions of CFMX and reinstalled CFMX7.
 [K]  No change to the situation in F, except now i didnt have CFMX6.1
 either.  Now none of my dev sites work and the only way to do work is
 to edit in dreamweaver, and upload to the production and test there.
 BAD!!
 [L] On the advice from a helpful CF-Talk-er, I ran the batch files to
 connect to JRUN and IIS, but while they both ran without giving
 errors,  it made no difference.
 [M] on another suggestion of a helpful CF-Talk-er, I Uninstalled it
 yet again, rebooted a couple of times, to ensure no trace of CFMX7
 remained, then disconnected from ASDL, turned off anti-virus and
 firewall, and ran the install again.  Nothing different.  Still IIS is
 working, ColdFusion isnt.
 
 If anyone has any better ideas, I'm at a loss as to what to try next.
 I've got my back against the wall now, because the only way I can work
 on any sites is to work directly on the live or the client-viewable
 staging sites.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196088
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: XMl serching and inserting

2005-02-23 Thread Adrian Lynch
Being a bit laszy here but does anyone know if in CF7 you can now insert a
branch/node from one XML doc into another without getting an error?

Ade

-Original Message-
From: Alex Sherwood [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 13:29
To: CF-Talk
Subject: Re: XMl serching and inserting


Read the docs for Using XML in the MM Developing Applications
section of the docs. Very simple, straightforward examples that will
show you exatly what you need.

--
ALEX

Duncan wrote:

Hi everyone,

I wonder if anyone can point me in the right direction to do the
following in MX 7

I need to open an XML doc, search for an element, and if its not there
insert it without disturbing the rest of the doc.

Heres the structure (its my fusebox.xml):

fusebox
   circuits
   circuit alias=general path=general/ parent=/
   /circuits
/fusebox

I am looking to chuck in circuits dynamically.

Thanks!







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196089
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
I tried to map the extensions in IIS manually, but I couldn't find a
..exe file to map it to.  I dont know what the name and location of the
file is that it's supposed to associate .cfm  to, now that it's not a
windows application.

But why should I have to do that?  Run two batch files to connect to
the IIS, and then manually go into IIS and map the extensions to (what
..exe or .dll is it supposed to connect to actually?)

If I have to manually do one part of the installation (without any
documentation to tell me how by the way) how many other parts will
I have to do manually?The documentation says how to verify the
installatoin has gone properly, but says nothing whatever about what
to do if it hasn't.

I dont know enough about what's going on under the hood to do it
manually with no documentation, no checklist and no instructions.


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

On Wed, 23 Feb 2005 13:18:42 -, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Mike, have you verified that .cfm files can indeed be parsed by JRun? i.e.
 in IIS is the .cfm extension mapped to the correct .dll/.exe
 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196090
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Adrocknaphobia
Mike, I really don't mean to be rude, but I think your statements are
way off. Most likely this problem is between the monitor and the
chair. I'm running your same setup, in addition to 4 other setups
without problem.

-Adam


On Thu, 24 Feb 2005 00:27:30 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 Yes I could and unless I resolve this soon, that's what I'll have to
 do,  but I would rather install CF7.
 
 If I go back to CFMX6.1 now, I will most likely never try out CF7. It
 will never find it's way into my hosting company and I will never let
 a client of mine have it either, because I wont trust it.
 
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 On Wed, 23 Feb 2005 13:13:07 +, Mac Jordan [EMAIL PROTECTED] wrote:
  can't you reinstall the dev copy of MX6?
 
  --
  mac jordan
  home: www.kestrel.org
  work: www.webhorus.net
  them: www.jordan-cats.org
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196091
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Adrocknaphobia
You want to map them to a jrun.dll. Not an .exe.

-Adam


On Thu, 24 Feb 2005 00:34:43 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 I tried to map the extensions in IIS manually, but I couldn't find a
 ..exe file to map it to.  I dont know what the name and location of the
 file is that it's supposed to associate .cfm  to, now that it's not a
 windows application.
 
 But why should I have to do that?  Run two batch files to connect to
 the IIS, and then manually go into IIS and map the extensions to (what
 ..exe or .dll is it supposed to connect to actually?)
 
 If I have to manually do one part of the installation (without any
 documentation to tell me how by the way) how many other parts will
 I have to do manually?The documentation says how to verify the
 installatoin has gone properly, but says nothing whatever about what
 to do if it hasn't.
 
 I dont know enough about what's going on under the hood to do it
 manually with no documentation, no checklist and no instructions.
 
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 On Wed, 23 Feb 2005 13:18:42 -, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
  Mike, have you verified that .cfm files can indeed be parsed by JRun? i.e.
  in IIS is the .cfm extension mapped to the correct .dll/.exe
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196092
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
Thanks Adam.  Lets suppose I havent got a clue what I'm talking about.
 (It's possible.  My wife is convinced of that and reminds me
constantly)

How come I have now tried to install CF7 a dozen times and it's never
worked, and there's nothing anywhere that helps me find out what's
wrong?  Where are the Macromedia support pages to help people like me
who can't seem to muster the intelligence to install an application,
even after over 24 years of experience on PCs and another 12 years on
other computers before that?

And what about all the other people who are watching this exchange
carefully, waiting for a resolution  because it might help them in the
same predicament?

I'm not saying CF7 never installs correctly.   But it sure wouldn't
install for me.

When I had install problems with CFMX6.0 on our server machine, it
took three WEEKS or my hassling and whinging and complaining and
making a bloody nuisance of myself before someone from Macromedia
popped their head up and acknowledged that perhaps I had a problem.  
As a result, they discovered that CFMX6 wouldnt install on a common
server configuration at the time and required a 256 colour graphics
card.AND it turned out that DOZENS of others were having the same
problem.  And no one at Macromedia had noticed that when they changed
the install program they used, that the minimum spec for the target
machine had changed.

I'm not prepared ot accept that just because it installs ok for you,
that it's MY fault that it doesnt install for me.   Not yet anyway.  
It might be my fault, but if all those thousands of others can install
it ok, why can't I?   I want to know the answer to that question and
i'm surprised you dont too.

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


On Wed, 23 Feb 2005 08:35:52 -0500, Adrocknaphobia
[EMAIL PROTECTED] wrote:
 Mike, I really don't mean to be rude, but I think your statements are
 way off. Most likely this problem is between the monitor and the
 chair. I'm running your same setup, in addition to 4 other setups
 without problem.
 
 -Adam
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196093
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread S . Isaac Dealey
 Does anyone use the THIS scope any more? Having just
 converted some nasty
 old (CF 6.0) CFCs using THIS in external code and all
 sorts of other bad
 things to really nice, new, VARIABLES scope code using
 getters and setters,
 I can't see a use for THIS, except for the return in an
 init() method.

 Does anyone have a use for THIS that I am missing?

I've used it to inject methods into a CFC to create dynamic and
multiple inheritance. (An end-run around the lack of variables in the
extends attribute). Asside from that I avoid it.


s. isaac dealey 954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/story/?storyid=44477DE=1
http://www.sys-con.com/story/?storyid=45569DE=1
http://www.fusiontap.com


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196095
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread S . Isaac Dealey
 Does anyone use the THIS scope any more? Having just
 converted some nasty
 old (CF 6.0) CFCs using THIS in external code and all
 sorts of other bad
 things to really nice, new, VARIABLES scope code using
 getters and setters,
 I can't see a use for THIS, except for the return in an
 init() method.

 Does anyone have a use for THIS that I am missing?

I've used it to inject methods into a CFC to create dynamic and
multiple inheritance. (An end-run around the lack of variables in the
extends attribute). Asside from that I avoid it.


s. isaac dealey 954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/story/?storyid=44477DE=1
http://www.sys-con.com/story/?storyid=45569DE=1
http://www.fusiontap.com


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196095
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Case-sensitive Struct keys

2005-02-23 Thread S . Isaac Dealey
 -Original Message-
 From: Cedric Villat [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 22, 2005 10:50 PM
 To: CF-Talk
 Subject: Re: Case-sensitive Struct keys

 Dave,

 Any ideas on how to do this? The reason I originally did
 it in a struct,
 was I could simply find the properties of a word, since
 it was the key. If
 I organize the data as an array of structs and have the
 word value be a
 key in my struct, wouldn't that require more overhead
 when searching for
 that word? Do you have any code that would quickly find a
 word if this was
 the case?

 Personally I would use structs for this... the words
 really aren't variable
 names rather their labels for variable data (perhaps a
 subtle
 rationalization, but it works for me).

 To maintain case sensitivity you'll just have to use array
 notation to set
 and get your key names.

 But in this case I think that structs are the way to go.

I think we already covered this -- but array notation won't work for
him to maintain the case-sensitivity because in his case the same word
would be used twice with different case and actually need to have both
instances of the word (because he's wieghting them for the probability
of being SPAM). So array notation won't let him use both words -- it'd
have to be a Java HashMap or he'd have to hash() them in the
structure. Personally I'd probably use the HashMap.

s. isaac dealey 954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/story/?storyid=44477DE=1
http://www.sys-con.com/story/?storyid=45569DE=1
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196096
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Michael T. Tangorre
 From: Mike Kear [mailto:[EMAIL PROTECTED] 
 Thanks Adam.  Lets suppose I havent got a clue what I'm talking about.
  (It's possible.  My wife is convinced of that and reminds me
 constantly)
 I'm not prepared ot accept that just because it installs ok for you,
 that it's MY fault that it doesnt install for me.   Not yet anyway.  
 It might be my fault, but if all those thousands of others can install
 it ok, why can't I?   I want to know the answer to that question and
 i'm surprised you dont too.

Since you are definitely in the minority when it comes CFMX 7 installation
troubles, and days of Q/A on cf-talk has not gotten you further, I would
venture to guess that in all the emails back and forth with the list cost
you about the same as a single incident call to MM support. Have you
considered that?




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196097
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Jeff Fleitz
Hi Mike,

I am using XP Pro SP2 with the multiserver config, but the config shown here 
should be the same.  See if this helps.


Jeff






Mike Kear wrote:
 Yes I could and unless I resolve this soon, that's what I'll have to
 do,  but I would rather install CF7.
 
 If I go back to CFMX6.1 now, I will most likely never try out CF7. It
 will never find it's way into my hosting company and I will never let
 a client of mine have it either, because I wont trust it.
 
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 
 On Wed, 23 Feb 2005 13:13:07 +, Mac Jordan [EMAIL PROTECTED] wrote:
 
can't you reinstall the dev copy of MX6?

--
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196098
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Jeff Fleitz
Hi Mike,

I am using XP Pro SP2 with the multiserver config, but the config
shown here should be the same.  See if this helps.


Jeff



On Thu, 24 Feb 2005 00:57:45 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 Thanks Adam.  Lets suppose I havent got a clue what I'm talking about.
  (It's possible.  My wife is convinced of that and reminds me
 constantly)
 
 How come I have now tried to install CF7 a dozen times and it's never
 worked, and there's nothing anywhere that helps me find out what's
 wrong?  Where are the Macromedia support pages to help people like me
 who can't seem to muster the intelligence to install an application,
 even after over 24 years of experience on PCs and another 12 years on
 other computers before that?
 
 And what about all the other people who are watching this exchange
 carefully, waiting for a resolution  because it might help them in the
 same predicament?
 
 I'm not saying CF7 never installs correctly.   But it sure wouldn't
 install for me.
 
 When I had install problems with CFMX6.0 on our server machine, it
 took three WEEKS or my hassling and whinging and complaining and
 making a bloody nuisance of myself before someone from Macromedia
 popped their head up and acknowledged that perhaps I had a problem.
 As a result, they discovered that CFMX6 wouldnt install on a common
 server configuration at the time and required a 256 colour graphics
 card.AND it turned out that DOZENS of others were having the same
 problem.  And no one at Macromedia had noticed that when they changed
 the install program they used, that the minimum spec for the target
 machine had changed.
 
 I'm not prepared ot accept that just because it installs ok for you,
 that it's MY fault that it doesnt install for me.   Not yet anyway.
 It might be my fault, but if all those thousands of others can install
 it ok, why can't I?   I want to know the answer to that question and
 i'm surprised you dont too.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month.
 
 On Wed, 23 Feb 2005 08:35:52 -0500, Adrocknaphobia
 [EMAIL PROTECTED] wrote:
  Mike, I really don't mean to be rude, but I think your statements are
  way off. Most likely this problem is between the monitor and the
  chair. I'm running your same setup, in addition to 4 other setups
  without problem.
 
  -Adam
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196099
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Adrocknaphobia
Is there a virtual mapping to the JRunScripts directory?

-Adam


On Thu, 24 Feb 2005 00:04:38 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 This is very disappointing for me - I had high expectations that the
 Macromedia install people would have learned from the fiasco
 surrounding the CFMX6.0 install routines.  No such luck.There is
 no documentation anywhere telling us what to do if the installation
 doesn't go perfectly.   And nowhere does it say that CFMX7 wont work
 with IIS5.1, the currently installed IIS with WinXPPro.
 
 So far it's cost me a lot of hours and i have NO working CFMX on my
 dev machines.   Here's the saga so far 
 
 [A] downloaded the trial version.
 [B] didnt extract properly (thanks Kay for the heads-up on that!)
 [C} downloaded another copy, tested it with WinZIP and it worked ok.
 [D] installed it into my Dev PC and let it take all the defaults.
 [E] it didnt work.All .cfm files would try to open in dreamweaver
 or download, not execute.
 [F]  Tried the web site configuration tool - it couldn'lt recognise
 any jrun and I couldn'lt get it to give me an OK button so i could
 configure any sites.   In the services tool of WinXPPRo it showed that
 IIS, and JRUN are both running.
 [G] After mucking about with it for an hour, I decided to uninstall it
 and try again.
 [H] uninstalling CFMX7 removed my CFMX6.1 CFIDE folder, so my CFMX,
 working, administrator was broken.
 [I] I reinstalled CFMX7, and no change - still didnt work.   I decided
 that despite all the claims to the contrary, it didnt like being on a
 windowsXPPro PC with CFMX6.1
 [J]  I uninstalled all versions of CFMX and reinstalled CFMX7.
 [K]  No change to the situation in F, except now i didnt have CFMX6.1
 either.  Now none of my dev sites work and the only way to do work is
 to edit in dreamweaver, and upload to the production and test there.
 BAD!!
 [L] On the advice from a helpful CF-Talk-er, I ran the batch files to
 connect to JRUN and IIS, but while they both ran without giving
 errors,  it made no difference.
 [M] on another suggestion of a helpful CF-Talk-er, I Uninstalled it
 yet again, rebooted a couple of times, to ensure no trace of CFMX7
 remained, then disconnected from ASDL, turned off anti-virus and
 firewall, and ran the install again.  Nothing different.  Still IIS is
 working, ColdFusion isnt.
 
 If anyone has any better ideas, I'm at a loss as to what to try next.
 I've got my back against the wall now, because the only way I can work
 on any sites is to work directly on the live or the client-viewable
 staging sites.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196100
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
[A] there is no MM support in Australia. for the last 8 years at
least, any Australian support is restricted to is it plugged in?
except through resources such as this list and teh CFAUSSIE list.
[B] I only get to work on this currently at 10pm till 2am

[C] I'm far from alone.   MM clearly have an issue that they need to
address, even if only through help documentation, and if I just shut
up and forget it, it's not going to get fixed.  Just like the
256colour thing in CFMX6.0. (Did anyone notice on the system
requirements, it now says that a 256 colour graphics card is REQUIRED
on the server?   That came about because calls to MM support got
nowhere, and I made a fuss on CF-TALK, until some wonderful and
helpful people from MM's MX engineering picked the issue up and helped
us out)


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



On Wed, 23 Feb 2005 09:11:36 -0500, Michael T. Tangorre
[EMAIL PROTECTED] wrote:
  From: Mike Kear [mailto:[EMAIL PROTECTED]
  Thanks Adam.  Lets suppose I havent got a clue what I'm talking about.
   (It's possible.  My wife is convinced of that and reminds me
  constantly)
  I'm not prepared ot accept that just because it installs ok for you,
  that it's MY fault that it doesnt install for me.   Not yet anyway.
  It might be my fault, but if all those thousands of others can install
  it ok, why can't I?   I want to know the answer to that question and
  i'm surprised you dont too.
 
 Since you are definitely in the minority when it comes CFMX 7 installation
 troubles, and days of Q/A on cf-talk has not gotten you further, I would
 venture to guess that in all the emails back and forth with the list cost
 you about the same as a single incident call to MM support. Have you
 considered that?
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196101
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
On Wed, 23 Feb 2005 09:17:42 -0500, Jeff Fleitz [EMAIL PROTECTED] wrote:
 Hi Mike,
 
 I am using XP Pro SP2 with the multiserver config, but the config
 shown here should be the same.  See if this helps.
 
 Jeff
 

Thanks Jeff .


 shown where?

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

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196102
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Mike Kear
Virtual mapping?   Another thing that I have to do manually?   Is
there a list somewhere of all the things I have to do manually since
the install routine isnt doing it?

No, there's no virtual mapping in IIS to any jrun directory. 

And when I attempt to manually map the .cfm and .cfml extensions in
IIS5.1, it wont enable the OK or APPLY buttons, so I can't add the
mappings to IIS.

Does anyone know why this might happen?   The environment is WinXPPRO
with SP2 and all updates up till this morning applied.


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



On Wed, 23 Feb 2005 08:23:41 -0500, Adrocknaphobia
[EMAIL PROTECTED] wrote:
 Is there a virtual mapping to the JRunScripts directory?
 
 -Adam
 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196103
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Verity Issue

2005-02-23 Thread Blaine Korte
I've recently setup a new verity collection and it all works great, but, I
have one issue.

In my previous search setup using ht://Dig, if a page within the crawled
folder is setup with a meta name='robots' content='noindex', then that
page is not indexed and therefore not returned in the user's search query.

I now have a verity collection of all the files I want from a given folder,
(as filtered by .extension) but my 'non-indexed' pages are included in any
search returns. These pages we don't want in the general verity search. Is
there a way to query the page content for 'content='noindex' when the
cfindex is run and have these pages excluded from the collection?

Thanks.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196104
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Jeff Fleitz
I attached an image. Guess it got clipped... I will send it off list.

Jeff


On Thu, 24 Feb 2005 01:32:25 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 On Wed, 23 Feb 2005 09:17:42 -0500, Jeff Fleitz [EMAIL PROTECTED] wrote:
  Hi Mike,
 
  I am using XP Pro SP2 with the multiserver config, but the config
  shown here should be the same.  See if this helps.
 
  Jeff
 
 
 Thanks Jeff .
 
  shown where?
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196105
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Adrocknaphobia
Well 99% of the time you do not have to do this manually. However
there are numerous reasons why CF wouldnt be able to perform this
automatically. Usually involving how you setup IIS and system
privelages. As a professional hosting company, it may we worth
learning the ins and outs of the servers you must manage.

Located the wsconfig directory. Usually at cf-root/runtime/lib/wsconfig

There you should see numbered directories. You want to map a numbered
directory to IIS and name the virtual mapping 'JRunScripts'. This
directory holds the jrun.dll that you want to associated with cfm
templates.

Under Application Settings - Configuration in IIS, you should be able
to add entries for file extension and link them to the jrun.dll.

Under ISAPI Filters you want to add the Filter Name of JRun Connector
Filter and link it to the same jrun.dll.

-Adam


On Thu, 24 Feb 2005 01:36:23 +1100, Mike Kear [EMAIL PROTECTED] wrote:
 Virtual mapping?   Another thing that I have to do manually?   Is
 there a list somewhere of all the things I have to do manually since
 the install routine isnt doing it?
 
 No, there's no virtual mapping in IIS to any jrun directory.
 
 And when I attempt to manually map the .cfm and .cfml extensions in
 IIS5.1, it wont enable the OK or APPLY buttons, so I can't add the
 mappings to IIS.
 
 Does anyone know why this might happen?   The environment is WinXPPRO
 with SP2 and all updates up till this morning applied.
 
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 On Wed, 23 Feb 2005 08:23:41 -0500, Adrocknaphobia
 [EMAIL PROTECTED] wrote:
  Is there a virtual mapping to the JRunScripts directory?
 
  -Adam
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196106
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: help with JavaScript accordion

2005-02-23 Thread Paul
I experimented with Joe Rinehart's jComponents accordion navigation and
decided to write my own, both to learn how it works and because I want more
precise control over the CSS.  I've managed to fumble my way to a certain
degree of success but I'm a little stuck.  I would like only the first pane
open on page load and only one page open at a time. Here's what I have so
far - if you view source you can see my comments at lines 14 and 23.

 

(and if the js totally sucks I wouldn't be hurt if you had other tips as
well.)

 

-Paul



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196107
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: help with JavaScript accordion

2005-02-23 Thread Adrian Lynch
No code. But without looking at what you have, it sounds like you need to
call a close event on all menu items except the one you clicked on. On page
load you could call the onclick of the first item to open it.

Ade

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 15:09
To: CF-Talk
Subject: OT: help with JavaScript accordion


I experimented with Joe Rinehart's jComponents accordion navigation and
decided to write my own, both to learn how it works and because I want more
precise control over the CSS.  I've managed to fumble my way to a certain
degree of success but I'm a little stuck.  I would like only the first pane
open on page load and only one page open at a time. Here's what I have so
far - if you view source you can see my comments at lines 14 and 23.



(and if the js totally sucks I wouldn't be hurt if you had other tips as
well.)



-Paul
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 266.4.0 - Release Date: 22/02/2005


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196108
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Charlie Griefer
On Wed, 23 Feb 2005 09:11:36 -0500, Michael T. Tangorre
[EMAIL PROTECTED] wrote:

 Since you are definitely in the minority when it comes CFMX 7 installation
 troubles, and days of Q/A on cf-talk has not gotten you further, I would
 venture to guess that in all the emails back and forth with the list cost
 you about the same as a single incident call to MM support. Have you
 considered that?

Isn't MM tech support free for installation issues?

-- 
Charlie Griefer


...All the world shall be your enemy, Prince with a Thousand Enemies, 
and whenever they catch you, they will kill you. But first they must catch 
you, digger, listener, runner, prince with a swift warning. 
Be cunning and full of tricks and your people shall never be destroyed.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196109
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: help with JavaScript accordion

2005-02-23 Thread Paul
Doh!  My son woke up and distracted me from finishing the message.  Here's
what I meant to include.  You can view the source to see where I'm going... 

http://www.malan.org/accordion.html


-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 8:14 AM
To: CF-Talk
Subject: RE: help with JavaScript accordion

No code. But without looking at what you have, it sounds like you need to
call a close event on all menu items except the one you clicked on. On page
load you could call the onclick of the first item to open it.

Ade

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 15:09
To: CF-Talk
Subject: OT: help with JavaScript accordion


I experimented with Joe Rinehart's jComponents accordion navigation and
decided to write my own, both to learn how it works and because I want more
precise control over the CSS.  I've managed to fumble my way to a certain
degree of success but I'm a little stuck.  I would like only the first pane
open on page load and only one page open at a time. Here's what I have so
far - if you view source you can see my comments at lines 14 and 23.



(and if the js totally sucks I wouldn't be hurt if you had other tips as
well.)



-Paul
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 266.4.0 - Release Date: 22/02/2005




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196113
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: THIS scope

2005-02-23 Thread Thomas Chiverton
On Wednesday 23 Feb 2005 09:03 am, James Holmes wrote:
 Does anyone use the THIS scope any more? Having just converted some nasty

I put public attributes and simple things that aren't worth writing a get and 
set for in it.

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196114
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: open window full screen

2005-02-23 Thread Thomas Chiverton
On Tuesday 22 Feb 2005 20:55 pm, Paul wrote:
 And for what it's worth, nothing makes me more irritated than when a
 website maximizes my browser. 

Get a Better Browser :-)

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196115
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFForm Inside a Custom Tag?

2005-02-23 Thread Kenton Gray
I appreciate your recommendations, the onTap framework definitely looks  
like a powerful tool, but I think implementation might take me too long  
for this current project (I've never used xsl). I'll be sure to look  
into on my next one. Do you know of any other possible replacements of  
cfforms with datagrids and other form elements?

I saw this http://clearsoftware.net/jComponents1%5F0/ on the list this  
morning which has some nice looking ones.

Thanks,
Kenton


On Feb 22, 2005, at 6:26 PM, S. Isaac Dealey wrote:

 No you won't be able to use a cfform tag in a custom tag using this
 syntax... Unfortunately putting conditional logic around a cfform tag
 must encompas both the start and end cfform tags, so your cfcase
 statements around each tag (cfform and then /cfform) breaks the
 context of the cfform tag which will always throw an error.

 What flash form features were you hoping to use? You probably have a
 few options. One would be to try out the onTap framework (which is
 open-source and therefore free), and see if you like it's dhtml
 alternatives to the flash features like tabsets, etc. Alternatively
 you could create several wrapper tags for your form input elements,
 i.e. something like these:

 panel.cfm
 cfparam name=attributes.title default=Form Title
 cfparam name=attributes.action default=
 cfparam name=attributes.buttons default=ok,cancel,apply

 cfif thistag.executionmode is end
   cfform action=#attributes.action# method=post type=flash
 cfloop index=x from=1 to=#arraylen(thistag.input)#
   cfswitch expression=#thistag.input[x].type#
 cfcase value=format
   cfoutput#thistag.input[x].format#/cfoutput
 /cfcase
 cfdefaultcase
   cfinput type=#thistag.input[x].type# ...
 /cfdefaultcase
   /cfswitch
 /cfloop
   /cfform
 /cfif

 input.cfm
 cfparam name=attributes.type
 cfif attributes.type is format and thistag.executionmode is end
   cfset thistag.format = thistag.generatedcontent
 /cfif
 cfset thistag.generatedcontent = 
 cfif thistag.executionmode is end or attributes.type is not
 format
   cfassociate basetag=cf_panel datacollection=input
 /cfif

 To use these your code in the calling template would look something
 like this:

 cf_panel ...
   cf_input type=format... html formatting here.../cf_input
   cf_input type=text ...
   cf_input type=format... more html formatting.../cf_input
   cf_input type=checkbox ...
   ... etc...
 /cf_panel

 You would of course need to mirror all the attributes of the cfinput
 tag and there would probably be some additional squirrelling involved
 with the cfselect and cftextarea tags. I'm biased of course, I think
 you'd get more mileage (and fewer headaches) out of something like
 this:

 http://www.fusiontap.com/demo/powerontap.htm

 Which would allow you to use an XSL transformation to provide your
 standardized formatting with a form using a tabset for instance...
 which as far as I know (I could be wrong) is mutually exclusive with
 MX7's cfform tag features (xforms vs. flash forms).

 hth

 s. isaac dealey 954.927.5117
 new epoch : isn't it time for a change?

 add features without fixtures with
 the onTap open source framework

 http://macromedia.breezecentral.com/p49777853/
 http://www.sys-con.com/story/?storyid=44477DE=1
 http://www.sys-con.com/story/?storyid=45569DE=1
 http://www.fusiontap.com

 I'm trying to create a custom tag (a panel), that just
 creates a cfform
 with some divs in it and a standard button layout. This
 seemed natural
 to me after seeing the petmarket example that used a
 wrapper to set up
 the default html.

 First let me show you my way simplified code I made for
 testing:

 Here is the custom tag (panel.cfm) :

 cfparam name=attributes.title default=Form Title
 cfparam name=attributes.action default=
 cfparam name=attributes.buttons
 default=ok,cancel,apply

 cfswitch expression=#thisTAG.executionmode#
  cfcase value=start
  CFFORM ACTION=#attributes.action# METHOD=POST
  /cfcase
  cfcase value=end
  /CFFORM
  /cfcase
 /cfswitch




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196116
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


(Admin) Digests

2005-02-23 Thread Michael Dinowitz
The digests has a small problem (moved to a stored procedure that screwed
up) and those in digest mode received one for each post. This should be
fixed and if anyone in digest mode is still getting posts faster than they
should, please contact me off list.
Still as in any time after this post. :)
Thank you



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196117
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to set virtual sites for localhost viewing?

2005-02-23 Thread Rick Faircloth
Hi, Calvin...

I decided to try your approach with dev.myclient.com as a staging site for
clients,
but when I put the host header in with a current site, it's not showing...

For example:

Current Online Site:  www.online.net
Also has as host header:  online.net
Added host header: dev.online.net

But if I go to http://dev.online.net, it's not coming up.

I'm missing something somewhere...what could it be?

Rick


-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 22, 2005 6:54 AM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?


How about this:

Your site: www.defaultwebsite.com
Client site: www.myclient.com
Client development site: dev.myclient.com

Setup your development sites to have hostheaders for the dev.myclient.com
site. This would more closely mirror their site in production.

- Calvin

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED]
Sent: Monday, February 21, 2005 8:29 PM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?

it's good to have your development environment mirror your production
one as much as possible.

For sure...that's what I've done in the past and trying to setup this time.
It just takes some time to figure out the settings and procedures when
things are setup differently...

In production, presumably, that client's content
will have its own virtual server

Yes, that's what I've done in the past...the idea of using a virtual
directory
was for an intermediate step between initial (for my eyes only) development
and deployment of the finished site to the public.

For the client to be able to access the site on the Internet, without using
host headers for a virtual site (server), the website would have to be setup
in a virtual directory under the default website so it could be accessed
by domain name of the default website, e.g.
http://www.DefaultWebsite.com/website/index.cfm,
or by IP, e.g. http://66.xx.xx.xxx/website/index.cfm, right?

That seems to be the only two ways I can get a site to show up without
using the host headers and for those ways to work, I had to setup a virtual
directory
for the site and wait to setup a virtual site when I was ready to use the
domain name
with Host Headers...

Am I understanding things or am I missing something?

Rick


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Monday, February 21, 2005 5:33 PM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?


 The reason I don't go to a virtual server (site in IIS) at
 first is to avoid having to use Host Headers and expose the
 site to the public via the domain name before it's complete.
 Usually,  I would just tell a client to go
 http://66.xx.xx.79/cfdocs/yoursite/index.cfm to view their site.

 Looks like that'll just change to telling to go to
 http://www.DefaultWebsite.com/yoursite/index.cfm, which will
 work the same, promote my website (when I finally build it!)
 and be easier for the client to remember.

 Does this sound like it will work well?

You don't have to expose anything to anyone you don't want to, whether you
use virtual servers or not. I guess my whole point here is just to mention
that it's good to have your development environment mirror your production
one as much as possible. In production, presumably, that client's content
will have its own virtual server, and won't be a directory within a virtual
server.

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

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








~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196118
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free Coldfusion Devs Tool

2005-02-23 Thread Thomas Chiverton
On Tuesday 22 Feb 2005 19:28 pm, Kevin Aebig wrote:
 Hopefully an OSX version right away. Worst case scenario is that I post the
 swf and use FSCommand to write the config for the Mac guys...

Could you do something similar for us Linux people ?

It looks like just the sort of thing that could be useful to us, but we're 
Linux only :-(

Always ready to help you test, 
-- 
Tom Chiverton 
Advanced ColdFusion Programmer

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196119
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: open window full screen

2005-02-23 Thread Paul
 Get a Better Browser :-)

Does Firefox disallow these forced window sizing techniques?  Or did I miss
the joke... 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196120
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOT: AOL and IPs

2005-02-23 Thread Bryan Stevenson
Hey All,

I just found something kind of odd in the web logs for one of our clients and 
I'm wondering if any of the fine list membership can shed some light ;-)


There are a number of page requests from and AOL IP range (first 3 sets of 
number the same...the last set changes).  It is obviously the same person 
(based on their path through the site...and referring pages)...but the last 
number in the IP changed every couple of minutes.  Do AOL users all get 
funnelled through proxy servers or do their IPs change that fast?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196121
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: AOL and IPs

2005-02-23 Thread russ
Quoting Bryan Stevenson [EMAIL PROTECTED]:

 There are a number of page requests from and AOL IP range (first 3 
 sets of number the same...the last set changes).  It is obviously the 
 same person (based on their path through the site...and referring 
 pages)...but the last number in the IP changed every couple of 
 minutes.  Do AOL users all get funnelled through proxy servers or do 
 their IPs change that fast?

In my experienced (years of running a variety of sites with BAN IP
functionality), the AOL IPs didn't change within minutes (again, just my
experience), but did change rather frequently.

It's a pain, and in some instances, we over-banned.  Oops.

HTH,

R


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196122
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


A Little OT

2005-02-23 Thread djones
I was just curious what everyone does for search engine submission and
optimization.  I know the obvious stuff like alt tags, keywords, proper html
syntax, titles, text instead of images, ect

Are there any tricks that any of you have learned over time?  What software
do you use and what software is considered the industries best?

Thanks,

David


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196123
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: AOL and IPs

2005-02-23 Thread Robertson-Ravo, Neil (RX)
That is how AOL worksit can change every 15 mins.  It is also fecking
annoying - especially when you have a Load Balancer working off sticky
sessions.

AOL has a proxy farm which changes its IP addresses frequently



-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2005 16:27
To: CF-Talk
Subject: SOT: AOL and IPs

Hey All,

I just found something kind of odd in the web logs for one of our clients
and I'm wondering if any of the fine list membership can shed some light ;-)


There are a number of page requests from and AOL IP range (first 3 sets of
number the same...the last set changes).  It is obviously the same person
(based on their path through the site...and referring pages)...but the last
number in the IP changed every couple of minutes.  Do AOL users all get
funnelled through proxy servers or do their IPs change that fast?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196124
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: AOL and IPs

2005-02-23 Thread Robertson-Ravo, Neil (RX)
Some more info

http://webmaster.info.aol.com/proxyinfo.html



-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2005 16:27
To: CF-Talk
Subject: SOT: AOL and IPs

Hey All,

I just found something kind of odd in the web logs for one of our clients
and I'm wondering if any of the fine list membership can shed some light ;-)


There are a number of page requests from and AOL IP range (first 3 sets of
number the same...the last set changes).  It is obviously the same person
(based on their path through the site...and referring pages)...but the last
number in the IP changed every couple of minutes.  Do AOL users all get
funnelled through proxy servers or do their IPs change that fast?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196125
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Flash Form Validation

2005-02-23 Thread Tarantor
 

Hi,

 

I have a flash form as below.

 

cfform action=#CGI.SCRIPT_NAME#?event=users.passwordchangeaction
method=post name=passwordchange height=300 width=400 skin=haloblue
format=flash preloader=yes

cfinput type=text name=currentpassword size=12
message=Please enter current password! label=Current Password
required=yes /  

cfinput type=text name=newpassword size=12
message=Please enter new password! label=New Password required=yes /


cfinput type=text name=newpassword2 size=12
message=Please enter new password again! label=New Password Again
required=yes /  

 

cfinput type=submit name=changepassword value=Change My
Password label=Submit validate=submitonce /  

/cfform

 

I want to validate whether newpassword and newpassword2 fields are identical
or not on client side. Are there any method such as bind etc. To do this?

 

 

TIA!

 

 

Best regards,

 

Oðuz Demirkapý

 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196126
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: A Little OT

2005-02-23 Thread Robertson-Ravo, Neil (RX)
1. Learn basic HTML. Many search engine optimisation techniques involve
editing the behind the scenes HTML code. Your high rankings can depend on
knowing which codes are necessary, and which aren't - the following bullets
will explain how.

2. Choose keywords wisely. The keywords you think might be perfect for your
site may not be what people are actually searching for. To find the optimal
keywords for your site, use tools such as WordTracker. Choose two or three
highly targeted phrases for each page of your site. Never shoot for general
keywords such as travel or exhibition   ** You must also ensure that it
has good content relevancy **

Content relevancy is a search engine's measure of how well a particular Web
page accurately matches a searching question. For example, a query for car
insurance would list pages that were on the topic of car insurance above
pages that were just about insurance, generally, or cars, generally, because
the pages about car insurance would be much more relevant. 

3. Write at least 200 - 250 words of visible text copy based on your chosen
keywords. This is a crucial component to high rankings and a successful Web
site. The search engines need to read keyword rich copy on your pages so
they can successfully classify your site. Use each keyword phrase numerous
times within your copy for best results -  you would be surprised just how
many of our sites do not add Meta tags/keywords and for those that do you
will no doubt see needless repetition of words and phrases.

4. Create a killer Title tag. HTML title tags are critical because they're
given a lot of weight with all of the search engines. You must put your
keywords into this tag and not waste space with extra words. Do not use the
Title tag to display your company name or to say Home Page. Think of it
more as a Title Keyword Tag and create it accordingly. Add your company
name to the END of this tag, if you must use it. 

5. Create good meaty meta tags. Meta tags can be valuable, but they are not
a magic bullet. Create a Meta Description tag that uses your keywords and
also describes your site. The information in this tag often appears under
your Title in the search engine results pages. 

The Meta Keyword tag isn't quite as important as the Meta Description tag.
Contrary to popular belief, what you place in the keyword tag will have very
little bearing on what keywords your site is actually found under, and it's
not given any consideration whatsoever by Google. Use this tag, but do not
obsess over. 

6. Use extra goodies to boost rankings. Things like headlines, image alt
tags, header tags H1H2, etc.), links from other pages (this is very very
important - you should ensure your pages and links within your site all link
together), keywords in file names, and keywords in hyperlinks can
cumulatively boost search engine rankings. Use any or all of these where
they make sense for your site. 

7. Don't expect quick results. Getting high rankings takes time; there's no
getting around that fact. Once your site is added to a search engine or
directory, its ranking may start out low and then slowly work its way up the
ladder. Some search engines measure click-through popularity, i.e., the
more people that click on a particular site, the higher its ranking will go.
Be patient and give your site time to mature. 

8. Don't constantly tweak your site for better results. It's best not to
make changes to your optimization for at least three-to-six months after
submission. It often takes the engines at least that long to add your
optimized pages to their databases. Submit it, and then forget about it for
a while! 

9.  Do not use excessive repetition of a keyword in a page, optimizing a
page for a keyword which is unrelated to the contents of the site, using
invisible text, etc. Most search engines will penalize a page which uses
this technique - it is called spamdexing. 

10. Link Popularity: The number of sites which link to a particular site.
Many search engines use link popularity as a factor in determining the
search engine ranking of a web site.

11. Alt Tags and HREF Title tags: The alternative text that the browser
displays when the surfer does not want to or cannot see the pictures present
in a web page. Using alt / title tags containing keywords can improve the
search engine ranking of the page for those keywords.

If you've followed these tips and still can't find your site in the engines,
the first place to tweak would be your page copy. If you added less than
250 words of visible text on your pages, this is probably your culprit.
Also, double check your keyword density, and make sure that you only
targeted two or three phrases per page.  In a nutshell if you use he
following: Relevant anchor text, domain name, page title tags and relevant
content and headings you will get better rankings.






-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2005 16:31
To: CF-Talk
Subject: A 

Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Sean Corfield
On Wed, 23 Feb 2005 09:11:36 -0500, Michael T. Tangorre
[EMAIL PROTECTED] wrote:
 Since you are definitely in the minority when it comes CFMX 7 installation
 troubles, and days of Q/A on cf-talk has not gotten you further, I would
 venture to guess that in all the emails back and forth with the list cost
 you about the same as a single incident call to MM support. Have you
 considered that?

More to the point: Macromedia offer FREE INSTALLATION SUPPORT!

So rather than bad mouth the product on the list when thousands of
people have installed it flawlessly and are extremely happy with it,
it would be much better to simply get on the phone and have a Tech
Support person walk you through the install process and troubleshoot
whatever strangeness is going on with your particular system.

On the point of uninstalling CFMX 6.1 blowing away your CFIDE
directory: the upgrade instructions are pretty clear that you need to
back up your settings and customizations before performing that
uninstall (exactly because it blows away your CFIDE folder).
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 50, yes 50, invites to give away!

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196128
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: open window full screen

2005-02-23 Thread RADEMAKERS Tanguy
Tools - Options - Web Features - Ennable JavaScript [checkbox] -
Advanced ... [button] - Allow Scripts To: Move or resize existing
windows [checkbox]

or

about:config
dom.disable_window_move_resize = true 

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 5:19 PM
To: CF-Talk
Subject: RE: open window full screen

 Get a Better Browser :-)

Does Firefox disallow these forced window sizing techniques?  
Or did I miss
the joke... 




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196129
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Matt Robertson
If you have an error handler, then at the top of it test
http_user_agent and, if it turns out to be Slurp, feed them something
that makes them go away, like as Dave suggested a 200 error rather
than showing them whatever your friendly error is.

I've got the same problem and think I'll try this as soon as possible.
 Googlebot drives a client of mine nuts and this may be his ticket as
well.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196130
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOT: IIS Append to the Request Header

2005-02-23 Thread Adrocknaphobia
Here is a pretty random question...

Can IIS append to the request header before it passes it off the CF?

-Adam

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196131
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 Devnet + serving generated XML?

2005-02-23 Thread Figy, Kam
That doesn't work in CF7 either.

Grg

-Original Message-
From: Kwang Suh [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 22, 2005 2:16 PM
To: CF-Talk
Subject: Re: CF7 Devnet + serving generated XML?

In CF6.1 devnet edition, you could disable the not-for-production meta
tag by using cfcontent type=text/xml, so that you could serve
actual
cf-made xml to a browser. In the CF7 devnet edition, this no longer
seems to work.

Anyone know of any workarounds?

Kam

use cfcontent reset=yes.  I haven't tested it in cf7, but it does
work in cf6



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196132
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Bryan F. Hogan
I'm sorry if I've missed something in this thread. I have had the same
problem before with a few different spiders. I like it happening though
because it allows me to find something wrong that would get missed if it is
rarely or ever browsed by an actual user.

When an error would be generated I would go hunt it down and correct it. On
problems like a URL change or URL var change or something no longer
existing, I just had it catch the error and return nothing. However I like
the idea of returning an http status error. That way it may make it update
their index.

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 12:03 PM
To: CF-Talk
Subject: Re: Sloppy - Yahoo! Slurp throwing CFerrors

If you have an error handler, then at the top of it test
http_user_agent and, if it turns out to be Slurp, feed them something
that makes them go away, like as Dave suggested a 200 error rather
than showing them whatever your friendly error is.

I've got the same problem and think I'll try this as soon as possible.
 Googlebot drives a client of mine nuts and this may be his ticket as
well.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196133
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: open window full screen

2005-02-23 Thread Paul
Thanks, that's handy.  Surely the IE team must be saying why didn't we
think of that?

-Original Message-
From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 9:50 AM
To: CF-Talk
Subject: RE: open window full screen

Tools - Options - Web Features - Ennable JavaScript [checkbox] -
Advanced ... [button] - Allow Scripts To: Move or resize existing
windows [checkbox]

or

about:config
dom.disable_window_move_resize = true 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196135
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOLVED: Re: AOL and IPs

2005-02-23 Thread Bryan Stevenson
Thanks All...my suspiscion has been confirmed ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196136
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFForm Inside a Custom Tag?

2005-02-23 Thread S . Isaac Dealey
 I appreciate your recommendations, the onTap framework
 definitely looks
 like a powerful tool, but I think implementation might
 take me too long
 for this current project (I've never used xsl). I'll be
 sure to look
 into on my next one. Do you know of any other possible
 replacements of
 cfforms with datagrids and other form elements?

Datagrid is actually one of the few flash elements which I
unfortunately haven't replicated with the framework -- at least not
yet. It's too bad that the cfgrid tag requires cfform and so can't
be used for this -- or at least not easily. Which means when I do
manage to find/make the time to implement an alternative I will have
to implement the Flash datagrid myself.

There are a few other alternatives for forms, although afaik none
quite as thorough with the possible exception of PLUM which I haven't
had time to really look into. You might give it a look if you're using
Windows and don't mind installing the .NET framework.

http://www.productivityenhancement.com/

XSL isn't terribly difficult -- or at least it wasn't for me... It
does take some getting used to tho, and there are a few learning-curve
issues that can be kinda hairy, like it took me a while to find the
syntax to copy all the attributes from a given tag (iirc it's
xsl:copy-of select=@* /) and case-sensitivity can be a real bitch.


 I saw this http://clearsoftware.net/jComponents1%5F0/ on
 the list this morning which has some nice looking ones.

They're not bad -- I would have prefered they use slightly different
syntax for the tabsets, but we're using them at the office where I
work currently. (It's a large existing application and it's not really
feasible to rewrite the whole app in any given framework, onTap or
otherwise.)

the jComponents tabsets use:

cf_tab
cf_tabnavigation
cf_tabitem label=tab 1
cf_tabitem label=tab 2
/cf_tabnavigation
cf_tabpanel
... tab 1 content here ...
/cf_tabpanel
cf_tabpanel
... tab 2 content here ...
/cf_tabpanel
/cf_tab

I'd have preferred

cf_tabset
cf_tab label=tab 1
... tab 1 content here ...
/cf_tab
cf_tab
cf_tablabel
tab 2
/cf_tablabel
... tab 2 content here...
/cf_tab
/cf_tabset

Which is roughly equivalent of the xml syntax for the onTap tabs.

my 2c :)

s. isaac dealey   954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework
http://www.fusiontap.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196135
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: You are not authorized to view this page

2005-02-23 Thread Ian Skinner
I often see this error on a directory when there is no official default file 
in the directory, and the url does not specify an existing file.  When 
directory browsing is not allowed of course.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

-Original Message-
From: Victor Moore [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 23, 2005 5:24 AM
To: CF-Talk
Subject: OT: You are not authorized to view this page

This one is killing me for the last day or so.

I have an app like this
app
\mod1
\mod2
\mod3

On the home page of the app there is link to mod1 mod2 mod3  If a user
clicks on the link it will open a new browser session with the
specified module.
Suddenly one of them displays: You are not authorized to view this
page in the new open browser.

I didn't change anything, the users say they didn't change anything, I
check permissions both at OS file level and in IIS and all the folders
(files) have the same permissions, but still one of the links (that
work one day before) shows that error.

Has anybody encountered this problem,? I have tried all the KB
articles (related to this issue) on Microsoft support site) but still
no go.

I feel like loosing it 

Thanks
Victor



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196137
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Matt Robertson
What Mark is talking about is Slurp putting in its own url vars, if I
read him correctly.  I've seen the same thing.  When I first saw it I
thought it was someone hacking.  Heck, it still might be.

Amen to using errors to detect site flaws.  Reminds you of stuff like
the need to handle, for example, a form submission page that gets hit
with a GET instead of a POST.  I personally no longer email errors. 
They get stored to disk on the server.  Don't like cfdumping entire
scopes like I do and then emailing them in the clear.


-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196138
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFForm Inside a Custom Tag?

2005-02-23 Thread S . Isaac Dealey
 I appreciate your recommendations, the onTap framework
 definitely looks
 like a powerful tool, but I think implementation might
 take me too long
 for this current project (I've never used xsl). I'll be
 sure to look
 into on my next one. Do you know of any other possible
 replacements of
 cfforms with datagrids and other form elements?

 I saw this http://clearsoftware.net/jComponents1%5F0/ on
 the list this
 morning which has some nice looking ones.

 Thanks,
 Kenton

Oh I neglected to mention Matthew Walker's form tools...

ESW Software TerraForm

http://www.electricsheep.co.nz/products/terraform/

I had actually intended to offer this url in the first email and then
forgot to include it twice.

s. isaac dealey   954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework
http://www.fusiontap.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196139
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Bryan F. Hogan
Strange, you're right about emailing the dump. I like the email though. I
guess when you write the full info to disk you can email yourself that an
error occurred and the basic message with a link to your log or something.

I still email the dump, but I think I may just do what you mentioned. I like
it emailing though so I can get notified on my BlackBerry when there is an
error. Warning to anyone that wants to try emailing your Cell/PDA: Don't do
it if your server generates many errors. I've had a few times when someone
tried to take down a server by looping over a URL with invalid numerical
values for an ID var. They put it in a loop for if I remember correctly a
thousand iterations at 3AM! (Case in point to code for this possibility in
your applications)

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 12:41 PM
To: CF-Talk
Subject: Re: Sloppy - Yahoo! Slurp throwing CFerrors

What Mark is talking about is Slurp putting in its own url vars, if I
read him correctly.  I've seen the same thing.  When I first saw it I
thought it was someone hacking.  Heck, it still might be.

Amen to using errors to detect site flaws.  Reminds you of stuff like
the need to handle, for example, a form submission page that gets hit
with a GET instead of a POST.  I personally no longer email errors. 
They get stored to disk on the server.  Don't like cfdumping entire
scopes like I do and then emailing them in the clear.


-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196140
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFForm Inside a Custom Tag?

2005-02-23 Thread Joe Rinehart
 They're not bad -- I would have prefered they use slightly different
 syntax for the tabsets, but we're using them at the office where I
 work currently. (It's a large existing application and it's not really
 feasible to rewrite the whole app in any given framework, onTap or
 otherwise.)

Yeah...I agree, and I wrote them.  IFKNTWINK (if i knew then what i
knew now) you'd see a different syntax.  As it is, they work, so I'm
sort of leaving them alone.  Glad to hear they're working for you -
are you doing anything with the JS integration?

-Joe

-- 
For Tabs, Trees, and more, use the jComponents:
http://clearsoftware.net/client/jComponents.cfm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196141
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Jim McAtee
It strikes me that you shouldn't be allowing those munged or extraneous 
URL variable values to cause CF to throw errors.  For example, I'd never 
use something like the following

cfparam name=url.detailedview default=no type=boolean

Instead, I'd use

cfparam name=url.showdetails default=no
cfif not IsBoolean(url.showdetails)
  cfset url.showdetails = no
/cfif

You might accomplish something similar by wrapping the first in a 
cftry/cfcatch, but this is so much simpler, why bother?  If passing a 
numeric value directly from the url scope into a query, do something like

cfqueryparam cfsqltype=CF_SQL_NUMERIC value=#Val(url.view)#

Your query may come up empty, but at least you're not throwing errors 
because someone (or something, in your case) decided to get creative with 
the URL.




- Original Message - 
From: Mark W. Breneman [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Monday, February 21, 2005 10:21 AM
Subject: Sloppy - Yahoo! Slurp throwing CFerrors


 Does anyone else see CFerrors from Yahoo's spider / bot  Slurp? We 
 monitor
 all CFerrors that are generated on our servers. It seems that Yahoo! 
 Slurp
 is responsible for over 60% of the errors per week that are thrown by 
 our
 production webservers. It looks like Slurp is appending almost random 
 values
 to the query strings. id=5%E2%84%91=2 or  it may append an old URL var 
 that
 has not been used for years like view=archive. (This one throws a
 CF_SQL_NUMERIC error now.)  Does anyone know of a way I can get Slurp 
 to
 stop hitting these pages with invalid URL vars? And still keep Slurp
 indexing the site normaly?



 FYI I have a custom cf error page. After thinking about this for a 
 little
 while I can see where my custom cf error page may not look like an error
 page to Slurp.  Any idea of what I can do to make Slurp understand it is 
 an
 error?

 Thanks

 Mark W. Breneman
 -Cold Fusion Developer
 -Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com http://www.vividmedia.com/
  608.270.9770



 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196142
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to set virtual sites for localhost viewing?

2005-02-23 Thread Rick Faircloth
Anyone else have any thoughts on what Calvin suggested below
as far as setting up a development site for online client viewing of a
site in progress?

I can't figure out what I'm missing in the setupprobably something
Calvin
figured I knew...but apparently don't...

Rick


Hi, Calvin...

I decided to try your approach with dev.myclient.com as a staging site for
clients,
but when I put the host header in with a current site, it's not showing...

For example:

Current Online Site:  www.online.net
Also has as host header:  online.net
Added host header: dev.online.net

But if I go to http://dev.online.net, it's not coming up.

I'm missing something somewhere...what could it be?

Rick


-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 22, 2005 6:54 AM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?


How about this:

Your site: www.defaultwebsite.com
Client site: www.myclient.com
Client development site: dev.myclient.com

Setup your development sites to have hostheaders for the dev.myclient.com
site. This would more closely mirror their site in production.

- Calvin

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED]
Sent: Monday, February 21, 2005 8:29 PM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?

it's good to have your development environment mirror your production
one as much as possible.

For sure...that's what I've done in the past and trying to setup this time.
It just takes some time to figure out the settings and procedures when
things are setup differently...

In production, presumably, that client's content
will have its own virtual server

Yes, that's what I've done in the past...the idea of using a virtual
directory
was for an intermediate step between initial (for my eyes only) development
and deployment of the finished site to the public.

For the client to be able to access the site on the Internet, without using
host headers for a virtual site (server), the website would have to be setup
in a virtual directory under the default website so it could be accessed
by domain name of the default website, e.g.
http://www.DefaultWebsite.com/website/index.cfm,
or by IP, e.g. http://66.xx.xx.xxx/website/index.cfm, right?

That seems to be the only two ways I can get a site to show up without
using the host headers and for those ways to work, I had to setup a virtual
directory
for the site and wait to setup a virtual site when I was ready to use the
domain name
with Host Headers...

Am I understanding things or am I missing something?

Rick


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Monday, February 21, 2005 5:33 PM
To: CF-Talk
Subject: RE: How to set virtual sites for localhost viewing?


 The reason I don't go to a virtual server (site in IIS) at
 first is to avoid having to use Host Headers and expose the
 site to the public via the domain name before it's complete.
 Usually,  I would just tell a client to go
 http://66.xx.xx.79/cfdocs/yoursite/index.cfm to view their site.

 Looks like that'll just change to telling to go to
 http://www.DefaultWebsite.com/yoursite/index.cfm, which will
 work the same, promote my website (when I finally build it!)
 and be easier for the client to remember.

 Does this sound like it will work well?

You don't have to expose anything to anyone you don't want to, whether you
use virtual servers or not. I guess my whole point here is just to mention
that it's good to have your development environment mirror your production
one as much as possible. In production, presumably, that client's content
will have its own virtual server, and won't be a directory within a virtual
server.

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

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










~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196143
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFForm Inside a Custom Tag?

2005-02-23 Thread Joe Rinehart
IFKNTWINK (if i knew then what i knew now)

Yes, I realize I just screwed up the acronym horribly.  No need to
razz me about it (Scott Stroz, Doug Hughes), I'm already getting
IMs.

-Joe


On Wed, 23 Feb 2005 12:57:54 -0500, Joe Rinehart [EMAIL PROTECTED] wrote:
  They're not bad -- I would have prefered they use slightly different
  syntax for the tabsets, but we're using them at the office where I
  work currently. (It's a large existing application and it's not really
  feasible to rewrite the whole app in any given framework, onTap or
  otherwise.)
 
 Yeah...I agree, and I wrote them.  IFKNTWINK (if i knew then what i
 knew now) you'd see a different syntax.  As it is, they work, so I'm
 sort of leaving them alone.  Glad to hear they're working for you -
 are you doing anything with the JS integration?
 
 -Joe
 
 --
 For Tabs, Trees, and more, use the jComponents:
 http://clearsoftware.net/client/jComponents.cfm
 


-- 
For Tabs, Trees, and more, use the jComponents:
http://clearsoftware.net/client/jComponents.cfm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196144
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 won't run under IIS, wont install - business almost shut down for 2 days now.

2005-02-23 Thread Robert Munn
Mike, 

I sympathize with your problem. The multiserver install is quite a bit more 
complicated than the standalone install. The biggest issue always seems to be 
getting the connector installed properly, which is where you seem to be stuck. 
Can you at least get to the JRun Management Console (from the server, 
http://127.0.0.1:8000/). If you can get the JRun Console open, then you really 
are not that far from having a running system. 

There should be a folder %JRun_root%/lib/wsconfig/. That is where the config  
information for connections to an external Web server are stored. The wsconfig 
GUI makes numbered folders inside that folder- 1,2,3, etc, for each  external 
Web server connection you create. If that isn't working, you can create the 
connection manually. It's a pain, but I got the hang of it and now I just 
prefer to do everything by hand. I'm running Apache, though, so your config 
will differ somewhat from mine. I have a disabled IIS install from 6.1 that I 
will borrow from.

The basic config goes like this:

1. Create a folder inside %JRun_root%/lib/wsconfig. Call it whatever you want- 
I use the name of the CF server I created rather than a number like wsconfig 
uses by default. cfusion is the name of the default CF server the installer 
creates.

2. Inside that folder, create a text file called jrunserver.store. Open the 
file with Notepad and add this line:

proxyservers=proxyservers=127.0.0.1:%server_port%

where %server_port% is the proxy port for the cfusion server (or other CF 
server you have created) in the JRun Management Console. You'll find that proxy 
port value right on the opening page on the JMC.

3. Inside the same folder, create a text file called jrun_iis6_wildcard.ini. In 
the file add the lines:

verbose=false
serverstore=%JRun_root%/wsconfig/%foldername%/jrunserver.store
bootstrap=127.0.0.1:%server_port%
apialloc=false
ssl=false
#errorurl=optionally redirect to this URL on errors

where %JRun_root% is the full path to JRun, e.g. c:/JRun4, %foldername% is the 
name of the folder where you created the file and %server_port% is the same as 
step 2.

4. Find the JRun ISAPI filter for IIS. I think it is called 
jrun_iis6_wildcard.dll. Can anyone else confirm whether that is the same in 7 
as in 6.x? I don't know if that same dll is used for XP, this was from a Server 
2003 install. The IIS 5 file was called jrun.dll.

5. Copy the .dll ISAPI filter from Step 4 into the folder you created under 
wsconfig. You will point to that copy of the file for your IIS config.

6. In IIS, select your Web site, select Home Directory, click Configuration. 
Under Mappings, click Insert next to Wildcard Application Mappings. Point to 
the dll file. My install in 6.1 pointed here: 
C:\JRun4\lib\wsconfig\2\jrun_iis6_wildcard.dll. 

7. Back in the wsconfig folder, make a text file called wsconfig.properties. 
I'm borrowing from a 6.1 server config again. In the text file, add these lines:
1=IIS,1,false,
1.srv=localhost,cfusion
1.cfmx=true,null

where cfusion is the name of the CF Server in the JMC.

Stop and start JRun Admin Server Service, JRun Default Server Service, and JRun 
CFusion Server Service. 

First thing- run the CF Admin. It will want to install ODBC services, etc. to 
finish the configuration.

I hope that helps, anyone with clarification or corrections? 



Rob

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196145
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Matt Robertson
On Wed, 23 Feb 2005 12:53:01 -0500, Bryan F. Hogan
[EMAIL PROTECTED] wrote:
 I
 guess when you write the full info to disk you can email yourself that an
 error occurred and the basic message with a link to your log or something.

Bingo.  I write the files to .html and protect the site they go to
with Windows permissions. Then I view the errors over ssl.  You could
save the files as .cfm's and then use CF to handle the security.  I
wrote up the whole process, with all the code, at my site in the
tutorial section.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196146
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to set virtual sites for localhost viewing?

2005-02-23 Thread Jim McAtee
We do this all the time by setting up host names in DNS under our own 
domain name.  For example

nicksbakery.ourdomain.com
bobstire.ourdomain.com

If you know how to set up the virtual web sites in IIS using host headers, 
then what you may be missing is the need to configure the DNS.  We manage 
our own DNS, so it's pretty simple.  If you don't have direct access to 
the DNS for your domain this could be more trouble than its worth to have 
your ISP do it for you.  But your could have whoever does your domain's 
DNS delegate a zone to a DNS server that you could run on your development 
server exclusively for these development host names.  Have them delegate a 
sub-zone to your DNS server.  For instance

dev.ourdomain.com

Then you can manage the dev.ourdomain.com zone and create host names below 
that:

nicksbakery.dev.ourdomain.com
bobstire.dev.ourdomain.com

Alternately, you could register a domain name just for development 
purposes and run the DNS on your development server.



- Original Message - 
From: Rick Faircloth [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, February 23, 2005 11:05 AM
Subject: RE: How to set virtual sites for localhost viewing?


 Anyone else have any thoughts on what Calvin suggested below
 as far as setting up a development site for online client viewing of a
 site in progress?

 I can't figure out what I'm missing in the setupprobably something
 Calvin
 figured I knew...but apparently don't...

 Rick
 

 Hi, Calvin...

 I decided to try your approach with dev.myclient.com as a staging site 
 for
 clients,
 but when I put the host header in with a current site, it's not 
 showing...

 For example:

 Current Online Site:  www.online.net
 Also has as host header:  online.net
 Added host header: dev.online.net

 But if I go to http://dev.online.net, it's not coming up.

 I'm missing something somewhere...what could it be?

 Rick


 -Original Message-
 From: Calvin Ward [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 22, 2005 6:54 AM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?


 How about this:

 Your site: www.defaultwebsite.com
 Client site: www.myclient.com
 Client development site: dev.myclient.com

 Setup your development sites to have hostheaders for the 
 dev.myclient.com
 site. This would more closely mirror their site in production.

 - Calvin

 -Original Message-
 From: Rick Faircloth [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 21, 2005 8:29 PM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?

it's good to have your development environment mirror your production
 one as much as possible.

 For sure...that's what I've done in the past and trying to setup this 
 time.
 It just takes some time to figure out the settings and procedures when
 things are setup differently...

In production, presumably, that client's content
 will have its own virtual server

 Yes, that's what I've done in the past...the idea of using a virtual
 directory
 was for an intermediate step between initial (for my eyes only) 
 development
 and deployment of the finished site to the public.

 For the client to be able to access the site on the Internet, without 
 using
 host headers for a virtual site (server), the website would have to be 
 setup
 in a virtual directory under the default website so it could be accessed
 by domain name of the default website, e.g.
 http://www.DefaultWebsite.com/website/index.cfm,
 or by IP, e.g. http://66.xx.xx.xxx/website/index.cfm, right?

 That seems to be the only two ways I can get a site to show up without
 using the host headers and for those ways to work, I had to setup a 
 virtual
 directory
 for the site and wait to setup a virtual site when I was ready to use 
 the
 domain name
 with Host Headers...

 Am I understanding things or am I missing something?

 Rick


 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 21, 2005 5:33 PM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?


 The reason I don't go to a virtual server (site in IIS) at
 first is to avoid having to use Host Headers and expose the
 site to the public via the domain name before it's complete.
 Usually,  I would just tell a client to go
 http://66.xx.xx.79/cfdocs/yoursite/index.cfm to view their site.

 Looks like that'll just change to telling to go to
 http://www.DefaultWebsite.com/yoursite/index.cfm, which will
 work the same, promote my website (when I finally build it!)
 and be easier for the client to remember.

 Does this sound like it will work well?

 You don't have to expose anything to anyone you don't want to, whether 
 you
 use virtual servers or not. I guess my whole point here is just to 
 mention
 that it's good to have your development environment mirror your 
 production
 one as much as possible. In production, presumably, that client's 
 

Re: Verity Issue

2005-02-23 Thread Jehiah Czebotar
 I now have a verity collection of all the files I want from a given folder,
 (as filtered by .extension) but my 'non-indexed' pages are included in any
 search returns. These pages we don't want in the general verity search. Is
 there a way to query the page content for 'content='noindex' when the
 cfindex is run and have these pages excluded from the collection?
 

It sounds like this won't work.. but it's a suggestion anyway

I do a query of queries on the results to filter out specific url's.
Depending on your filestructure you may be able to do something 
similar.

select * from verity_search
where lower(url) not like '%_private%'
order by score desc

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196148
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFForm Inside a Custom Tag?

2005-02-23 Thread Paul
DWAXKTYH (Don't worry about it we all make mistakes.)

-Original Message-
From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 11:09 AM
To: CF-Talk
Subject: Re: CFForm Inside a Custom Tag?

IFKNTWINK (if i knew then what i knew now)

Yes, I realize I just screwed up the acronym horribly.  No need to
razz me about it (Scott Stroz, Doug Hughes), I'm already getting
IMs.

-Joe


On Wed, 23 Feb 2005 12:57:54 -0500, Joe Rinehart [EMAIL PROTECTED]
wrote:
  They're not bad -- I would have prefered they use slightly different
  syntax for the tabsets, but we're using them at the office where I
  work currently. (It's a large existing application and it's not really
  feasible to rewrite the whole app in any given framework, onTap or
  otherwise.)
 
 Yeah...I agree, and I wrote them.  IFKNTWINK (if i knew then what i
 knew now) you'd see a different syntax.  As it is, they work, so I'm
 sort of leaving them alone.  Glad to hear they're working for you -
 are you doing anything with the JS integration?
 
 -Joe
 
 --
 For Tabs, Trees, and more, use the jComponents:
 http://clearsoftware.net/client/jComponents.cfm
 


-- 
For Tabs, Trees, and more, use the jComponents:
http://clearsoftware.net/client/jComponents.cfm



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196149
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Matt Robertson
On Wed, 23 Feb 2005 10:59:01 -0700, Jim McAtee [EMAIL PROTECTED] wrote:
 cfqueryparam cfsqltype=CF_SQL_NUMERIC value=#Val(url.view)#

Holy cow thats simple.  Always thought of cfqueryparam as a
replacement for val() in raw sql.

(sound of head bonking repeatedly on wall)

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196150
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SPAM: RE: SPAM: RE: A Little OT

2005-02-23 Thread djones
Thanks for the info.  Do you know of a good piece of software for automatic
submissions? How often is too often to submit?

Thanks,

David

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 23, 2005 11:32 AM
To: CF-Talk
Subject: SPAM: RE: A Little OT
Importance: Low


1. Learn basic HTML. Many search engine optimisation techniques involve
editing the behind the scenes HTML code. Your high rankings can depend on
knowing which codes are necessary, and which aren't - the following bullets
will explain how.

2. Choose keywords wisely. The keywords you think might be perfect for your
site may not be what people are actually searching for. To find the optimal
keywords for your site, use tools such as WordTracker. Choose two or three
highly targeted phrases for each page of your site. Never shoot for general
keywords such as travel or exhibition   ** You must also ensure that it
has good content relevancy **

Content relevancy is a search engine's measure of how well a particular Web
page accurately matches a searching question. For example, a query for car
insurance would list pages that were on the topic of car insurance above
pages that were just about insurance, generally, or cars, generally, because
the pages about car insurance would be much more relevant.

3. Write at least 200 - 250 words of visible text copy based on your chosen
keywords. This is a crucial component to high rankings and a successful Web
site. The search engines need to read keyword rich copy on your pages so
they can successfully classify your site. Use each keyword phrase numerous
times within your copy for best results -  you would be surprised just how
many of our sites do not add Meta tags/keywords and for those that do you
will no doubt see needless repetition of words and phrases.

4. Create a killer Title tag. HTML title tags are critical because they're
given a lot of weight with all of the search engines. You must put your
keywords into this tag and not waste space with extra words. Do not use the
Title tag to display your company name or to say Home Page. Think of it
more as a Title Keyword Tag and create it accordingly. Add your company
name to the END of this tag, if you must use it.

5. Create good meaty meta tags. Meta tags can be valuable, but they are not
a magic bullet. Create a Meta Description tag that uses your keywords and
also describes your site. The information in this tag often appears under
your Title in the search engine results pages.

The Meta Keyword tag isn't quite as important as the Meta Description tag.
Contrary to popular belief, what you place in the keyword tag will have very
little bearing on what keywords your site is actually found under, and it's
not given any consideration whatsoever by Google. Use this tag, but do not
obsess over.

6. Use extra goodies to boost rankings. Things like headlines, image alt
tags, header tags H1H2, etc.), links from other pages (this is very very
important - you should ensure your pages and links within your site all link
together), keywords in file names, and keywords in hyperlinks can
cumulatively boost search engine rankings. Use any or all of these where
they make sense for your site.

7. Don't expect quick results. Getting high rankings takes time; there's no
getting around that fact. Once your site is added to a search engine or
directory, its ranking may start out low and then slowly work its way up the
ladder. Some search engines measure click-through popularity, i.e., the
more people that click on a particular site, the higher its ranking will go.
Be patient and give your site time to mature.

8. Don't constantly tweak your site for better results. It's best not to
make changes to your optimization for at least three-to-six months after
submission. It often takes the engines at least that long to add your
optimized pages to their databases. Submit it, and then forget about it for
a while!

9.  Do not use excessive repetition of a keyword in a page, optimizing a
page for a keyword which is unrelated to the contents of the site, using
invisible text, etc. Most search engines will penalize a page which uses
this technique - it is called spamdexing.

10. Link Popularity: The number of sites which link to a particular site.
Many search engines use link popularity as a factor in determining the
search engine ranking of a web site.

11. Alt Tags and HREF Title tags: The alternative text that the browser
displays when the surfer does not want to or cannot see the pictures present
in a web page. Using alt / title tags containing keywords can improve the
search engine ranking of the page for those keywords.

If you've followed these tips and still can't find your site in the engines,
the first place to tweak would be your page copy. If you added less than
250 words of visible text on your pages, this is probably your culprit.
Also, double check your keyword density, and make sure that you only
targeted two 

Re: CFForm Inside a Custom Tag?

2005-02-23 Thread S . Isaac Dealey
 They're not bad -- I would have prefered they use
 slightly different
 syntax for the tabsets, but we're using them at the
 office where I
 work currently. (It's a large existing application and
 it's not really
 feasible to rewrite the whole app in any given framework,
 onTap or
 otherwise.)

 Yeah...I agree, and I wrote them.  IFKNTWINK (if i knew
 then what i knew now)

Shouldn't that be IIKTWIKN?

 you'd see a different syntax.  As it is, they
 work, so I'm
 sort of leaving them alone.  Glad to hear they're working
 for you -
 are you doing anything with the JS integration?

Yea, my boss asked for next/last buttons below the tabset which are
using the js integration to increment or decrement the selected tab.
Which I must admit is easier to do with your tabs than it would have
been with mine, since, although there's great support for low-level
javascript in the framework, the tabsets don't have a real JS API
attached to them currently. And with the onTap framework's tabsets
supporting multiple rows that raises some additional questions about
what exactly next/last and selectedIndex really mean. So like your
syntax issues and my cfgrid issues, it's getting a back-seat for the
time being.


s. isaac dealey   954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework
http://www.fusiontap.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196152
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to set virtual sites for localhost viewing?

2005-02-23 Thread Rick Faircloth
I manage my DNS through GoDaddy.com, where I register my sites.
Haven't ventured into the land of managing my own DNS.

After looking into this at GoDaddy, it seems simpler, just to use
a virtual directory under my DefaultWebsite for online development viewing,
sending my client to http://www.DefaultWebsite.com/ClientSite, then, once
the site is ready to go live, make a virtual site for it...
http://www.ClientSite.com

Is that not easier than manipulating DNS constantly?
(It probably seems easier because I understand it!  ;o)

Rick




-Original Message-
From: Jim McAtee [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 23, 2005 1:21 PM
To: CF-Talk
Subject: Re: How to set virtual sites for localhost viewing?


We do this all the time by setting up host names in DNS under our own
domain name.  For example

nicksbakery.ourdomain.com
bobstire.ourdomain.com

If you know how to set up the virtual web sites in IIS using host headers,
then what you may be missing is the need to configure the DNS.  We manage
our own DNS, so it's pretty simple.  If you don't have direct access to
the DNS for your domain this could be more trouble than its worth to have
your ISP do it for you.  But your could have whoever does your domain's
DNS delegate a zone to a DNS server that you could run on your development
server exclusively for these development host names.  Have them delegate a
sub-zone to your DNS server.  For instance

dev.ourdomain.com

Then you can manage the dev.ourdomain.com zone and create host names below
that:

nicksbakery.dev.ourdomain.com
bobstire.dev.ourdomain.com

Alternately, you could register a domain name just for development
purposes and run the DNS on your development server.



- Original Message -
From: Rick Faircloth [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, February 23, 2005 11:05 AM
Subject: RE: How to set virtual sites for localhost viewing?


 Anyone else have any thoughts on what Calvin suggested below
 as far as setting up a development site for online client viewing of a
 site in progress?

 I can't figure out what I'm missing in the setupprobably something
 Calvin
 figured I knew...but apparently don't...

 Rick
 

 Hi, Calvin...

 I decided to try your approach with dev.myclient.com as a staging site
 for
 clients,
 but when I put the host header in with a current site, it's not
 showing...

 For example:

 Current Online Site:  www.online.net
 Also has as host header:  online.net
 Added host header: dev.online.net

 But if I go to http://dev.online.net, it's not coming up.

 I'm missing something somewhere...what could it be?

 Rick


 -Original Message-
 From: Calvin Ward [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 22, 2005 6:54 AM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?


 How about this:

 Your site: www.defaultwebsite.com
 Client site: www.myclient.com
 Client development site: dev.myclient.com

 Setup your development sites to have hostheaders for the
 dev.myclient.com
 site. This would more closely mirror their site in production.

 - Calvin

 -Original Message-
 From: Rick Faircloth [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 21, 2005 8:29 PM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?

it's good to have your development environment mirror your production
 one as much as possible.

 For sure...that's what I've done in the past and trying to setup this
 time.
 It just takes some time to figure out the settings and procedures when
 things are setup differently...

In production, presumably, that client's content
 will have its own virtual server

 Yes, that's what I've done in the past...the idea of using a virtual
 directory
 was for an intermediate step between initial (for my eyes only)
 development
 and deployment of the finished site to the public.

 For the client to be able to access the site on the Internet, without
 using
 host headers for a virtual site (server), the website would have to be
 setup
 in a virtual directory under the default website so it could be accessed
 by domain name of the default website, e.g.
 http://www.DefaultWebsite.com/website/index.cfm,
 or by IP, e.g. http://66.xx.xx.xxx/website/index.cfm, right?

 That seems to be the only two ways I can get a site to show up without
 using the host headers and for those ways to work, I had to setup a
 virtual
 directory
 for the site and wait to setup a virtual site when I was ready to use
 the
 domain name
 with Host Headers...

 Am I understanding things or am I missing something?

 Rick


 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 21, 2005 5:33 PM
 To: CF-Talk
 Subject: RE: How to set virtual sites for localhost viewing?


 The reason I don't go to a virtual server (site in IIS) at
 first is to avoid having to use Host Headers and expose the
 site to the public via the 

Another J2EE Stab In The Dark

2005-02-23 Thread Steve Brownlee
Upon installing CF7 on J2EE, the admin code forces a CF mapping for the CFIDE
directory.

 /CFIDE  {server deploy dir}\site.war\CFIDE 

However, it cannot be changed.  I found where it stored the mapping entry
[cfusion\lib\neo-runtime.xml], but it's stored as WDDX - not XML - and
manually setting this value to another directory on the drive does nothing.
It's a one-way street.  The admin doesn't read from this file as it does with
the other XML files in the LIB directory, it only writes to it.

What we want to do is store the CFIDE code in an already existing secure
directory, and I want the admin mapping to point there [e.g.
F:\SECURE\SERVERS\CFUSION\CFIDE] to avoid having to manage another security
zone by keeping it in the application directory.  Has anyone else
successfully attempted this, and if so, share how you did it?

Much appreciated,
Steve

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196154
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF7 Devnet + serving generated XML?

2005-02-23 Thread Calvin Ward
That's no good...

-Original Message-
From: Figy, Kam [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 12:08 PM
To: CF-Talk
Subject: RE: CF7 Devnet + serving generated XML?

That doesn't work in CF7 either.

Grg

-Original Message-
From: Kwang Suh [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 22, 2005 2:16 PM
To: CF-Talk
Subject: Re: CF7 Devnet + serving generated XML?

In CF6.1 devnet edition, you could disable the not-for-production meta
tag by using cfcontent type=text/xml, so that you could serve
actual
cf-made xml to a browser. In the CF7 devnet edition, this no longer
seems to work.

Anyone know of any workarounds?

Kam

use cfcontent reset=yes.  I haven't tested it in cf7, but it does
work in cf6





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196155
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Online Photo Editing?

2005-02-23 Thread Justin D. Scott
Not ColdFusion specific, but has anyone had experience working with an
online photo/image editor?  I've poked around a bit and I was not able to
find anything suitable.  Basically I'm looking for something that would
allow a user to specify an image on their hard drive, pull it into the
editor to they could crop, remove redeye, etc., then have the finished
product uploaded to the server.  Would prefer something in Flash to ensure
cross-browser/platform support, but we'll look at other options as well.
TIA for any thoughts on this issue.


---
Justin D. Scott
Vice President
Sceiron Interactive, Inc.
www.sceiron.com

[EMAIL PROTECTED]
941.378.5341 - office
941.320.2402 - mobile
877.678.6011 - facsimile


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196156
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfdump and functions bug (CF 7)

2005-02-23 Thread Sean Corfield
On Tue, 22 Feb 2005 15:17:09 -0300, Terracini [EMAIL PROTECTED] wrote:
 And the doubled outputed data was driving me crazy, since I was trying
 to find a non-existant bug in the UDF.
 
 Anyway, I think this is a CF7 bug, since it double the data outputed by
 a function when called by cfdump tag.

Yes, I've just received confirmation that this has been logged as bug
#59856. Thanx for finding this Fabio and sorry that it caused you some
inconvenience.
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 49, yes 49, invites to give away!

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196157
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: AOL and IPs

2005-02-23 Thread Rick Root
Bryan Stevenson wrote:
 
 I just found something kind of odd in the web logs for one of our clients and 
 I'm wondering if any of the fine list membership can shed some light ;-)
 
 
 There are a number of page requests from and AOL IP range (first 3 sets of 
 number the same...the last set changes).  It is obviously the same person 
 (based on their path through the site...and referring pages)...but the last 
 number in the IP changed every couple of minutes.  Do AOL users all get 
 funnelled through proxy servers or do their IPs change that fast?

There are certain applications that use session-based security 
restricted to a single IP address.  phpBB is one.  I've had numerous 
reports from users of some boards that I've run about AOL people having 
difficulty logging in.

BlogCFM also does IP-based session security, but it's optional.

You might find this article from the phpBB authors handy:

http://www.phpbb.com/kb/article.php?article_id=54

  - Rick

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196158
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IIS Append to the Request Header

2005-02-23 Thread Steve Brownlee
No, IIS only appends headers from the Web server to the browser, not the
other way around.

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 23, 2005 12:01 PM
To: CF-Talk
Subject: SOT: IIS Append to the Request Header

Here is a pretty random question...

Can IIS append to the request header before it passes it off the CF?

-Adam



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196159
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to set virtual sites for localhost viewing?

2005-02-23 Thread Bob Haroche
One thing I found using a SOHO router is that it doesn't support loopback,
meaning my browser can't go out to the Net and then return to my LAN to find
domain names or public IPs hosted on my own network. In my office I host my
own dev server (onpointsolutions.net).  My clients, who aren't on my network
obviously, can view www.client-dev-site.onpointsolutions.net fine but I
can't because of the router's limitations. The solution for me is to add an
entry to my workstation's host file like:

192.168.0.7 client-dev-site.onpointsolutions.net

This simply tells the workstation to stay within the network to view the dev
site on the server box next to it.

This method obviously won't help you determine if you've correctly
configured your server for outside visitors (for that I use a dial up
connection outside my LAN), but it will help if you can't view the sites
yourself from within your LAN.

HTH.

-
Regards,
Bob Haroche
O n P o i n t  S o l u t i o n s
www.OnPointSolutions.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196160
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: AOL and IPs

2005-02-23 Thread Phill B
Can some one explain what the /number means at the end of the IP
addresses? I read the page but I didn't see anything that would
explain it. I thought they were trying to show the IP range but I have
AOL traffic out side of those ranges.

152.163.240.0/21
152.163.248.0/22
152.163.252.0/23
152.163.96.0/22
152.163.100.0/23


On Wed, 23 Feb 2005 16:27:12 -, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Some more info
 
 http://webmaster.info.aol.com/proxyinfo.html
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196161
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: How to set virtual sites for localhost viewing?

2005-02-23 Thread Justin D. Scott
 One thing I found using a SOHO router is
 that it doesn't support loopback,

Some do, as we did not have that problem here when we had a local dev
server.  We use the LinkSys WRT45G unit and it always worked well for us in
this regard.


---
Justin D. Scott
Vice President
Sceiron Interactive, Inc.
www.sceiron.com

[EMAIL PROTECTED]
941.378.5341 - office
941.320.2402 - mobile
877.678.6011 - facsimile


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196162
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: FCKEditor XML Error

2005-02-23 Thread Jeff Chastain
Sorry for the off-topic, but I have not been able to find this answer any where 
else and I have seen people on this list talk about FCKEditor.

I am attempting to use FCKEditor 2.0 RC2 on CFMX 6.1 w/ Win2K3.  Everything 
works fine until I load the resource browser via the browse button in the image 
properties dialog.  When the resource browser loads, I get a javascript pop-up 
saying:

 XML request error: Internal Server Error (500).

I have found several questions regarding this error, but no answers.  If 
anybody has any suggestions they would like to send me off-list, I would 
appreciate it.

Thanks
-- Jeff

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196163
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   3   >