end of my CFHTTP rope

2003-02-01 Thread Jay Kufner
Good evening everyone---



I'm at the end of my rope, I can't get cfhttp to work. I've read through
both of Ben fortas MX books, searched on line and experimented until I'm
blue in the face. The code seems good to me-  Please, I need a second pair
of eyes:



SETUP: I'm collecting info from a form, sending it to a CFC to add sensitive
data then sending that form which I've built to a API on another server.



STEP 1

The form works fine, collects, calls, and passes information to the function
inside My cfc.

I think the next step is the problem. From all my test (Using cfdump with
HTTP variables which produces nothing, submitting to different urls some
that don't exists, which DOES not produce an error it seems the cfhttp tag
is not submitting any data. It's just sitting there-



Here is the CFHTTP code (inside my function):



cffunction name=addCreditInfo

   access=remote

   returntype=void

  displayname=add sensitive info to a credit card
transaction





!--- this will be the live address---

!--- URL=https://secure.authorize.net/gateway/transact.dll;
method=post---



!--- testing address ONLY---

cfhttp url=
http://localhost/12.5/components/cart/receiveResponse.cfc?method=setResponse


method=post



cfhttpparam type=formfield name=x_Version value=3.1

cfhttpparam type=formfield name=x_Delim_Data value=true

cfhttpparam type=formfield name=x_login value=#logname#

cfhttpparam type=formfield name=x_password value=#passWord#

cfhttpparam type=formfield name=x_Type value=AUTH_CAPTURE

cfhttpparam type=formfield name=x_First_Name
value=#arguments.x_First_Name#

cfhttpparam type=formfield name=x_Last_Name
value=#arguments.x_Last_Name#

cfhttpparam type=formfield name=x_Company
value=#arguments.x_Company#

cfhttpparam type=formfield name=x_Address
value=#arguments.x_Address#

cfhttpparam type=formfield name=x_City value=#arguments.x_City#

cfhttpparam type=formfield name=x_State value=#arguments.x_State#

cfhttpparam type=formfield name=x_Zip value=#arguments.x_Zip#

cfhttpparam type=formfield name=x_Country
value=#arguments.x_Country#

cfhttpparam type=formfield name=x_Card_Num
value=#arguments.x_Card_Num#

cfhttpparam type=formfield name=x_Exp_Date
value=#arguments.x_Exp_Date#

cfhttpparam type=formfield name=x_Amount value=#arguments.x_Amount#

cfhttpparam type=formfield name=x_Card_Num
value=#arguments.x_Card_Num#

cfhttpparam type=formfield name=x_Exp_Date
value=#arguments.x_Exp_Date#

cfhttpparam type=formfield name=x_Customer_IP
value=#arguments.x_Customer_IP#



/cfhttp

/cffunction



STEP 2

This is the function inside another CFC. For testing purposes the first CFC
is submitting via CFHTTP to the second CFC. When the site goes live, the
first CFC will submit to authorize Net, which in turn will submit back to
the second CFC.



In either case, I don't seem to be submitting ANYTHING via the CFHTTP in the
first CFC.



As always,

My eternal gratitude in advance



Jay






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




end of my CFHTTP rope!

2003-02-01 Thread Jason kufner
Good evening everyone---



I'm at the end of my rope, I can't get cfhttp to work. I've read through
both of Ben fortas MX books, searched on line and experimented until I'm
blue in the face. The code seems good to me-  Please, I need a second pair
of eyes:



SETUP: I'm collecting info from a form, sending it to a CFC to add sensitive
data then sending that form which I've built to a API on another server.



STEP 1

The form works fine, collects, calls, and passes information to the function
inside My cfc.

I think the next step is the problem. From all my test (Using cfdump with
HTTP variables which produces nothing, submitting to different urls some
that don't exists, which DOES not produce an error it seems the cfhttp tag
is not submitting any data. It's just sitting there-



Here is the CFHTTP code (inside my function):



cffunction name=addCreditInfo

   access=remote

   returntype=void

  displayname=add sensitive info to a credit card
transaction





!--- this will be the live address---

!--- URL=https://secure.authorize.net/gateway/transact.dll;
method=post---



!--- testing address ONLY---

cfhttp url=
http://localhost/12.5/components/cart/receiveResponse.cfc?method=setResponse


method=post



cfhttpparam type=formfield name=x_Version value=3.1

cfhttpparam type=formfield name=x_Delim_Data value=true

cfhttpparam type=formfield name=x_login value=#logname#

cfhttpparam type=formfield name=x_password value=#passWord#

cfhttpparam type=formfield name=x_Type value=AUTH_CAPTURE

cfhttpparam type=formfield name=x_First_Name
value=#arguments.x_First_Name#

cfhttpparam type=formfield name=x_Last_Name
value=#arguments.x_Last_Name#

cfhttpparam type=formfield name=x_Company
value=#arguments.x_Company#

cfhttpparam type=formfield name=x_Address
value=#arguments.x_Address#

cfhttpparam type=formfield name=x_City value=#arguments.x_City#

cfhttpparam type=formfield name=x_State value=#arguments.x_State#

cfhttpparam type=formfield name=x_Zip value=#arguments.x_Zip#

cfhttpparam type=formfield name=x_Country
value=#arguments.x_Country#

cfhttpparam type=formfield name=x_Card_Num
value=#arguments.x_Card_Num#

cfhttpparam type=formfield name=x_Exp_Date
value=#arguments.x_Exp_Date#

cfhttpparam type=formfield name=x_Amount value=#arguments.x_Amount#

cfhttpparam type=formfield name=x_Card_Num
value=#arguments.x_Card_Num#

cfhttpparam type=formfield name=x_Exp_Date
value=#arguments.x_Exp_Date#

cfhttpparam type=formfield name=x_Customer_IP
value=#arguments.x_Customer_IP#



/cfhttp

/cffunction



STEP 2

This is the function inside another CFC. For testing purposes the first CFC
is submitting via CFHTTP to the second CFC. When the site goes live, the
first CFC will submit to authorize Net, which in turn will submit back to
the second CFC.



In either case, I don't seem to be submitting ANYTHING via the CFHTTP in the
first CFC.



As always,

My eternal gratitude in advance



Jay





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re[2]: SOT: Serv-U?

2003-02-01 Thread cf-talk
We use it on all our servers.
Very nice product.
Ran through the years without a problem.
Uwe

R I don't mean to jump down your throat on that one, but do you have any
R statistics on that?

R I've used several hosts over the years, am using several now, and I can
R only honestly count 1 that has used them.

R Don't get me wrong, I've used it at home on a personal server, but
R that's a fairly bold statement.

R Russ Unger
R Managing Partner
R blueChrome design, LLC
R www.bluechromedesign.com
R 312.593.4260 :office
R 877.433.8427 :pager
R 312.873.4033 :fax

R Yep, we have RH  CFMX Hosting, too. Feel free to ask about it.

 -Original Message-
 From: paul smith [mailto:[EMAIL PROTECTED]] 
 Sent: Friday, January 31, 2003 12:03 AM
 To: CF-Talk
 Subject: Re: SOT: Serv-U?
 
 
 Serv-U is the hands-down standard FTP Server used by MANY ISPs.
 Rock-solid.  No trouble to administer.  Have used it here for 
 many years.
 Would not even consider any other product.
 
 best,  paul
 
 At 11:06 PM 1/30/03 -0600, you wrote:
 In Windows2k Server, setting up multiple FTP accounts 
 require you to assign
 unique port numbers for each account.  It is a hassle to set 
 up and to keep
 track of.  You also have to add a user and a group to set 
 them up, plus set
 permissions in the designated directories.
 
 with WU-FTP all users can use the standard port of 21, and 
 are sent via 
 username
 to the directory you designate.  No additional users in 
 Win2k, as WU-FTP keep
 track of that.
 
 
 
 =
 Douglas White
 group Manager
 mailto:[EMAIL PROTECTED]
 http://www.samcfug.org
 =
 - Original Message -
 From: Rick Faircloth [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 30, 2003 9:22 PM
 Subject: RE: SOT: Serv-U?
 
 
 | HI, Matt.
 |
 | I've looked over Serv-U at their site,
 | but still not sure what it's used for.
 | Couldn't I do the same things, basically, that it does
 | with administration tools in Windows 2000 Server, like
 | setting up FTP accounts, etc.?
 |
 | I saw the traffic analysis stuff...but is that the benefit?
 |
 | (Although I've been unsuccessful trying to setup regular 
 User FTP accounts
 | on my server, unless the user is part of the Administrator Group.
 | Haven't figured that one out, yet...)
 |
 | Rick
 |
 |
 |   -Original Message-
 |   From: Matt Robertson [mailto:[EMAIL PROTECTED]]
 |   Sent: Thursday, January 30, 2003 5:20 PM
 |   To: CF-Talk
 |   Subject: Re: SOT: Serv-U?
 | 
 | 
 |   http://serv-u.com :D
 | 
 |   I've used it for quite a while and prefer it.
 | 
 |   ---
 |Matt Robertson, [EMAIL PROTECTED]
 |MSB Designs, Inc. http://mysecretbase.com
 |   ---
 | 
 | 
 |   -- Original Message 
 --
 |   From: Tilbrook, Peter [EMAIL PROTECTED]
 |   Reply-To: [EMAIL PROTECTED]
 |   date: Fri, 31 Jan 2003 09:16:41 +1100
 | 
 |   Does anyone know who sells the FTP daemon package Serv-U?
 |   Where do I find
 |   it?
 |   
 |   ==
 |   Peter Tilbrook
 |   Internet Applications Developer
 |   Australian Building Codes Board
 |   GPO Box 9839
 |   CANBERRA ACT 2601
 |   AUSTRALIA
 |   
 | WWW: http://www.abcb.gov.au/
 |  E-Mail: [EMAIL PROTECTED]
 |   Telephone: (02) 6213 6731
 |  Mobile: 0439 401 823
 |   Facsimile: (02) 6213 7287
 |   
 |   
 |   
 
 |   **
 |   The information contained in this e-mail, and any
 |   attachments to it, is
 |   intended for the use of addressee and is confidential.  If
 |   you are not
 |   the intended recipient, you must not use, disclose, read,
 |   forward, copy or
 |   retain any of the information.  If you have 
 received this e-mail in
 |   error, please delete it and notify the sender by return
 |   e-mail or telephone.
 |   The Commonwealth does not warrant that any attachments are
 |   free from
 |   viruses or any other defects.  You assume all liability for
 |   any loss, damage, or
 |   other consequences which may arise from opening or using
 |   the attachments.
 |   
 |   
 
 |   **
 |   
 | 
 |
 
 
R 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

  

Re: CF equivalent of phpinfo()?

2003-02-01 Thread Jesse Houwing
Joshua Miller wrote:

Look in the CF Documentation under: CFML_Reference / Variables and
Reserved Words / CGI Environment Variables

There is a list of all of the CGI server and client variables that you
could use to create a server info page.

Use debugging to get a complete list of variables. You can also 
cfinclude the debugger on anypage.

It doesn't include information on the datasources or the memory settings
or anything like that, you have to get into the ServiceFactory to get
some of that information.
  

You can fin dthose settings in the settingssummary in the cfadmin though :)

Jesse

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: end of my CFHTTP rope

2003-02-01 Thread jonhall
My first step when I have a problem like this is fire up my handy http
sniffer http://www.effetech.com/sniffer/ and see what is actually
flowing across the wire. Your favorite sniffer will work as well.
Just remember sniffers can't catch traffic that does not flow across
the NIC, so localhost/127.0.0.1 wont show anything. Point cfhttp at
any test server and see what happens...

-- 
jonhall
mailto:[EMAIL PROTECTED]

Saturday, February 1, 2003, 3:16:22 AM, you wrote:

JK Good evening everyone---



JK I'm at the end of my rope, I can't get cfhttp to work. I've read through
JK both of Ben fortas MX books, searched on line and experimented until I'm
JK blue in the face. The code seems good to me-  Please, I need a second pair
JK of eyes:



JK SETUP: I'm collecting info from a form, sending it to a CFC to add sensitive
JK data then sending that form which I've built to a API on another server.



JK STEP 1

JK The form works fine, collects, calls, and passes information to the function
JK inside My cfc.

JK I think the next step is the problem. From all my test (Using cfdump with
JK HTTP variables which produces nothing, submitting to different urls some
JK that don't exists, which DOES not produce an error it seems the cfhttp tag
JK is not submitting any data. It's just sitting there-

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Starting CF with cfstart.bat - Can you assign an account?

2003-02-01 Thread Dave Watts
 When I use the runas command, it asks for a 
 password. Is it possible to pass a password 
 to the runas program so that it can be 
 automated?

To be honest, I have no idea. If you want to use it in a batch file, I'm
sure there's some way to pass the password to it, although it might not be
as simple as an additional attribute.

 Also, if I use net start instead, will it always 
 start the service under the account listed, even 
 when called from a script?

Yes. Services always run within the account in which they're configured to
run. This is the option I'd recommend. The cfstart.bat file seems useful for
diagnostics, but not for restarting CFMX, really. Just write a batch file
with the appropriate net stop and net start commands, and you'll be all
set.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




cfqueryparam and datetime

2003-02-01 Thread Murat Demirci
How can i use the cfqueryparam tag to bind with a datetime field?

.murat



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: cfqueryparam and datetime

2003-02-01 Thread Jochem van Dieten
Murat Demirci wrote:
 How can i use the cfqueryparam tag to bind with a datetime field?

Use the timestamp type.

Jochem


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF equivalent of phpinfo()?

2003-02-01 Thread Gyrus
 You can fin dthose settings in the settingssummary in the cfadmin though
:)

Please check the original question, which was about someone without access
to CF Admin being able to view a summary of the settings...

I know you can get basic server info from CGI variables and the Server
scope, I was more interested in the actual settings, stuff like whitespace
management and cache setttings... What's ServiceFactory?

I think I'll go over to the MM wishlist with cfdumpsettings or
something... Obviously there are some things like DSN's and passwords that
shouldn't be accessible to everyone on a shared server, but I find it a real
pain to have to contact the hosts all the time to see, have they got this
turned on, what have they got that set to, etc. I'm sure they're miffed at
having to answer things like this all the time as well! Something like
phpinfo() seems like it would be easy to implement and very useful to us who
can't assume control of a server.

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://norlonto.net
PGP key available

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF equivalent of phpinfo()?

2003-02-01 Thread Jochem van Dieten
Gyrus wrote:
 
 I know you can get basic server info from CGI variables and the Server
 scope, I was more interested in the actual settings, stuff like whitespace
 management and cache setttings... What's ServiceFactory?

http://spike.oli.tudelft.nl/jochemd/index.cfm?PageID=10


 I think I'll go over to the MM wishlist with cfdumpsettings or
 something... Obviously there are some things like DSN's and passwords that
 shouldn't be accessible to everyone on a shared server, but I find it a real
 pain to have to contact the hosts all the time to see, have they got this
 turned on, what have they got that set to, etc. I'm sure they're miffed at
 having to answer things like this all the time as well!

If you harass them long enough they will probably write an interface for 
you that will allow you to see exactly what they want you to see. That 
last part is a bit tricky, it could depend on the specific setup what 
knowledge is considered a security risk.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF equivalent of phpinfo()?

2003-02-01 Thread cf-talk
One thing I never cared much for was the fact that anyone on a shared server
can see that server's serial number.

-Novak

- Original Message -
From: Gyrus [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, February 01, 2003 10:36 AM
Subject: Re: CF equivalent of phpinfo()?


  You can fin dthose settings in the settingssummary in the cfadmin though
 :)

 Please check the original question, which was about someone without access
 to CF Admin being able to view a summary of the settings...

 I know you can get basic server info from CGI variables and the Server
 scope, I was more interested in the actual settings, stuff like whitespace
 management and cache setttings... What's ServiceFactory?

 I think I'll go over to the MM wishlist with cfdumpsettings or
 something... Obviously there are some things like DSN's and passwords that
 shouldn't be accessible to everyone on a shared server, but I find it a
real
 pain to have to contact the hosts all the time to see, have they got this
 turned on, what have they got that set to, etc. I'm sure they're miffed at
 having to answer things like this all the time as well! Something like
 phpinfo() seems like it would be easy to implement and very useful to us
who
 can't assume control of a server.

 Gyrus
 [EMAIL PROTECTED]
 work: http://www.tengai.co.uk
 play: http://norlonto.net
 PGP key available

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CFMX on FreeBSD

2003-02-01 Thread Ben Arledge
Thanks for your insights Brandon, I'll definitely use it as a reference
if I run into problems.

I'm just way too busy to try it out now, maybe this next week I'll have
an opportunity. :)

Cheers,

Ben Arledge
www.arledge.net

-Original Message-
From: Brandon Harper [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, February 01, 2003 12:53 AM
To: CF-Talk
Subject: RE: CFMX on FreeBSD


 
 Has anyone been able to get CFMX and FreeBSD working together?
 

I got it working on CFMX RC1 last Spring or so with FreeBSD 4.5.  Keep
in mind that working means in standalone mode only and that Verity will
probably never work.  I didn't try to setup an ODBC connection.

 If so, have you experienced problems with this setup? Solutions?

After I finally got it setup, I realized the same flaw as when I got
JRun 2 running on FreeBSD.  Its kind of pointless to do because there
are no connectors to get it to work with Apache.  It's a fun project I
guess, but without being able to do much with the standalone webserver
such as multihoming, its not of any use to me.

Here are some very rough notes of my install if you're curious:

http://booms.net/article.php?story=20030104145852802

They are by no means thorough since I decided it was sort of a waste of
time to go back and document it properly, but perhaps it will be of some
help.  It was really pretty easy.

- Brandon


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CF equivalent of phpinfo()?

2003-02-01 Thread Jim Davis
 -Original Message-
 From: Gyrus [mailto:[EMAIL PROTECTED]] 
 Sent: Saturday, February 01, 2003 1:36 PM
 To: CF-Talk
 Subject: Re: CF equivalent of phpinfo()?
 
 
  You can fin dthose settings in the settingssummary in the cfadmin 
  though
 :)
 
 Please check the original question, which was about someone 
 without access to CF Admin being able to view a summary of 
 the settings...

In my mind this is something often (perhaps universally ignored) by
hosts:

I want to know such things so they should post them.  I want to know
when service packs and hotfixes are applied as well.  Most hosts only
irregularly update their users on this.

I would be really impressed by a host that provided a complete
settings/software inventory in their client's area.

Does any host do this?

Jim Davis


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




OT (But Important): In Honor...

2003-02-01 Thread Lee Fuller
It is truly a sad day for this country, and for the world.  We've lost 7
very brave and honorable people.  I simply wanted to express my sorrow and
shock at the tragedy of this morning.  I happened to have met several of the
members of this crew due to special function we jointly attended.  So this
brings this shock even closer to home.


To the crew of Columbia...

We will miss you all, and will never forget who you are and what you stand
for.  Thanks for being part of making our country great.  I know that *I*
will strive to be worthy of your efforts.

To the family of the crew members...

All I can say is that you should be VERY proud.  Hold your head up while you
morn.  They deserve it.

-

On a personal note, I suggest that each of us send a donation to our
favorite charity in the names of:

Rick Husband
William McCool
Michael Anderson
Kalpana Chawla
David Brown
Laurel Clark
Ilan Ramon

... then go hug your kids, wife/husband/girlfriend/boyfriend, father,
mother, sisters or brothers, and even you best friend.  Tell them that you
love them, and remember that it only takes moments -- to end a life or to
brighten a life.  Brighten one before it ends.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF equivalent of phpinfo()?

2003-02-01 Thread S . Isaac Dealey
So they could theoretically call MM for tech support. ;P

 One thing I never cared much for was the fact that anyone
 on a shared server can see that server's serial number.

 -Novak

 - Original Message -
 From: Gyrus [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Saturday, February 01, 2003 10:36 AM
 Subject: Re: CF equivalent of phpinfo()?


  You can fin dthose settings in the settingssummary in
  the cfadmin though
 :)

 Please check the original question, which was about
 someone without access
 to CF Admin being able to view a summary of the
 settings...

 I know you can get basic server info from CGI variables
 and the Server
 scope, I was more interested in the actual settings,
 stuff like whitespace
 management and cache setttings... What's ServiceFactory?

 I think I'll go over to the MM wishlist with
 cfdumpsettings or
 something... Obviously there are some things like DSN's
 and passwords that
 shouldn't be accessible to everyone on a shared server,
 but I find it a
 real
 pain to have to contact the hosts all the time to see,
 have they got this
 turned on, what have they got that set to, etc. I'm sure
 they're miffed at
 having to answer things like this all the time as well!
 Something like
 phpinfo() seems like it would be easy to implement and
 very useful to us
 who
 can't assume control of a server.

 Gyrus
 [EMAIL PROTECTED]
 work: http://www.tengai.co.uk
 play: http://norlonto.net
 PGP key available


 ~~
 ~~~|
 Archives:
 http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
 Subscription: http://www.houseoffusion.com/cf_lists/index.
 cfm?method=subscribeforumid=4
 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
 This list and all House of Fusion resources hosted by
 CFHosting.com. The place for dependable ColdFusion
 Hosting.

   Unsubscribe: http://www.houseoffusion.com/cf_lists/uns
   ubscribe.cfm?user=633.558.4



s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF equivalent of phpinfo()?

2003-02-01 Thread S . Isaac Dealey
 You can fin dthose settings in the settingssummary in the
 cfadmin though
 :)

 Please check the original question, which was about
 someone without access
 to CF Admin being able to view a summary of the
 settings...

 I know you can get basic server info from CGI variables
 and the Server
 scope, I was more interested in the actual settings, stuff
 like whitespace
 management and cache setttings... What's ServiceFactory?

Even if you can't get the info you want from the serviceFactory (which I
honestly know little about), you could probably figure out ways to test for
some of the various conditions on the server and create your own script to
test for and show this info. Like you can determine if the default client
variable storage uses cookies by checking for the existance of the
cfid/cftoken cookie -- it's easy enough to determine if the server is using
UUID's for cftokens, and whitespace could be determined by using
cfsavecontent to create a specific string and then checking the length of
that string.


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




CSS Question

2003-02-01 Thread Duane Boudreau
Hi All,

I'm looking for a style sheet that will let me put a border around just one
row in a table.
Has anyone here done this before? If so how?

TIA,
Duane

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CSS Question

2003-02-01 Thread Russ
Try applying a style that you define to do that to just the TR tag.

 -Original Message-
 From: Duane Boudreau [mailto:[EMAIL PROTECTED]] 
 Sent: Saturday, February 01, 2003 3:35 PM
 To: CF-Talk
 Subject: CSS Question
 
 
 Hi All,
 
 I'm looking for a style sheet that will let me put a border 
 around just one
 row in a table.
 Has anyone here done this before? If so how?
 
 TIA,
 Duane
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CSS Question

2003-02-01 Thread Gyrus
- Original Message -
From: Duane Boudreau [EMAIL PROTECTED]
 I'm looking for a style sheet that will let me put a border around just
one
 row in a table.
 Has anyone here done this before? If so how?

Try:

tr.border {border: 1px solid Black;}

with this HTML:

tr class=bordertdTable row/td/tr

HTH,

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://norlonto.net
PGP key available

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CSS Question

2003-02-01 Thread Charlie Griefer
- Original Message -
From: Russ [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, February 01, 2003 2:48 PM
Subject: RE: CSS Question


 Try applying a style that you define to do that to just the TR tag.

Actually, i don't believe the tr will accept a border attribute (i've
never gotten it to, anyway).  I usually just put the appropriate borders
around my tds, making sure there is a cellspacing=0 attribute on the
table to make sure there are no breaks in the border.

Eg:

table cellspacing=0 cellpadding=3
tr
td style=border-left:1px #00 solid; border-top:1px #00 solid;
border-bottom:1px #00 solid;
  foo
/td
td style=border-top:1px #00 solid; border-bottom:1px #00
solid;
  foo
/td
td style=border-right:1px #00 solid; border-top:1px #00 solid;
border-bottom:1px #00 solid;
  foo
/td
/tr
/table

hth,
charlie


  -Original Message-
  From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
  Sent: Saturday, February 01, 2003 3:35 PM
  To: CF-Talk
  Subject: CSS Question
 
 
  Hi All,
 
  I'm looking for a style sheet that will let me put a border
  around just one
  row in a table.
  Has anyone here done this before? If so how?
 
  TIA,
  Duane
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CSS Question

2003-02-01 Thread Jason Miller
if you apply a style sheet and redefin the tr tag it will adjust all
tr tags.

you can do a tr style=border: thin #CC
it's the property : decoration color - 
You can also add more attributes by seperating them with a ;

hope this helps
jay miller

Russ wrote:


Try applying a style that you define to do that to just the TR tag.



  

-Original Message-

From: Duane Boudreau [ mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] ] 

Sent: Saturday, February 01, 2003 3:35 PM

To: CF-Talk

Subject: CSS Question





Hi All,



I'm looking for a style sheet that will let me put a border 

around just one

row in a table.

Has anyone here done this before? If so how?



TIA,

Duane








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CSS Question

2003-02-01 Thread Russ
It will accept a border; there tends to be an issue with it working in
NS4, however.

HTH,

Russ

 -Original Message-
 From: Charlie Griefer [mailto:[EMAIL PROTECTED]] 
 Sent: Saturday, February 01, 2003 3:53 PM
 To: CF-Talk
 Subject: Re: CSS Question
 
 
 - Original Message -
 From: Russ [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Saturday, February 01, 2003 2:48 PM
 Subject: RE: CSS Question
 
 
  Try applying a style that you define to do that to just the 
 TR tag.
 
 Actually, i don't believe the tr will accept a border 
 attribute (i've
 never gotten it to, anyway).  I usually just put the 
 appropriate borders
 around my tds, making sure there is a cellspacing=0 
 attribute on the
 table to make sure there are no breaks in the border.
 
 Eg:
 
 table cellspacing=0 cellpadding=3
 tr
 td style=border-left:1px #00 solid; border-top:1px 
 #00 solid;
 border-bottom:1px #00 solid;
   foo
 /td
 td style=border-top:1px #00 solid; border-bottom:1px #00
 solid;
   foo
 /td
 td style=border-right:1px #00 solid; border-top:1px 
 #00 solid;
 border-bottom:1px #00 solid;
   foo
 /td
 /tr
 /table
 
 hth,
 charlie
 
 
   -Original Message-
   From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
   Sent: Saturday, February 01, 2003 3:35 PM
   To: CF-Talk
   Subject: CSS Question
  
  
   Hi All,
  
   I'm looking for a style sheet that will let me put a border
   around just one
   row in a table.
   Has anyone here done this before? If so how?
  
   TIA,
   Duane
  
  
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CSS Question

2003-02-01 Thread Dave Lyons
granted i do things pretty weird but try this:
below is a stylesheet, pretty self explanatory
what I do is make the table then click anywhere inside the table and add the
class.
let me know if this is confusing and I will send u an example

!--- .::. begin stylesheet .::. ---
.main {
 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: x-small;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 color: #00;
}
.borderedROWleft {
 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: x-small;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 color: #00;
 background-color: #CC;
 border-top: 1px solid #66;
 border-right: 1px none #66;
 border-bottom: 1px solid #66;
 border-left: 1px solid #66;
}
.borderedROWmiddle {
 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: x-small;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 color: #00;
 background-color: #CC;
 border-top: 1px solid #66;
 border-right: 1px none #66;
 border-bottom: 1px solid #66;
 border-left: 1px none #66;
}
.borderedROWright {

 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: x-small;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 color: #00;
 background-color: #CC;
 border-top: 1px solid #66;
 border-right: 1px solid #66;
 border-bottom: 1px solid #66;
 border-left: 1px none #66;
}
.rowNOborder {

 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: x-small;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 color: #00;
 background-color: #ebebe2;
 border: 0px none;
}
!--- .::. end stylesheet .::. ---




Dave



- Original Message -
From: Duane Boudreau [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, February 01, 2003 4:34 PM
Subject: CSS Question


 Hi All,

 I'm looking for a style sheet that will let me put a border around just
one
 row in a table.
 Has anyone here done this before? If so how?

 TIA,
 Duane

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CSS Question

2003-02-01 Thread Duane Boudreau
I'm trying to do this via javascript but no go, any suggestions?

tr onMouseOver=this.style.border='1px solid black';
onMouseOut=this.style.border='0px';

Duane

-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED]]
Sent: Saturday, February 01, 2003 8:08 PM
To: CF-Talk
Subject: Re: CSS Question


if you apply a style sheet and redefin the tr tag it will adjust all
tr tags.

you can do a tr style=border: thin #CC
it's the property : decoration color -
You can also add more attributes by seperating them with a ;

hope this helps
jay miller

Russ wrote:


Try applying a style that you define to do that to just the TR tag.





-Original Message-

From: Duane Boudreau [ mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] ]

Sent: Saturday, February 01, 2003 3:35 PM

To: CF-Talk

Subject: CSS Question





Hi All,



I'm looking for a style sheet that will let me put a border

around just one

row in a table.

Has anyone here done this before? If so how?



TIA,

Duane









~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CSS Question

2003-02-01 Thread Dave Lyons
are you trying to make the table row change on mouseover?
I have a great lil trick for that

the top navigation menu on www.dreamlofts-webdesigns.com is done that way

Dave



- Original Message -
From: Duane Boudreau [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, February 01, 2003 5:15 PM
Subject: RE: CSS Question


 I'm trying to do this via javascript but no go, any suggestions?

 tr onMouseOver=this.style.border='1px solid black';
 onMouseOut=this.style.border='0px';

 Duane

 -Original Message-
 From: Jason Miller [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, February 01, 2003 8:08 PM
 To: CF-Talk
 Subject: Re: CSS Question


 if you apply a style sheet and redefin the tr tag it will adjust all
 tr tags.

 you can do a tr style=border: thin #CC
 it's the property : decoration color -
 You can also add more attributes by seperating them with a ;

 hope this helps
 jay miller

 Russ wrote:


 Try applying a style that you define to do that to just the TR tag.





 -Original Message-

 From: Duane Boudreau [ mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] ]

 Sent: Saturday, February 01, 2003 3:35 PM

 To: CF-Talk

 Subject: CSS Question





 Hi All,



 I'm looking for a style sheet that will let me put a border

 around just one

 row in a table.

 Has anyone here done this before? If so how?



 TIA,

 Duane









 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




MPSB03-02 - Using Windows NT Authentication and Windows file permissions

2003-02-01 Thread brook
Hello Weekenders,

I'm sure most of you got the MM Security bulletin the other day 
(http://www.macromedia.com/security). I am trying to figure out what the 
security breach is if the steps outlines in the Security Bulletin are not 
taken. It doesn't describe what level of access an attacker could gain 
through this exploit. And since we use the SES Url's 
(mysite.com/index.cfm/myvar/myvarvalue/), I can not easily implement this 
security fix because checking the check that file exists box in IIS 
causes 404's since, the file name is buried in the query string.

So If any one can fill me in on the severity of this exploit and then I can 
appropriately decide if I need to make some serious changes to multiple 
sites or find an alternative.

Thanks

Brook Davies
maracasmedia


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CF Capability but not CF.

2003-02-01 Thread mark brinkworth
JavaCC started life out as Jack (rhymes with YACC).
Was renamed along the way.

no idea if it was ever called anything else.
 
 Matt Liotta
 President  CEO
 Montara Software, Inc.
 http://www.montarasoftware.com/
 888-408-0900 x901
 
  -Original Message-
  From: webguy [mailto:[EMAIL PROTECTED]]
  Sent: Friday, January 31, 2003 1:28 PM
  To: CF-Talk
  Subject: RE: CF Capability but not CF.
  
   There is also JavaCC, which I have used
 successfully to create a
 CFML
  
  Cool, javaCC was that called Jack at some stage?
  
  WG
  
  
  
  


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: MPSB03-02 - Using Windows NT Authentication and Windows file permissions

2003-02-01 Thread mark brinkworth
My understanding of this was that anybody could run
the CFM template regardless of their NTFS file
permissions, for that template. 

Cheers

 --- [EMAIL PROTECTED] wrote:  Hello Weekenders,
 
 I'm sure most of you got the MM Security bulletin
 the other day 
 (http://www.macromedia.com/security). I am trying to
 figure out what the 
 security breach is if the steps outlines in the
 Security Bulletin are not 
 taken. It doesn't describe what level of access an
 attacker could gain 
 through this exploit. And since we use the SES Url's
 
 (mysite.com/index.cfm/myvar/myvarvalue/), I can not
 easily implement this 
 security fix because checking the check that file
 exists box in IIS 
 causes 404's since, the file name is buried in the
 query string.
 
 So If any one can fill me in on the severity of this
 exploit and then I can 
 appropriately decide if I need to make some serious
 changes to multiple 
 sites or find an alternative.
 
 Thanks
 
 Brook Davies
 maracasmedia


__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: MPSB03-02 - Using Windows NT Authentication and Windows file permissions

2003-02-01 Thread mark brinkworth
Forgot to include another link that may help you

http://www.securitytracker.com/alerts/2003/Jan/1006023.html

Cheers


 --- [EMAIL PROTECTED] wrote:  Hello Weekenders,
 
 I'm sure most of you got the MM Security bulletin
 the other day 
 (http://www.macromedia.com/security). I am trying to
 figure out what the 
 security breach is if the steps outlines in the
 Security Bulletin are not 
 taken. It doesn't describe what level of access an
 attacker could gain 
 through this exploit. And since we use the SES Url's
 
 (mysite.com/index.cfm/myvar/myvarvalue/), I can not
 easily implement this 
 security fix because checking the check that file
 exists box in IIS 
 causes 404's since, the file name is buried in the
 query string.
 
 So If any one can fill me in on the severity of this
 exploit and then I can 
 appropriately decide if I need to make some serious
 changes to multiple 
 sites or find an alternative.
 
 Thanks
 
 Brook Davies
 maracasmedia
 
 


__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: MPSB03-02 - Using Windows NT Authentication and Windows file permissions

2003-02-01 Thread brook
Ok Thanks :) I guess my next question is:

Is there any way to use the check that file exists setting in IIS while 
using SES URL's.

Example: http:www.mysite.com/index.cfm/fuseaction/display/

Brook




At 05:05 AM 2/2/03 +, you wrote:
Forgot to include another link that may help you

http://www.securitytracker.com/alerts/2003/Jan/1006023.html

Cheers


  --- [EMAIL PROTECTED] wrote:  Hello Weekenders,
 
  I'm sure most of you got the MM Security bulletin
  the other day
  (http://www.macromedia.com/security). I am trying to
  figure out what the
  security breach is if the steps outlines in the
  Security Bulletin are not
  taken. It doesn't describe what level of access an
  attacker could gain
  through this exploit. And since we use the SES Url's
 
  (mysite.com/index.cfm/myvar/myvarvalue/), I can not
  easily implement this
  security fix because checking the check that file
  exists box in IIS
  causes 404's since, the file name is buried in the
  query string.
 
  So If any one can fill me in on the severity of this
  exploit and then I can
  appropriately decide if I need to make some serious
  changes to multiple
  sites or find an alternative.
 
  Thanks
 
  Brook Davies
  maracasmedia
 
 
 

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Application.cfm not being included / CFMX

2003-02-01 Thread brook
I have a strange problem. It's actually a bit of a recurring problem across 
a couple of servers.
On our dev system, the application.cfm file is not being run!

This happens only when the site or directory is called without specificity 
the default document.
So if I call www.mysebsite.com/myadmin/, I get an error about the client 
scope not being defined.
  But if I call it like this www.mysebsite.com/myadmin/index.cfm, it works! 
The same happens at the root.
There is an application.cfm in both directories.

Has anyone else experienced this? Also, I've seen this happen on Servers 
where the multihomed (cacheRealPath?) attribute set to true and false.
The server that these symptoms are currently on has that attribute set to 
FALSE.

Brook

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Going OT: CF Capability but not CF.

2003-02-01 Thread Sean A Corfield
On Friday, Jan 31, 2003, at 10:04 US/Pacific, webguy wrote:
 ... but only really for those that want to build hard core compliers 
 (i.e.
 nerds like J.J.  Sean C. ), you can use things like lex and Yacc (Yet

I resemble that remark! :)

 Another Compiler Compiler) to build a compiler. Building a compiler is 
 just
 1 step away from being a computer programmer nirvana.
 Building an OS is nirvana.

Heh... maybe... Anyways, lex is a good tool (although lexers are so 
easy to write) but yacc is fairly restrictive and cannot handle all 
languages (e.g., it is not possible to write a full C++ compiler using 
pure yacc).

Sean A Corfield -- http://www.corfield.org/blog/

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

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: CF: OOP, Custom Tags..

2003-02-01 Thread Sean A Corfield
On Friday, Jan 31, 2003, at 08:59 US/Pacific, Rahmin Pavlovic wrote:
 So my first question is: can I create my own methods in CF?

Yes:

function Capitalize(str) {
return UCase(Left(LCase(str), 1))  Mid(LCase(str), 2, Len(LCase(str)));
}

Works in CF5 upwards.

 If so that'd be hot lunch on a hot plate. In this example, I'd extend 
 my
 string object to include my own Capitalize() method, and all'd be 
 toasty.
 Does any know if there is an OO equivalent in CF?

You cannot extend built-in types in CF (not even in CFMX). CFMX does 
however allow you to define class-like entities (CFCs) with data and 
methods.

Sean A Corfield -- http://www.corfield.org/blog/

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

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4