Re: cfloginuser attribute "roles" question

2003-08-04 Thread Stéphane_Bisson
Sorry, forget about this question.. I think I know why... I will hard code a
difficult role for harker to detect.


- Original Message - 
From: "Stéphane_Bisson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 11:04 PM
Subject: Re: cfloginuser attribute "roles" question


> That's bad also... I cannot put like this...
>
> roles="#request.user_role#">
>
> Any suggestion!
>
> - Original Message - 
> From: "Stéphane_Bisson" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, August 04, 2003 10:53 PM
> Subject: cfloginuser attribute "roles" question
>
>
> > I'm just questionning about the cf tag cfloginuser attribute "roles".
> Roles has a "s" meaning that I can put many roles for a user. I try to put
> myseft this set of roles in the user table...
> >
> > user_tbl.nickname ='stef'
> > user_tbl.role1 = 'user, user2'  2= 'user; user2'   3= 'user
user2'
> >
> > the login.cfc is doing...
> >
> > 
> >   password="#user_tbl.password#"
> >  roles="#user_tbl.role#">
> >
> >
> > and when I try to call the method below...
> >
> > roles="user2"
> >
> > and CF gives me... Current user was not authorized to invoke this method
> >
> > How can I make a user has many roles! and be able to execute the CFC
> methods that belongs to these roles.. I don't want to have to create many
> user ids to go everywhere in our site... Stef has an user... StefAdmin has
> an Administration of our site... etc..
> >
> > Thanks
> >
> > Stephane
> >
> >
> >
> >
> >
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfloginuser attribute "roles" question

2003-08-04 Thread Raymond Camden
You assigned these roles

user
 user2

Notice the space in front of user2? That space counts. You need to set
the roles w/ no white space around them.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Stéphane_Bisson [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 04, 2003 8:54 PM
> To: CF-Talk
> Subject: cfloginuser attribute "roles" question
> 
> 
> I'm just questionning about the cf tag cfloginuser attribute 
> "roles". Roles has a "s" meaning that I can put many roles 
> for a user. I try to put myseft this set of roles in the user table...
> 
> user_tbl.nickname ='stef' 
> user_tbl.role1 = 'user, user2'  2= 'user; user2'   3= 
> 'user user2'  
> 
> the login.cfc is doing...
> 
> 
>   password="#user_tbl.password#" 
>  roles="#user_tbl.role#">
> 
> 
> and when I try to call the method below...
> 
> returnType="query"  roles="user2"
> 
> and CF gives me... Current user was not authorized to invoke 
> this method
> 
> How can I make a user has many roles! and be able to execute 
> the CFC methods that belongs to these roles.. I don't want to 
> have to create many user ids to go everywhere in our site... 
> Stef has an user... StefAdmin has an Administration of our 
> site... etc..
> 
> Thanks
> 
> Stephane
> 
> 
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Another question about cfloginuser attribute "roles".

2003-08-04 Thread Raymond Camden
When you pass 2-N roles to access, or to isUserInRoles(), CF treats it
as an "AND" list - i.e., the user must be in ALL roles. To get around
this, you don't use access=, instead you write your own code:



FYI, I wrote a UDF that will allow you to do:



I'm not 100% sure of the name and I'm too lazy, but it's up at
cflib.org.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Stéphane_Bisson [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 04, 2003 10:38 PM
> To: CF-Talk
> Subject: Another question about cfloginuser attribute "roles". 
> 
> 
> New question about cfloginuser attribute "roles". I try 
> something tonight and it seems that I cannot make it to work. 
> So I will explain... 
> 
> I have a user "members" role and I have a user "guest" role. 
> They both login with their role... I want them both to be 
> able to call my CFC methods which is... 
> 
>   returnType="query" roles="member_role,guest_role"> 
> 
> It does not seems to work and I did not put any space between 
> them! I just hope that two different users like member 
> and guest can be able to 
> execute my methods with their own role! I'm always getting 
> the error that is not authorized... It's only the first CFC 
> role that is valid... So in this case the member can get the 
> GetSlides... but the guest is unauthorized... I'm missing something!
> 
> Thanks 
> 
> Stephane
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Installing MX on WIN2K and Not Getting IIS

2003-08-04 Thread Chris Kief
Not sure if you mentioned this...but the box doesn't have CF 5 on it does
it?



>-Original Message-
>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 6:27 PM
>To: CF-Talk
>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>
>Still not working. Does anyone have any other suggestions?
>
>-Original Message-
>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 6:15 PM
>To: CF-Talk
>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>
>Tried that. Shut down the service and ran the connectors. Still went to
>the 8500 port. Hopefully a reboot will work.
>
>-Original Message-
>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 6:01 PM
>To: CF-Talk
>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>
>Did you try installing it anyways and then running the connectors in the
>C:\CFusionMX\bin\connectors directory?
>That should do the trick.. If not, wait for Dave Watts to reply, he
>always
>gets the IIS/Wwin2K/Cf questions  :-)
>
>Mike
>
>
>-Original Message-
>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 8:53 PM
>To: CF-Talk
>Subject: Installing MX on WIN2K and Not Getting IIS
>
>
>I am trying to install MX on my WIN2K server. During the install it does
>not give me the option of choosing IIS as my web server. I uninstalled
>and reinstalled and followed the instructions in the Knowledge Base that
>told me how to change the jrun file. This still did not work. Can anyone
>help me out with this?
>
>Thanks
>
>
>
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



Macromedia release ColdFusion MX 6.1 (previously RedSky)

2003-08-04 Thread Tilbrook, Peter
http://www.macromedia.com/software/coldfusion/productinfo/upgrade/

FREE to existing MX customers and available for Windows, Linux, AIX,
Solaris, HP Unix, AIX and Mac OS X.


**
The information contained in this e-mail, and any attachments to it, is
intended for the use of the 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.
***

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Installing MX on WIN2K and Not Getting IIS

2003-08-04 Thread Chris Kief
Ahh - so there's the source of the problem. When you first installed CFMX,
CF 5 was tied to IIS and so CFMX wouldn't allow you to also use it with IIS.
A registry key was set indicating this.

So now when you're trying to reinstall it, the installer is finding that
registry key and not allowing you to use IIS. You'll need to remove CF 5 if
you haven't done so already, delete that registry key, and then reinstall
CFMX.

I'll try to find that key for you in just a sec...chris



>-Original Message-
>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 6:43 PM
>To: CF-Talk
>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>
>It did when I did the first install.
>
>-Original Message-
>From: Chris Kief [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 6:39 PM
>To: CF-Talk
>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>
>Not sure if you mentioned this...but the box doesn't have CF 5 on it
>does
>it?
>
>
>
>>-Original Message-
>>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>>Sent: Monday, August 04, 2003 6:27 PM
>>To: CF-Talk
>>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>>
>>Still not working. Does anyone have any other suggestions?
>>
>>-Original Message-
>>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>>Sent: Monday, August 04, 2003 6:15 PM
>>To: CF-Talk
>>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>>
>>Tried that. Shut down the service and ran the connectors. Still went to
>>the 8500 port. Hopefully a reboot will work.
>>
>>-Original Message-
>>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>>Sent: Monday, August 04, 2003 6:01 PM
>>To: CF-Talk
>>Subject: RE: Installing MX on WIN2K and Not Getting IIS
>>
>>Did you try installing it anyways and then running the connectors in
>the
>>C:\CFusionMX\bin\connectors directory?
>>That should do the trick.. If not, wait for Dave Watts to reply, he
>>always
>>gets the IIS/Wwin2K/Cf questions  :-)
>>
>>Mike
>>
>>
>>-Original Message-
>>From: Harold Brauer [mailto:[EMAIL PROTECTED]
>>Sent: Monday, August 04, 2003 8:53 PM
>>To: CF-Talk
>>Subject: Installing MX on WIN2K and Not Getting IIS
>>
>>
>>I am trying to install MX on my WIN2K server. During the install it
>does
>>not give me the option of choosing IIS as my web server. I uninstalled
>>and reinstalled and followed the instructions in the Knowledge Base
>that
>>told me how to change the jrun file. This still did not work. Can
>anyone
>>help me out with this?
>>
>>Thanks
>>
>>
>>
>>
>>
>>
>>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Another question about cfloginuser attribute "roles".

2003-08-04 Thread Stéphane_Bisson
New question about cfloginuser attribute "roles". I try something tonight and it seems 
that I cannot make it to work. So I will explain... 

I have a user "members" role and I have a user "guest" role. They both login with 
their role... I want them both to be able to call my CFC methods which is... 

  

It does not seems to work and I did not put any space between them! I just hope 
that two different users like member and guest can be able to 
execute my methods with their own role! I'm always getting the error that is not 
authorized... It's only the first CFC role that is valid... So in this case
the member can get the GetSlides... but the guest is unauthorized... I'm missing 
something!

Thanks 

Stephane


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



cfloginuser attribute "roles" question

2003-08-04 Thread Stéphane_Bisson
I'm just questionning about the cf tag cfloginuser attribute "roles". Roles has a "s" 
meaning that I can put many roles for a user. I try to put myseft this set of roles in 
the user table...

user_tbl.nickname ='stef' 
user_tbl.role1 = 'user, user2'  2= 'user; user2'   3= 'user user2'  

the login.cfc is doing...


 


and when I try to call the method below...

   http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfloginuser attribute "roles" question

2003-08-04 Thread Stéphane_Bisson
That's bad also... I cannot put like this...

   

Any suggestion!

- Original Message - 
From: "Stéphane_Bisson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 10:53 PM
Subject: cfloginuser attribute "roles" question


> I'm just questionning about the cf tag cfloginuser attribute "roles".
Roles has a "s" meaning that I can put many roles for a user. I try to put
myseft this set of roles in the user table...
>
> user_tbl.nickname ='stef'
> user_tbl.role1 = 'user, user2'  2= 'user; user2'   3= 'user user2'
>
> the login.cfc is doing...
>
> 
>roles="#user_tbl.role#">
>
>
> and when I try to call the method below...
>
>
> and CF gives me... Current user was not authorized to invoke this method
>
> How can I make a user has many roles! and be able to execute the CFC
methods that belongs to these roles.. I don't want to have to create many
user ids to go everywhere in our site... Stef has an user... StefAdmin has
an Administration of our site... etc..
>
> Thanks
>
> Stephane
>
>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: DTD validation

2003-08-04 Thread Paul Hastings
> Please download the demo .zip files, they feature different scenarios and
> commented source code (in english)

nevermind, staring me in face.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-04 Thread Ben Forta
Jason,

The separate you want sounds like you need multiple instances of
ColdFusion on a single box. You can do that.

But setting up different instances necessarily discourages sharing at
some level. Sounds like you want to have your cake and eat it too. :-)

For database queries there is a very clean option, use stored
procedures. I have no problem establishing a system where users cannot
execute any database calls aside from stored procedure invocations. You
can share the stored procedures with any client that can log into the
database, including all CF instances. Of course, based on the login (and
each instance can use a different login) different data may be returned.

That's databases. For other code, I am not sure that there is a good
solution for what you want.

--- Ben



-Original Message-
From: Blum, Jason (SAA) [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 9:57 AM
To: CF-Talk
Subject: RE: An ISP's Dream: Extensions in one sandbox, client code in
another


Jochem and Michael,

Interesting ideas - thanks!

I think I have done a poor job of describing the scenario.  Ben Forta's
"Maybe We Should Try a Separation" (CFDJ Vol 4 Issue 10) really got me
to thinking: there are so many good reasons for code reuse (faster
development time, centralized ("policable") code, easier debugging,
etc.)  But getting developers to tie into existing resources is
hopeless, particularly when your community of developers comes and goes
and is rarely around long enough to really respond to your efforts to
get them to reuse codes and build off each others' functionality.

So forget about my scattered scenario and emphasis on databases: just
consider this question: How could you set up a server architecture
(whether internally via security sandboxes or externally via web service
syndication servers) that would encourage a development culture whose
members were free to develop however whatever they wanted, but faced
strong incentives to first utilize each others' reusable code?

Remember two things:

First, the community we are considering suffers from frequent turn
around.  Some of its members are pretty clever - most just want to get
something up and aren't always that interested in looking under the
hood.

Second, Their needs in functionality are generally pretty uniform.  Sure
they have their own data and different presentation layers.  But they
all have the same basic "poll", "announcements", "staff directory" kinds
of features on their website.

In other words, one good developer could probably do 95% of all the
functionality they need.

So how best to not merely advertise what that developer has done, but go
further and place strong incentives in their development methodology to
consider tying first into that developers' components and other
extensions?

Seems to me the best way would be to put everyone in one sandbox denied
certain tags and ports, etc...  but let them all post, per your
developers' approval, concise reusable code into another sandbox without
restrictions.  

Think of the implications for users both novice and advanced, for the
administrators' responsibility to ensure a secure and available
environment!

-Jason




-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 8:35 AM
To: CF-Talk
Subject: Re: An ISP's Dream: Extensions in one sandbox, client code in
another

Michael T. Tangorre wrote:
> Just plan for it... have two databases running on
> a server so when one is mangled you can switch to the other one and
vice
> versa Now in a real world situation, resources are limited to some

> extent or should be anyway.

We have long since adopted the position that it is easier to just 
buy extra harddisks as to set, maintain, measure and enforce 
quota on disk use, bandwidth use and databases :-)
(If university provides you with a bunch of switch ports and 
power plugs for free, business rules change quite a lot.)

Jochem





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Installing MX on WIN2K and Not Getting IIS

2003-08-04 Thread Michael T. Tangorre
Did you try installing it anyways and then running the connectors in the
C:\CFusionMX\bin\connectors directory?
That should do the trick.. If not, wait for Dave Watts to reply, he always
gets the IIS/Wwin2K/Cf questions  :-)

Mike


-Original Message-
From: Harold Brauer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 8:53 PM
To: CF-Talk
Subject: Installing MX on WIN2K and Not Getting IIS


I am trying to install MX on my WIN2K server. During the install it does
not give me the option of choosing IIS as my web server. I uninstalled
and reinstalled and followed the instructions in the Knowledge Base that
told me how to change the jrun file. This still did not work. Can anyone
help me out with this?
 
Thanks
 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



Installing MX on WIN2K and Not Getting IIS

2003-08-04 Thread Harold Brauer
I am trying to install MX on my WIN2K server. During the install it does
not give me the option of choosing IIS as my web server. I uninstalled
and reinstalled and followed the instructions in the Knowledge Base that
told me how to change the jrun file. This still did not work. Can anyone
help me out with this?
 
Thanks
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: New LiveDocs system!

2003-08-04 Thread Sean A Corfield
On Monday, Aug 4, 2003, at 14:59 US/Pacific, Sean A Corfield wrote:
> [negative margin]
> It works fine on IE (unfortunately, which is probably why it wasn't
> caught until the last minute). Bug #17562.

This should be fixed now. Please let me know if you see any other 
problems.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim/iChat: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.macromedia.com/go/arch_blog

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SOT: Mozilla and DesignMode

2003-08-04 Thread Jochem van Dieten
Scott Brady wrote:
> 
> However, on Mozilla 1.3 (it's only supposed to work on Moz 1.3+), I'm having quite a 
> few difficulties. 
> 
> My problem line right now is in a JS file and looks like this: 
> document.getElementById('testFrame').contentDocument.designMode = "on"; 
> 
> That's giving me the following error: 
> Error: uncaught exception: [Exception... "Component returned failure code: 
> 0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLDocument.designMode]" nsresult: 
> "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: 
> http://www.squidswimteam.org/dev/lib/htmlEdit/richtext.js :: Start :: line 141"  
> data: no] 

No problem here:
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5a) 
Gecko/20030728 Mozilla Firebird/0.6.1

You might want to try a more recent version of either Mozilla or 
Firebird.

Jochem



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: SOT: Mozilla and DesignMode

2003-08-04 Thread jonhall
works for me with v1.5b Gecko/20030712

-- 
mailto:[EMAIL PROTECTED]
Monday, August 4, 2003, 6:23:59 PM, you wrote:

SB> (this is somewhat off-topic, but it is occurring in a CF application, if that 
helps.  I had asked this on another list without getting any replies, which could mean 
no one understands what I'm
SB> asking -- that happens a lot)

SB> I'm trying to implement the Cross-Browser Rich-Text Editor (as available at 
http://www.kevinroth.com/rte/demo.htm -- the creator of it hasn't gotten back to me at 
this point) and have it working
SB> in IE6. 

SB> However, on Mozilla 1.3 (it's only supposed to work on Moz 1.3+), I'm having quite 
a few difficulties. 

SB> My problem line right now is in a JS file and looks like this: 
SB> document.getElementById('testFrame').contentDocument.designMode = "on"; 

SB> That's giving me the following error: 
SB> Error: uncaught exception: [Exception... "Component returned failure code: 
0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLDocument.designMode]" nsresult: 
SB> "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: 
SB> http://www.squidswimteam.org/dev/lib/htmlEdit/richtext.js :: Start :: line 141"  
data: no] 

SB> Before that, I'm able to output the value of the designMode attribute (it's 
"off"), but it appears I can't set it. 

SB> If you'd like to see how I'm implementing it, you can go to: 

SB> 
http://www.squidswimteam.org/dev/index.cfm/fuseaction/members.dsp_announcement_edit.cfm
 

SB> You'll need to login, so I've created a test user: 
SB> user name:  tester 
SB> password: tester 

SB> I'm open to suggestions on what's going on. 

SB> Thanks! 

SB> Scott 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: The Ongoing Saga of the Dead Session Variable - SOLVED

2003-08-04 Thread Richard Crawford
If my brain had been switched on, I would have noticed that while "Enable 
UUID Cookies" was enabled on our development server, the one with the 
problems, it was disabled on our production server, which had no 
problems.  Duh.  I disabled it and had all my users clear their caches and 
cookies.  Now everything's working just fine.

Thanks to all for their suggestions and advice!

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread jonhall
Well mappings are another solution, but I've been thinking a good
idea would be to allow a directory specified in a cfimport
statement to be searched for cfc's as well. cfimport would then have a
little bit more in common with the java import statement, which in
this case might be more intuitive for everyone.

-- 
mailto:[EMAIL PROTECTED]
Monday, August 4, 2003, 6:08:38 PM, you wrote:

DSJA> Sean,

DSJA> Hate to say it, but I *LOVE* the '/' syntax.

DSJA> We regularly have to move directories with code around and even across
DSJA> intranet sites.  With the / notation I always know where the root is so that
DSJA> I can get at our required include directories without having to know how
DSJA> "deep" into the directory structure the current page is.

DSJA> Steve


DSJA> -Original Message-
DSJA> From: Sean A Corfield [mailto:[EMAIL PROTECTED]
DSJA> Sent: Monday, August 04, 2003 5:53 PM
DSJA> To: CF-Talk
DSJA> Subject: Re: cfc path question


DSJA> On Monday, Aug 4, 2003, at 13:50 US/Pacific, Tony Weeg wrote:
>> just making sure slash syntax would be ok 1 year from now
>> since it worked today.

DSJA> I *hate* the '/' syntax and would certainly considering campaigning to 
DSJA> have it removed from CFMX... ;)

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

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


DSJA> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



SOT: Mozilla and DesignMode

2003-08-04 Thread Scott Brady
(this is somewhat off-topic, but it is occurring in a CF application, if that helps.  
I had asked this on another list without getting any replies, which could mean no one 
understands what I'm asking -- that happens a lot)

I'm trying to implement the Cross-Browser Rich-Text Editor (as available at 
http://www.kevinroth.com/rte/demo.htm -- the creator of it hasn't gotten back to me at 
this point) and have it working in IE6. 

However, on Mozilla 1.3 (it's only supposed to work on Moz 1.3+), I'm having quite a 
few difficulties. 

My problem line right now is in a JS file and looks like this: 
document.getElementById('testFrame').contentDocument.designMode = "on"; 

That's giving me the following error: 
Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 
(NS_ERROR_FAILURE) [nsIDOMNSHTMLDocument.designMode]" nsresult: 
"0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: 
http://www.squidswimteam.org/dev/lib/htmlEdit/richtext.js :: Start :: line 141"  data: 
no] 

Before that, I'm able to output the value of the designMode attribute (it's "off"), 
but it appears I can't set it. 

If you'd like to see how I'm implementing it, you can go to: 

http://www.squidswimteam.org/dev/index.cfm/fuseaction/members.dsp_announcement_edit.cfm
 

You'll need to login, so I've created a test user: 
user name:  tester 
password: tester 

I'm open to suggestions on what's going on. 

Thanks! 

Scott 


Scott Brady
http://www.scottbrady.net/ 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread DURETTE, STEVEN J (AIT)
Sean,

Hate to say it, but I *LOVE* the '/' syntax.

We regularly have to move directories with code around and even across
intranet sites.  With the / notation I always know where the root is so that
I can get at our required include directories without having to know how
"deep" into the directory structure the current page is.

Steve


-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 5:53 PM
To: CF-Talk
Subject: Re: cfc path question


On Monday, Aug 4, 2003, at 13:50 US/Pacific, Tony Weeg wrote:
> just making sure slash syntax would be ok 1 year from now
> since it worked today.

I *hate* the '/' syntax and would certainly considering campaigning to 
have it removed from CFMX... ;)

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=subscribe&forumid=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: Slightly OT: Experiences with Contribute?

2003-08-04 Thread Dave Watts
> Have any of you out there had a chance to use Contribute in a 
> real world situation?  I am curious to get some feedback on 
> Contribute, and how it compares to a CMS in terms of 
> administration requirements and problems users have using 
> Contribute versus a CMS.  I don't need details on how 
> Contribute works versus a CMS.  I am looking for some 
> feedback on maintenance and tech support of Contribute users 
> and setup versus what we see now using our CMS, which is a 
> bad system, and in need of an upgrade/replacement.

I like Contribute quite a bit, but it's no replacement for a typical CMS -
what you end up with are a bunch of static HTML files, there's no built-in
search management across those files, no workflow, no permissions structure,
etc. If your site is small enough for that to work, then you might like it a
lot, though.

In general, your users will likely have fewer problems, since the Contribute
interface is so good and easy. The interface itself is really very slick.

> Any Contribute horror stories?

I wouldn't go so far as that, but I do seem to recall seeing someone
encounter a problem with Dreamweaver which required them to redefine the
site, which in turn required them to send new keys to content contributors.
I don't know enough about this to know whether it could have been avoided -
I suspect that it could've.

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=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: New LiveDocs system!

2003-08-04 Thread Sean A Corfield
On Sunday, Aug 3, 2003, at 22:13 US/Pacific, Stephane Bisson wrote:
> Sean, I really like the LiveDocs but I just think it's missing  
> something important for ColdFusion MX... CFCs.. how come there is  
> nothing talking about that!

http://livedocs.macromedia.com/coldfusion/6/ 
Developing_ColdFusion_MX_Applications_with_CFML/buildingComponents.htm

> also I'm questionning about Comments... should I comment my problem  
> that I encouter when I install a Sandbox...  is the LiveDocs team will  
> look at this!

The comments are intended to provide feedback on the documentation, not  
to ask for support on the product. If you feel the documentation is  
incomplete or misleading then feel free to add a comment.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim/iChat: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.macromedia.com/go/arch_blog

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: New LiveDocs system!

2003-08-04 Thread Sean A Corfield
On Monday, Aug 4, 2003, at 08:00 US/Pacific, jon hall wrote:
> The negative left margins are way way out of kilter with reality for
> h1 and h2 and cause the contents of these tags to be rendered half off
> the screen.

Yes, that's a known issue and we're working on it.

It works fine on IE (unfortunately, which is probably why it wasn't 
caught until the last minute). Bug #17562.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim/iChat: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.macromedia.com/go/arch_blog

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Sean A Corfield
On Monday, Aug 4, 2003, at 13:50 US/Pacific, Tony Weeg wrote:
> just making sure slash syntax would be ok 1 year from now
> since it worked today.

I *hate* the '/' syntax and would certainly considering campaigning to 
have it removed from CFMX... ;)

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=subscribe&forumid=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: Slightly OT: Experiences with Contribute?

2003-08-04 Thread Matt Liotta
 From my experience users are much more happy with Contribute than the  
interfaces provided by CMSs. However, for many organizations Contribute  
simply doesn't support the dynamic nature of their web sites or  
applications. I know Contribute put us on notice of how much better our  
interface needed to be, which is why we began a project to rewrite our  
interface from scratch. In the mean time though, we wrote a connector  
that allows users to make use of Contribute as a front-end to our CMS.  
It doesn't support all of our functionality because Contribute just  
doesn't do that much, but the combination of Contribute and our  
interface (for the more advanced/technical users) is a good combination  
for some.

-Matt

On Monday, August 4, 2003, at 05:31 PM, BRIAN MELOCHE wrote:

> This is along the same lines as my Content Management Systems thread...
>
> Have any of you out there had a chance to use Contribute in a real  
> world situation?  I am curious to get some feedback on Contribute, and  
> how it compares to a CMS in terms of administration requirements and  
> problems users have using Contribute versus a CMS.  I don't need  
> details on how Contribute works versus a CMS.  I am looking for some  
> feedback on maintenance and tech support of Contribute users and setup  
> versus what we see now using our CMS, which is a bad system, and in  
> need of an upgrade/replacement.
>
> Has anyone scrapped a CMS for Contribute?  How did it go?
>
> Any Contribute horror stories?
>
> We are considering using Contribute instead of upgrading the CMS or  
> replacing it with a new one.  We think that users might find it easier  
> to update content using Contribute versus doing it in an  
> upgraded/better CMS.
>
> Thanks in advance.
>
> Sincerely,
>
> Brian Meloche,
> 4th Floor, ITO - 414
> CSS
> (304) 759-0585 x448
> Macromedia Certified Advanced ColdFusion 5.0 Developer
> 130 pounds lost and counting!
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



Slightly OT: Experiences with Contribute?

2003-08-04 Thread BRIAN MELOCHE
This is along the same lines as my Content Management Systems thread...

Have any of you out there had a chance to use Contribute in a real world situation?  I 
am curious to get some feedback on Contribute, and how it compares to a CMS in terms 
of administration requirements and problems users have using Contribute versus a CMS.  
I don't need details on how Contribute works versus a CMS.  I am looking for some 
feedback on maintenance and tech support of Contribute users and setup versus what we 
see now using our CMS, which is a bad system, and in need of an upgrade/replacement.

Has anyone scrapped a CMS for Contribute?  How did it go?

Any Contribute horror stories?

We are considering using Contribute instead of upgrading the CMS or replacing it with 
a new one.  We think that users might find it easier to update content using 
Contribute versus doing it in an upgraded/better CMS.

Thanks in advance.

Sincerely,

Brian Meloche,
4th Floor, ITO - 414
CSS
(304) 759-0585 x448
Macromedia Certified Advanced ColdFusion 5.0 Developer
130 pounds lost and counting!

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: ezedit

2003-08-04 Thread Bryan F. Hogan
Yes, because most of the really feature rich editors need a MS Office Com
object. I think it's actually Word's Com.

Some also rely on the IE RichText (I think it's called that) object built
into the browser. These don't popup the MS Office install prompt. It's
included with IE.

-Original Message-
From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 4:39 PM
To: CF-Talk
Subject: RE: ezedit


When I tried to do the demo, MS office installation started up like it
needed to install some components for the demo. Canceling the installation,
the demo still worked OK. I have noticed the same issue with Siteobjects and
one other editor. Anyone know the technical reason this happens?

Dan

-Original Message-
From: Erik Yowell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 3:34 PM
To: CF-Talk
Subject: RE: ezedit


Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 10:29 AM
> To: CF-Talk
> Subject: RE: ezedit
>
> That is cool, didn't know that. I just may change my mind ;)
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 1:07 PM
> To: CF-Talk
> Subject: RE: ezedit
>
>
> we use activeedit from http://www.cfdev.com. It rocks.  Looks like
they
> have
> activespell extended to Flash!  kewl
>
> Doug
>
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: Potential new Cold Fusion hosting center

2003-08-04 Thread Jeff Beer
Check out CrystalTech's CF hosting offerings.  Aside from a few CF
programming and best practice "tips" they've posted, their network and
systems run really well and the prices are great.  CrystalTech would be
a great benchmark for anyone doing a CF hosting startup.

-Original Message-
From: Judith [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 4:58 PM
To: CF-Talk
Subject: Potential new Cold Fusion hosting center


The Kotter Group is considering adding Cold Fusion Hosting to its
network operation center. If we did this we would add experienced Cold
Fusion developers and database administrators to our staff.  However,
before we invest in the staff and upgrades we are trying to judge the
interest in top shelf Cold Fusion specific hosting.  Pricing would start
around $49/month and go up depending on the services offered.  Would you
be interested in something like this and what would you like to see or
not see in a Cold Fusion host?

Please take our poll at http://kotter.net/?page=Polls



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Dan O'Keefe
Very cool. I just popped it into an app where I had the soEditor. Fixed a
couple of issues for me that I had with soEditor.

Dan

-Original Message-
From: Erik Yowell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 3:34 PM
To: CF-Talk
Subject: RE: ezedit


Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 10:29 AM
> To: CF-Talk
> Subject: RE: ezedit
>
> That is cool, didn't know that. I just may change my mind ;)
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 1:07 PM
> To: CF-Talk
> Subject: RE: ezedit
>
>
> we use activeedit from http://www.cfdev.com. It rocks.  Looks like
they
> have
> activespell extended to Flash!  kewl
>
> Doug
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-04 Thread Brian Meloche
Jason:  This is an increasingly hypothetical scenario.

I agree with Jochem's original statement that he wouldn't want to deal with an ISP 
that has those kinds of restrictions.  I know:  I have one right now, and am about to 
switch to one that doesn't have these restrictions.

I like the threaded model of lessening restrictions based on the sophistication of the 
coders.  The best idea would be to use a CMS that could do simple queries and not 
require any coding knowledge.  You could have a tiered development system that would 
allow different complexities according to skill, but this might be just as difficult 
to manage.

That said, I strongly believe in "learning by doing".  You don't learn until you do 
it.  If you don't give them a chance to do it, they will never learn.
  
If students don't know SQL, then they probably shouldn't be coding.  That's taught 
right away in the Fast Track course, and in practically any CF book you could find.  
Knowing SQL is the most basic building block of any web development, regardless of 
language, and if you can't do basic SQL, you're going to have a hard time developing 
any web applications.

I agree that these college websites would all have different needs, and it's going to 
be difficult restricting them with custom tags.  It seems to me that you would have 
more trouble with support dealing with the use of those custom tags than having them 
doing it in a more unrestricted fashion.

Besides, if they don't use the proper CFQUERY statements, how the heck are they ever 
going to learn even BASIC best practices?

>Blum, Jason (SAA) wrote:
>> 
>> I think I have done a poor job of describing the scenario.  Ben Forta's
>> "Maybe We Should Try a Separation" (CFDJ Vol 4 Issue 10) really got me
>> to thinking: there are so many good reasons for code reuse (faster
>> development time, centralized ("policable") code, easier debugging,
>> etc.)  But getting developers to tie into existing resources is
>> hopeless, particularly when your community of developers comes and goes
>> and is rarely around long enough to really respond to your efforts to
>> get them to reuse codes and build off each others' functionality.
>
>If they don't want to tie into existing resources and you don't 
>have the authority to order them to do it, it is hopeless. And 
>even if you have the authority but they don't want it, it is 
>probably just as hopeless.
>
>But from your scenario I get the impression you are not talking 
>about just an ISP. You are talking about a closely connected 
>community that already has ties with eachother. So maybe you 
>should explain a bit more about that community. And what do the 
>developers themselves think about it?
>
>Jochem
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



Potential new Cold Fusion hosting center

2003-08-04 Thread Judith
The Kotter Group is considering adding Cold Fusion Hosting to its network
operation center. If we did this we would add experienced Cold Fusion
developers and database administrators to our staff.  However, before we
invest in the staff and upgrades we are trying to judge the interest in top
shelf Cold Fusion specific hosting.  Pricing would start around $49/month
and go up depending on the services offered.  Would you be interested in
something like this and what would you like to see or not see in a Cold
Fusion host?

Please take our poll at http://kotter.net/?page=Polls


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Tony Weeg
just making sure slash syntax would be ok 1 year from now
since it worked today.
that's all, basically this is now much ado about nothing :) so thanks,
and thanks...and it works...so cool!

later.

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 4:34 PM
To: CF-Talk
Subject: RE: cfc path question


Not sure what you mean by, does my way make sense. Slash synax does
work, unless you do ../. I tend to always use dot notation.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 2:27 PM
> To: CF-Talk
> Subject: RE: cfc path question
> 
> 
> so then, does my way make sense?
> 
> here is what works...
> 
> 
> 
> and that is because, the page that is calling this, is in the
> main web root, and cfc is a dir under the main root
> 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Dan O'Keefe
When I tried to do the demo, MS office installation started up like it
needed to install some components for the demo. Canceling the installation,
the demo still worked OK. I have noticed the same issue with Siteobjects and
one other editor. Anyone know the technical reason this happens?

Dan

-Original Message-
From: Erik Yowell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 3:34 PM
To: CF-Talk
Subject: RE: ezedit


Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 10:29 AM
> To: CF-Talk
> Subject: RE: ezedit
>
> That is cool, didn't know that. I just may change my mind ;)
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 1:07 PM
> To: CF-Talk
> Subject: RE: ezedit
>
>
> we use activeedit from http://www.cfdev.com. It rocks.  Looks like
they
> have
> activespell extended to Flash!  kewl
>
> Doug
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: cfc path question

2003-08-04 Thread Todd
 should work as well 
if it's under web root and 'cfc' is mapped (or '/' is defined).  However, I 
think the general opinion is that '/' shouldn't be used in CFCs, but I 
guess that's a style opinion.

~Todd


At 04:27 PM 8/4/2003, you wrote:
>so then, does my way make sense?
>
>here is what works...
>
>
>
>and that is because, the page that is calling this, is in the main
>web root, and cfc is a dir under the main root
>
>tony weeg
>uncertified advanced cold fusion developer
>tony at navtrak dot net
>www.navtrak.net
>office 410.548.2337
>fax 410.860.2337
>
>
>-Original Message-
>From: Raymond Camden [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 4:08 PM
>To: CF-Talk
>Subject: RE: cfc path question
>
>
>For cases where you have 99% of your CFCs under a non-web-accessible
>root and need one or two methods exposed, consider using a proxy cfc - a
>cfc whose sole purpose is to route calls to the CFCs not under web
>roots. I _belive_ Sean Corfield has an article on this method on
>macromedia.com.
>
>
>===
>Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
>(www.mindseye.com)
>Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)
>
>Email: [EMAIL PROTECTED]
>Blog : www.camdenfamily.com/morpheus/blog
>Yahoo IM : morpheus
>
>"My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Monday, August 04, 2003 2:02 PM
> > To: CF-Talk
> > Subject: RE: cfc path question
> >
> >
> > they can also be stored under cfusionx/customtags.  This
> > makes them global to the server and not in your web root.
> > IIRC , these can't be called as webservices though.  Is this
> > the case?  I ran into this when playing with Flash and remoting stuff.
> >
> > Doug
> >
> > >-Original Message-
> > >From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > >Sent: Monday, August 04, 2003 3:33 PM
> > >To: CF-Talk
> > >Subject: RE: cfc path question
> > >
> > >
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Raymond Camden
Not sure what you mean by, does my way make sense. Slash synax does
work, unless you do ../. I tend to always use dot notation.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 04, 2003 2:27 PM
> To: CF-Talk
> Subject: RE: cfc path question
> 
> 
> so then, does my way make sense? 
> 
> here is what works...
> 
> 
> 
> and that is because, the page that is calling this, is in the 
> main web root, and cfc is a dir under the main root
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Tony Weeg
so then, does my way make sense? 

here is what works...



and that is because, the page that is calling this, is in the main
web root, and cfc is a dir under the main root

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 4:08 PM
To: CF-Talk
Subject: RE: cfc path question


For cases where you have 99% of your CFCs under a non-web-accessible
root and need one or two methods exposed, consider using a proxy cfc - a
cfc whose sole purpose is to route calls to the CFCs not under web
roots. I _belive_ Sean Corfield has an article on this method on
macromedia.com.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 2:02 PM
> To: CF-Talk
> Subject: RE: cfc path question
> 
> 
> they can also be stored under cfusionx/customtags.  This
> makes them global to the server and not in your web root.  
> IIRC , these can't be called as webservices though.  Is this 
> the case?  I ran into this when playing with Flash and remoting stuff.
> 
> Doug
> 
> >-Original Message-
> >From: Raymond Camden [mailto:[EMAIL PROTECTED]
> >Sent: Monday, August 04, 2003 3:33 PM
> >To: CF-Talk
> >Subject: RE: cfc path question
> >
> >


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Looking for new mail server

2003-08-04 Thread Scott Weikert
At 03:59 PM 8/4/2003 -0400, you wrote:
>We use Courier here, and it fits all your spec's.  Don't know if you were
>looking for a simple, turn-key solution or what, though.  We've been very
>pleased with its performance, and have integrated SpamAssassin, etc., with
>it.

We'll look into it - thanks much for the info and link Josh!
--Scott 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: Looking for new mail server

2003-08-04 Thread Todd
I use qmail, don't know about db interaction though.

At 03:59 PM 8/4/2003, you wrote:
>We use Courier here, and it fits all your spec's.  Don't know if you were
>looking for a simple, turn-key solution or what, though.  We've been very
>pleased with its performance, and have integrated SpamAssassin, etc., with
>it.
>
>http://www.courier-mta.org
>
>Josh

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Dan O'Keefe
What a name. I can understand the guy wanting to incorporate his initials,
but fckeditor??

-Original Message-
From: Erik Yowell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 3:34 PM
To: CF-Talk
Subject: RE: ezedit


Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 10:29 AM
> To: CF-Talk
> Subject: RE: ezedit
>
> That is cool, didn't know that. I just may change my mind ;)
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 1:07 PM
> To: CF-Talk
> Subject: RE: ezedit
>
>
> we use activeedit from http://www.cfdev.com. It rocks.  Looks like
they
> have
> activespell extended to Flash!  kewl
>
> Doug
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SOT: Looking for new mail server

2003-08-04 Thread Andrew Golden
At 01:49 PM 8/4/2003 -0600, you wrote:
>Hey guys,
>
>We're shopping around for a new mail server to use with an ongoing project.
>
>The top 3 things we're looking for in a mail server...
>
>1. Runs on Linux - preferably open source
>2. User accounts managed through a database
>3. messages for a user are stored as 1 message per file

Postfix kicks a$$! It is easy to setup, fast as hell, more secure then most 
and has lots of ways it can be setup. My server is setup with MySQL as a 
backend for (almost) all configuration files, TLS, SASL, SpamAssassin, 
ClamAV virus scanner. It also writes messages to Maildirs or flat files. It 
is up to you and can be set on a per user basis. Pretty slick. Check out 
www.postfix.org for more info and if you have any questions let me know!

Andrew Golden


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: cfc path question

2003-08-04 Thread Raymond Camden
For cases where you have 99% of your CFCs under a non-web-accessible
root and need one or two methods exposed, consider using a proxy cfc - a
cfc whose sole purpose is to route calls to the CFCs not under web
roots. I _belive_ Sean Corfield has an article on this method on
macromedia.com.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 04, 2003 2:02 PM
> To: CF-Talk
> Subject: RE: cfc path question
> 
> 
> they can also be stored under cfusionx/customtags.  This 
> makes them global to the server and not in your web root.  
> IIRC , these can't be called as webservices though.  Is this 
> the case?  I ran into this when playing with Flash and remoting stuff.
> 
> Doug
> 
> >-Original Message-
> >From: Raymond Camden [mailto:[EMAIL PROTECTED]
> >Sent: Monday, August 04, 2003 3:33 PM
> >To: CF-Talk
> >Subject: RE: cfc path question
> >
> >

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: cfc path question

2003-08-04 Thread Douglas.Knudsen
they can also be stored under cfusionx/customtags.  This makes them global to the 
server and not in your web root.  IIRC , these can't be called as webservices though.  
Is this the case?  I ran into this when playing with Flash and remoting stuff.

Doug

>-Original Message-
>From: Raymond Camden [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 3:33 PM
>To: CF-Talk
>Subject: RE: cfc path question
>
>
>Simply use a mapping. A typical web app folder could look like so
>
>root
>root/www
>root/includes
>root/tags
>root/cfcs
>
>If "foobar" was mapped to root, your cfcs could then be called as
>foobar.cfcs.nameofcfc.
>
>===
>=
>===
>Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
>(www.mindseye.com)
>Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)
>
>Email: [EMAIL PROTECTED]
>Blog : www.camdenfamily.com/morpheus/blog
>Yahoo IM : morpheus
>
>"My ally is the Force, and a powerful ally it is." - Yoda 
>
>> -Original Message-
>> From: Tony Weeg [mailto:[EMAIL PROTECTED] 
>> Sent: Monday, August 04, 2003 1:26 PM
>> To: CF-Talk
>> Subject: cfc path question
>> 
>> 
>>  hi there.
>> 
>> If I make a cfc, and call it from the same dir that my 
>> calling page resides, I don't have to worry about "path" at 
>> all.  what do I do, if I want to create a "cfc" directory 
>> where all my cfc's reside, and call them from all over my webroot?
>> 
>> thanks!
>> 
>> tony weeg
>> uncertified advanced cold fusion developer
>> tony at navtrak dot net
>> www.navtrak.net
>> office 410.548.2337
>> fax 410.860.2337
>> 
>> 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Looking for new mail server

2003-08-04 Thread Josh Remus
We use Courier here, and it fits all your spec's.  Don't know if you were
looking for a simple, turn-key solution or what, though.  We've been very
pleased with its performance, and have integrated SpamAssassin, etc., with
it.

http://www.courier-mta.org

Josh

> -Original Message-
> From: Scott Weikert [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 3:50 PM
> To: CF-Talk
> Subject: SOT: Looking for new mail server
>
>
> Hey guys,
>
> We're shopping around for a new mail server to use with an
> ongoing project.
>
> The top 3 things we're looking for in a mail server...
>
> 1. Runs on Linux - preferably open source
> 2. User accounts managed through a database
> 3. messages for a user are stored as 1 message per file
>
> Anyone out there have any info on a mail server that might do the trick?
>
> Thanks in advance,
> --Scott
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Bryan F. Hogan
Erik you just made my day. Thanks for the link! :)

-Original Message-
From: Erik Yowell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 3:34 PM
To: CF-Talk
Subject: RE: ezedit


Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Raymond Camden
Simply use a mapping. A typical web app folder could look like so

root
root/www
root/includes
root/tags
root/cfcs

If "foobar" was mapped to root, your cfcs could then be called as
foobar.cfcs.nameofcfc.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 04, 2003 1:26 PM
> To: CF-Talk
> Subject: cfc path question
> 
> 
>  hi there.
> 
> If I make a cfc, and call it from the same dir that my 
> calling page resides, I don't have to worry about "path" at 
> all.  what do I do, if I want to create a "cfc" directory 
> where all my cfc's reside, and call them from all over my webroot?
> 
> thanks!
> 
> tony weeg
> uncertified advanced cold fusion developer
> tony at navtrak dot net
> www.navtrak.net
> office 410.548.2337
> fax 410.860.2337
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: cfc path question

2003-08-04 Thread Tony Weeg
scratch that...i got it! :)


---^^^  that did
it


tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 3:26 PM
To: CF-Talk
Subject: cfc path question


 hi there.

If I make a cfc, and call it from the same dir that my calling page
resides, I don't have to worry about "path" at all.  what do I do, if I
want to create a "cfc" directory where all my cfc's reside, and call
them from all over my webroot?

thanks!

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: cfc path question

2003-08-04 Thread Dave Carabetta
>If I make a cfc, and call it from the same dir that my calling page
>resides, I don't have
>to worry about "path" at all.  what do I do, if I want to create a "cfc"
>directory where
>all my cfc's reside, and call them from all over my webroot?
>

Use dot-notation from the webroot:


  foo = createObject("component", "path.to.my.cfcs.cfcName");


Regards,
Dave.

_
Add photos to your e-mail with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=features/featuredemail

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: What the heck is wrong with this Query?

2003-08-04 Thread Les Mizzell
::: 

:: De-dupe the list then count it


How you you do that, exactly?


I need to be able to use #InsertNameOfCountryHere_Count# anywhere on the
page as needed - for each of some 30 different countries

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



SOT: Looking for new mail server

2003-08-04 Thread Scott Weikert
Hey guys,

We're shopping around for a new mail server to use with an ongoing project.

The top 3 things we're looking for in a mail server...

1. Runs on Linux - preferably open source
2. User accounts managed through a database
3. messages for a user are stored as 1 message per file

Anyone out there have any info on a mail server that might do the trick?

Thanks in advance,
--Scott  
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: ezedit

2003-08-04 Thread Erik Yowell
Found this the other day:

http://www.fredck.com/fckeditor/

Open-Source, XHTML and all...

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 10:29 AM
> To: CF-Talk
> Subject: RE: ezedit
> 
> That is cool, didn't know that. I just may change my mind ;)
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 1:07 PM
> To: CF-Talk
> Subject: RE: ezedit
> 
> 
> we use activeedit from http://www.cfdev.com. It rocks.  Looks like
they
> have
> activespell extended to Flash!  kewl
> 
> Doug
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



cfc path question

2003-08-04 Thread Tony Weeg
 hi there.

If I make a cfc, and call it from the same dir that my calling page
resides, I don't have
to worry about "path" at all.  what do I do, if I want to create a "cfc"
directory where
all my cfc's reside, and call them from all over my webroot?

thanks!

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: OT: Importing DBase5 using DTS truncates column

2003-08-04 Thread s. isaac dealey
Just to clarify: I'm not necessarily asking for an answer, 
but I obviously don't seem to have any idea where to start, so 
a nudge in the right direction -- web-site, keywords, etc. 
would be greatly appreciated. :) 

Isaac 

Original Message ---
I realize this is off-topic, but I've been searching for a 
while to try and find some information and ... likely I don't
know where to search or what words to use, but I thought 
someone here might have some idea. 

I'm importing data from a DBase5 formatted .dbf file into a 
table in SQL Server 2000 using DTS. It all seems to work fine 
except that I noticed one column in particular is supposed to 
be a varchar(35) column is only varchar(10) even though the 
data going into the dbf was longer... As I understand it test 
data going in was in the form "[EMAIL PROTECTED]" and 
coming out is in the form "[EMAIL PROTECTED]" ... I tried to examine 
the dbf file using notepad (I never saved it in notepad, so I 
don't think it should have changed the file structure) and 
don't see either of those forms... Instead what I see is the 
form "[EMAIL PROTECTED]". 

So I'm really confused. I'm not sure if the issue is in my DTS 
package or if it's in the population of the dbf (which I'm told 
was converted from an excel spreadsheet, although I don't know 
anything about how that was done). Man I hate working like this.

Thanks in advance, 

Isaac


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: OT: CF Studio regex

2003-08-04 Thread s. isaac dealey
give this a shot: 

[[:space:[EMAIL PROTECTED]@[EMAIL PROTECTED]@[^[:space:]]*($|[[:space:]])

hth

Isaac 

Original Message ---
I have a long file of email addresses, and somewhere in there is a line
that's not terminated with a CRLF correctly. The file is simply one
column of addresses.  

Can anyone show me how to construct a regex (for CFStudio 5.0's extended
search) to either a) check for a line longer than xx characters, or, b)
check for a line that contains '@' more than once?


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: DTD validation

2003-08-04 Thread Massimo Foti
"Paul Hastings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> > for validating XML docs against a DTD:
> >
> > http://www.cfmentor.com/code/index.cfm?action=script&id=130
>
> cool. that looks like it might do the trick, many thanks. i will of course
> bother you later w/dumb questions ;-)

Don't worry, I build multi-language websites, in the past years I learned a
lot from you; so you have a huge amount of good karma to spend bothering me
with dump questions :-)

Please note that I wrote two separated UDFs in order to validate files or
strings:

http://www.cfmentor.com/code/index.cfm?action=script&id=130

http://www.cfmentor.com/code/index.cfm?action=script&id=129

The difference is that by reading from the file system the parser
automatically expand external entities references or relative links to DTDs.
That's why the UDF for string validation allows you to pass an optional base
url.

Please download the demo .zip files, they feature different scenarios and
commented source code (in english)

PS In the end I should consolidate everything into a CFC, I am just waiting
for RedSky for fixing a few issues related to Java and the DOM. In the
meantime I am submitting the whole arsenal of UDFs to cflib


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer
http://www.massimocorner.com/




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



OT: Importing DBase5 using DTS truncates column

2003-08-04 Thread s. isaac dealey
I realize this is off-topic, but I've been searching for a 
while to try and find some information and ... likely I don't
know where to search or what words to use, but I thought 
someone here might have some idea. 

I'm importing data from a DBase5 formatted .dbf file into a 
table in SQL Server 2000 using DTS. It all seems to work fine 
except that I noticed one column in particular is supposed to 
be a varchar(35) column is only varchar(10) even though the 
data going into the dbf was longer... As I understand it test 
data going in was in the form "[EMAIL PROTECTED]" and 
coming out is in the form "[EMAIL PROTECTED]" ... I tried to examine 
the dbf file using notepad (I never saved it in notepad, so I 
don't think it should have changed the file structure) and 
don't see either of those forms... Instead what I see is the 
form "[EMAIL PROTECTED]". 

So I'm really confused. I'm not sure if the issue is in my DTS 
package or if it's in the population of the dbf (which I'm told 
was converted from an excel spreadsheet, although I don't know 
anything about how that was done). Man I hate working like this.

Thanks in advance, 

Isaac

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



OT: CF Studio regex

2003-08-04 Thread Jeff Beer
I have a long file of email addresses, and somewhere in there is a line
that's not terminated with a CRLF correctly. The file is simply one
column of addresses.  

Can anyone show me how to construct a regex (for CFStudio 5.0's extended
search) to either a) check for a line longer than xx characters, or, b)
check for a line that contains '@' more than once?

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: OT - SQL Firehose mode??

2003-08-04 Thread Robert Orlini
Got it...Thanks

-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 2:38 PM
To: CF-Talk
Subject: RE: OT - SQL Firehose mode??


If you open the table returning a large number of records, the SQL server
goes into "firehose" mode, which basically means that it's dumping a
godawful amount of data all at once.  You have to wait until it is finished
before you can do anything to the table.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Robert Orlini [mailto:[EMAIL PROTECTED]
: Sent: Monday, August 04, 2003 1:42 PM
: To: CF-Talk
: Subject: OT - SQL Firehose mode??
:
:
: Why do I get this strange error when I try to add text to a
: column in SQL while in open table mode?
:
: "Transaction cannot start while in firehose mode"
:
: I'm adding text to a nvarchar column with 255 chars.
:
: Thanks.
:
: Robert O.
:
: 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: OT - SQL Firehose mode??

2003-08-04 Thread Ben Doom
If you open the table returning a large number of records, the SQL server
goes into "firehose" mode, which basically means that it's dumping a
godawful amount of data all at once.  You have to wait until it is finished
before you can do anything to the table.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Robert Orlini [mailto:[EMAIL PROTECTED]
: Sent: Monday, August 04, 2003 1:42 PM
: To: CF-Talk
: Subject: OT - SQL Firehose mode??
:
:
: Why do I get this strange error when I try to add text to a
: column in SQL while in open table mode?
:
: "Transaction cannot start while in firehose mode"
:
: I'm adding text to a nvarchar column with 255 chars.
:
: Thanks.
:
: Robert O.
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Erratic CF/IIS issues

2003-08-04 Thread Dave Watts
> I am experiencing the strangest problem I have ever seen with 
> hosting CF apps. on an IIS box. Specifically, I have several 
> virtual websites configured in IIS (not virtual directories). 
> The erratic issue is occasionally one of the virtual websites 
> will be displayed on top of the virtual website a user makes 
> a request for. Specifically, a user wants xyz.com but abc.com 
> is displayed on top of xyz.com. Nothing displays in the site 
> abc.com except for broken links since the images do not exist
> in xyz.com. This is very odd and extremely annoying.
> 
> I tried the MS knowledge base, but those efforts were fruitless 
> (at least for me). I tried deleting both virtual websites, 
> renaming their source directories, kicked the box and then 
> re-created the virtual websites using new names. No luck, 
> still happens. I cannot find anything in the log files and 
> it does not occur at any regular frequency. It may go several 
> weeks working properly and then, bam site not available. The
> only way I can get the sites to serve up properly after this 
> has happened is to kick the WWW publishing service and CF MX. 
> Server specifics:
> 
> -W2K Server, SP3
> -CFMX, updater 3
> 
> Any ideas and more importantly any way to correct this problem?

This sounds like you haven't edited jrun.xml to change the cacheRealPath
setting, as described in the release notes.

http://www.macromedia.com/support/coldfusion/ts/documents/tn18258.htm

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=subscribe&forumid=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: Erratic CF/IIS issues

2003-08-04 Thread Stephenie Hamilton
Ensure you have done this:

http://www.macromedia.com/support/coldfusion/ts/documents/tn18258.htm


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Jeff Lucido [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 1:09 PM
To: CF-Talk
Subject: Erratic CF/IIS issues


I am experiencing the strangest problem I have ever seen with hosting CF
apps. on an IIS box. Specifically, I have several virtual websites
configured in IIS (not virtual directories). The erratic issue is
occasionally one of the virtual websites will be displayed on top of the
virtual website a user makes a request for. Specifically, a user wants
xyz.com but abc.com is displayed on top of xyz.com. Nothing displays in
the site abc.com except for broken links since the images do not exist
in xyz.com. This is very odd and extremely annoying.

I tried the MS knowledge base, but those efforts were fruitless (at
least for me). I tried deleting both virtual websites, renaming their
source directories, kicked the box and then re-created the virtual
websites using new names. No luck, still happens. I cannot find anything
in the log files and it does not occur at any regular frequency. It may
go several weeks working properly and then, bam site not available. The
only way I can get the sites to serve up properly after this has
happened is to kick the WWW publishing service and CF MX. Server
specifics:

-W2K Server, SP3
-CFMX, updater 3

Any ideas and more importantly any way to correct this problem?

Thanks!
-JSLucido



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.505 / Virus Database: 302 - Release Date: 7/30/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: Interface Design

2003-08-04 Thread Pablo Varando
I also give away many free templates :)

http://www.cfpablo.com/templates/

:) - Pablo
- Original Message - 
From: "Cantrell, Adam" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 12:36 PM
Subject: RE: Interface Design


> http://oswd.org/
>
> Open Source Web Design.
>
> I've never used one of the layouts from this site, but it might be good
for
> one of those "I want a website for $50" clients.
>
> Adam.
>
>
>
> -Original Message-
> From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 04, 2003 6:41 AM
> To: CF-Talk
> Subject: Interface Design
>
>
> Would anyone know of any websites where I can get some ideas for interface
> designs?
>
> I've been designing many of my interfaces so that they're quick to load,
and
> very simple...although I'd like to improve upon this w/ some more
graphical
> approaches & that sort of stuff...although, I really don't know where to
go
> w/ it.  So, any samples, ideas, etc. would be appreciated.
>
> Thanks!
>
> Scott
>
> Scott Wilhelm
> Computer Technician/Web Developer
> http://www.sllboces.org   /
>  http://scott.sllboces.org (digital desktop)
> [EMAIL PROTECTED]
>
> Canton (Mon/Tue)
> St. Lawrence-Lewis BOCES
> PO Box 231, 139 State Street Road
> Canton, NY 13617
> P.   315-386-4504 x 164
> F.   315-386-3395
>
> Heuvelton (Wed/Thu/Fri)
> Heuvelton Central School
> PO Box 375, 87 Washington Street
> Heuvelton, NY 13654
> P.   315-344-2414 x 3651 "urn:schemas-microsoft-com:office:office" />
>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: OT - SQL Firehose mode??

2003-08-04 Thread Sarsoun, Jeff
This often happens when you open a table that has a large amount of records in the 
enterprise manager.  The enterprise manager, to save resources will not return all the 
records at once and throws this error when you try to insert a record.  There are 
several things you could do, one of them might be to return only the top 1 record 
before entering a new one.

Jeff

-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 1:42 PM
To: CF-Talk
Subject: OT - SQL Firehose mode??


Why do I get this strange error when I try to add text to a column in SQL while in 
open table mode?

"Transaction cannot start while in firehose mode"

I'm adding text to a nvarchar column with 255 chars.

Thanks.

Robert O.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: Erratic CF/IIS issues

2003-08-04 Thread Scott Mulholland
See if this addresses your issue:
http://www.macromedia.com/support/coldfusion/ts/documents/tn18307.htm

-Original Message-
From: Jeff Lucido [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 12:09 PM
To: CF-Talk
Subject: Erratic CF/IIS issues


I am experiencing the strangest problem I have ever seen with hosting CF
apps. on an IIS box. Specifically, I have several virtual websites
configured in IIS (not virtual directories). The erratic issue is
occasionally one of the virtual websites will be displayed on top of the
virtual website a user makes a request for. Specifically, a user wants
xyz.com but abc.com is displayed on top of xyz.com. Nothing displays in
the site abc.com except for broken links since the images do not exist
in xyz.com. This is very odd and extremely annoying.

I tried the MS knowledge base, but those efforts were fruitless (at
least for me). I tried deleting both virtual websites, renaming their
source directories, kicked the box and then re-created the virtual
websites using new names. No luck, still happens. I cannot find anything
in the log files and it does not occur at any regular frequency. It may
go several weeks working properly and then, bam site not available. The
only way I can get the sites to serve up properly after this has
happened is to kick the WWW publishing service and CF MX. Server
specifics:

-W2K Server, SP3
-CFMX, updater 3

Any ideas and more importantly any way to correct this problem?

Thanks!
-JSLucido




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SQL Join Problem (Easy ?)

2003-08-04 Thread webmaster
That worked.  You rock...now I've learned a new trick as well!

Thanks! 


Regards,

Eric Hoffman
Datastream Connexion 

-Original Message-
From: DeShazo, Jonathan P. (Keane) [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 10:29 AM
To: CF-Talk

OK, yeah.  You are right.  When you add discriminators on the
customer_levels table like 'AND customer_levels.customer_id = 20735'  it
messes up the outer join.  'inventory.client_id = 1' won't hurt but I don't
know what table the active column is on. 

What I would do is narrow down the data in the customer_levels table to the
right client_id BEFORE I outer join it to inventory.  Try using an inline
view like this:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.id,
customer_levels.price,
customer_levels.inv_id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
LEFT OUTER JOIN ( SELECT * FROM customer_levels
WHERE customer_id = 20735 ) AS customer_levels on customer_levels.inv_id =
inventory.service_id
where active = 1 
AND inventory.client_id = 1 
order by category_id ASC




Does this work for you?  

I like this problem because I am not used to the ANSI notation for joins and
wouldn't think to use them unless I had to.  Thanks for the practice:)


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 10:46 AM
To: CF-Talk
Subject: RE: SQL Join Problem (Easy ?)


Let me see if we are seeing eye to eye...I want to return all Inventory
records...and any customer_levels (custom prices can be none, one, or more
levels per item) if they exist and only for the one customer we are looking
up...

Here's my results right now:  http://www.heinzconnect.com/hzc.cfm

Only getting records with a matching customer_levels record, no records that
have no customer_levels match.  Is there something else monkeying this up (I
switched to left join)

I believe my AND clause with the customer id is funking it up maybe?  How
else to filter it then?  Maybe it is my joins.. :-)

Thanks so much!!  (the last piece of the proverbial puzzle on this)

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.id,
customer_levels.price,
customer_levels.inv_id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
LEFT OUTER JOIN customer_levels on
customer_levels.inv_id = inventory.service_id
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC

Regards,

Eric 

-Original Message-
From: DeShazo, Jonathan P. (Keane) [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 9:29 AM
To: CF-Talk

>From what you have got there, you should be returning all records from the
customer_levels table, along with the records in inventory that match.  
It sounds like you want all records in the inventory table with
cusomter_level data if it exists. 

You were almost there with the query you have but you put the lock on the
wrong side of the door.  Change your RIGHT OUTER JOIN to a LEFT OUTER JOIN
and you should be all set. 

ps. In case I read this wrong: you can return all inventory records AND all
customer_level data whether they match or not (like a union) by using a full
outer join.

Have a good Monday...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, August 03, 2003 11:50 PM
To: CF-Talk
Subject: SQL Join Problem (Easy ?)


This I bet is easy, but I am not seeing it...

Here is the query:

Select 
inventory.service_i

OT - SQL Firehose mode??

2003-08-04 Thread Robert Orlini
Why do I get this strange error when I try to add text to a column in SQL while in 
open table mode?

"Transaction cannot start while in firehose mode"

I'm adding text to a nvarchar column with 255 chars.

Thanks.

Robert O.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: DTD validation

2003-08-04 Thread Paul Hastings
> Do you have to validate DTD's syntax or validate an XML file against a
DTD?

an xml file against a vendor DTD. on the fly (ie after uploading, before
registering with server).

> for validating XML docs against a DTD:
>
> http://www.cfmentor.com/code/index.cfm?action=script&id=130

cool. that looks like it might do the trick, many thanks. i will of course
bother you later w/dumb questions ;-)


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: Interface Design

2003-08-04 Thread Cantrell, Adam
http://oswd.org/

Open Source Web Design.

I've never used one of the layouts from this site, but it might be good for
one of those "I want a website for $50" clients.

Adam.



-Original Message-
From: Scott Wilhelm [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 6:41 AM
To: CF-Talk
Subject: Interface Design


Would anyone know of any websites where I can get some ideas for interface
designs?
 
I've been designing many of my interfaces so that they're quick to load, and
very simple...although I'd like to improve upon this w/ some more graphical
approaches & that sort of stuff...although, I really don't know where to go
w/ it.  So, any samples, ideas, etc. would be appreciated.
 
Thanks!

Scott

Scott Wilhelm
Computer Technician/Web Developer
http://www.sllboces.org   /
 http://scott.sllboces.org (digital desktop)
[EMAIL PROTECTED]

Canton (Mon/Tue)
St. Lawrence-Lewis BOCES
PO Box 231, 139 State Street Road
Canton, NY 13617
P.   315-386-4504 x 164
F.   315-386-3395

Heuvelton (Wed/Thu/Fri)
Heuvelton Central School
PO Box 375, 87 Washington Street
Heuvelton, NY 13654
P.   315-344-2414 x 3651

 
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



RE: ezedit

2003-08-04 Thread Bryan F. Hogan
That is cool, didn't know that. I just may change my mind ;)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 1:07 PM
To: CF-Talk
Subject: RE: ezedit


we use activeedit from http://www.cfdev.com. It rocks.  Looks like they have
activespell extended to Flash!  kewl

Doug

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: Interface Design

2003-08-04 Thread Jason Miller
You know - I got excited - that looked like a good resource for some 
cheapo clients that don't like to pay for custom design..

however - unless helen design is part of razorfish or one of the 
designers has rights - the template
http://www.helendesign.net/cgi-bin/p_detail.cgi?prod_id=d0001-92&category_id=1003
is bitten right from razorfish.com - based on that... I wouldn't support 
them without looking a tad more into it.


Jeremy Brodie wrote:
> Scott,
> 
> You may want to take a look at http://www.helendesign.net/cgi-bin/main.cgi. Although 
> the designs seem a bit mass-produced, I have been able to modify a few of their 
> designs for a few of my corporate (read conservative) clients. On the plus side, the 
> price is pretty decent.
> 
> P.S. The other approaches suggested will work too if yo're intested in seeing more 
> on design's cutting edge. 
> 
> Jeremy Brodie
> Intelix
> an Edgewater Technology Solutions Company
> 
> web: http://www.edgewater.com
> phone:(703) 815-2500
> nasdaq symbol: EDGE
> 
> 
> 
>>Would anyone know of any websites where I can get some ideas for 
>>interface designs?
> 
>  
> 
>>I've been designing many of my interfaces so that they're quick to 
>>load, and very simple...although I'd like to improve upon this w/ some 
>>more graphical approaches & that sort of stuff...although, I really 
>>don't know where to go w/ it.  So, any samples, ideas, etc. would be 
>>appreciated.
> 
>  
> 
>>Thanks!
>>
>>Scott
>>
>>Scott Wilhelm
>>Computer Technician/Web Developer
>>http://www.sllboces.org   /   >sllboces.org/> http://scott.sllboces.org (digital desktop)
>>[EMAIL PROTECTED]
>>
>>Canton (Mon/Tue)
>>St. Lawrence-Lewis BOCES
>>PO Box 231, 139 State Street Road
>>Canton, NY 13617
>>P.   315-386-4504 x 164
>>F.   315-386-3395
>>
>>Heuvelton (Wed/Thu/Fri)
>>Heuvelton Central School
>>PO Box 375, 87 Washington Street
>>Heuvelton, NY 13654
>>P.   315-344-2414 x 3651>"urn:schemas-microsoft-com:office:office" />
>>
>  
> 
>  
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: DTD validation

2003-08-04 Thread Massimo Foti
> can anyone suggest a java based DTD validator thats fairly idiot-proof
> (meaning me)?  thanks.

Do you have to validate DTD's syntax or validate an XML file against a DTD?

For the first task you could use a decent XML editor (XMLSpy, XMetal etc),
for validating XML docs against a DTD:

http://www.cfmentor.com/code/index.cfm?action=script&id=130


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer
http://www.massimocorner.com/



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: ezedit

2003-08-04 Thread jon hall
Updated the codebase, but they took out the image upload ability from
soEditor. Plus iirc the license is more restrictive for the free
soEditor.

-- 
 jon
 mailto:[EMAIL PROTECTED]

Monday, August 4, 2003, 12:59:08 PM, you wrote:
BFH> Check out soEditor, soeditor is the long ago updated version of ezedit

BFH> http://www.siteobjects.com/

BFH> -Original Message-
BFH> From: Ihrig Paul E Cont 88 ABW/EM [mailto:[EMAIL PROTECTED]
BFH> Sent: Monday, August 04, 2003 12:57 PM
BFH> To: CF-Talk
BFH> Subject: ezedit


BFH> i am working on a old site that relied heavily on ezedit to update html in a
BFH> db.
BFH> it is pretty slow for the end user...

BFH> what are people using to do wysiwyg inline editing..

BFH> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



DTD validation

2003-08-04 Thread Paul Hastings
can anyone suggest a java based DTD validator thats fairly idiot-proof
(meaning me)?  thanks.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Erratic CF/IIS issues

2003-08-04 Thread Jeff Lucido
I am experiencing the strangest problem I have ever seen with hosting CF
apps. on an IIS box. Specifically, I have several virtual websites
configured in IIS (not virtual directories). The erratic issue is
occasionally one of the virtual websites will be displayed on top of the
virtual website a user makes a request for. Specifically, a user wants
xyz.com but abc.com is displayed on top of xyz.com. Nothing displays in
the site abc.com except for broken links since the images do not exist
in xyz.com. This is very odd and extremely annoying.

I tried the MS knowledge base, but those efforts were fruitless (at
least for me). I tried deleting both virtual websites, renaming their
source directories, kicked the box and then re-created the virtual
websites using new names. No luck, still happens. I cannot find anything
in the log files and it does not occur at any regular frequency. It may
go several weeks working properly and then, bam site not available. The
only way I can get the sites to serve up properly after this has
happened is to kick the WWW publishing service and CF MX. Server
specifics:

-W2K Server, SP3
-CFMX, updater 3

Any ideas and more importantly any way to correct this problem?

Thanks!
-JSLucido



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Douglas.Knudsen
we use activeedit from http://www.cfdev.com. It rocks.  Looks like they have 
activespell extended to Flash!  kewl

Doug
>-Original Message-
>From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 12:59 PM
>To: CF-Talk
>Subject: RE: ezedit
>
>
>Check out soEditor, soeditor is the long ago updated version of ezedit
>
>http://www.siteobjects.com/
>
>-Original Message-
>From: Ihrig Paul E Cont 88 ABW/EM [mailto:[EMAIL PROTECTED]
>Sent: Monday, August 04, 2003 12:57 PM
>To: CF-Talk
>Subject: ezedit
>
>
>i am working on a old site that relied heavily on ezedit to 
>update html in a
>db.
>it is pretty slow for the end user...
>
>what are people using to do wysiwyg inline editing..
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Michael T. Tangorre
ActiveEdit and SiteObjects editor.

www.cfdev.com
www.siteobjects.com

both have their limitations...


- Original Message - 
From: "Ihrig Paul E Cont 88 ABW/EM" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 12:56 PM
Subject: ezedit


> i am working on a old site that relied heavily on ezedit to update html in
a db.
> it is pretty slow for the end user...
>
> what are people using to do wysiwyg inline editing..
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: ezedit

2003-08-04 Thread Bryan F. Hogan
Check out soEditor, soeditor is the long ago updated version of ezedit

http://www.siteobjects.com/

-Original Message-
From: Ihrig Paul E Cont 88 ABW/EM [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 12:57 PM
To: CF-Talk
Subject: ezedit


i am working on a old site that relied heavily on ezedit to update html in a
db.
it is pretty slow for the end user...

what are people using to do wysiwyg inline editing..

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: CFMX + Remoting Assistance Needed

2003-08-04 Thread Stacy Young
Yep, and I run it as a standalone app so it's easy to test deployed
apps.

Stace

-Original Message-
From: Todd [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 12:48 PM
To: CF-Talk
Subject: RE: CFMX + Remoting Assistance Needed

I'm wondering why no one brought up the NetConnection debugger yet?
It's 
part of flash and can help debug most connection problems.

Also, Branden Hall released a Flash Remoting Tester:
http://www.communitymx.com/content/article.cfm?cid=E79F1303C1E096ED

~Todd


--
Todd Rafferty ([EMAIL PROTECTED]) - http://www.web-rat.com/
Team Macromedia Volunteer for ColdFusion
http://www.macromedia.com/support/forums/team_macromedia/
http://www.devmx.com/

--


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: OT: stupid ?

2003-08-04 Thread Richard Crawford
At 11:43 PM 8/1/2003 -0400, you wrote:
>is there a way that i can have someone use an app on my comp in my IIS 
>webroot folder?
>maybe by going through my IP address and then into my comp if i turn 
>firewall off?
>
>anyone know if this is possible?

What is your goal?  Remote administration of your computer? 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



ezedit

2003-08-04 Thread Ihrig Paul E Cont 88 ABW/EM
i am working on a old site that relied heavily on ezedit to update html in a db.
it is pretty slow for the end user...

what are people using to do wysiwyg inline editing..
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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



Interface Design

2003-08-04 Thread Jeremy Brodie
Scott,

You may want to take a look at http://www.helendesign.net/cgi-bin/main.cgi. Although 
the designs seem a bit mass-produced, I have been able to modify a few of their 
designs for a few of my corporate (read conservative) clients. On the plus side, the 
price is pretty decent.

P.S. The other approaches suggested will work too if yo're intested in seeing more on 
design's cutting edge. 

Jeremy Brodie
Intelix
an Edgewater Technology Solutions Company

web: http://www.edgewater.com
phone:(703) 815-2500
nasdaq symbol: EDGE


>Would anyone know of any websites where I can get some ideas for 
>interface designs?
 
>
>I've been designing many of my interfaces so that they're quick to 
>load, and very simple...although I'd like to improve upon this w/ some 
>more graphical approaches & that sort of stuff...although, I really 
>don't know where to go w/ it.  So, any samples, ideas, etc. would be 
>appreciated.
 
>
>Thanks!
>
>Scott
>
>Scott Wilhelm
>Computer Technician/Web Developer
>http://www.sllboces.org   /   sllboces.org/> http://scott.sllboces.org (digital desktop)
>[EMAIL PROTECTED]
>
>Canton (Mon/Tue)
>St. Lawrence-Lewis BOCES
>PO Box 231, 139 State Street Road
>Canton, NY 13617
>P.   315-386-4504 x 164
>F.   315-386-3395
>
>Heuvelton (Wed/Thu/Fri)
>Heuvelton Central School
>PO Box 375, 87 Washington Street
>Heuvelton, NY 13654
>P.   315-344-2414 x 3651"urn:schemas-microsoft-com:office:office" />
>
 
>
 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: CFMX + Remoting Assistance Needed

2003-08-04 Thread Todd
I'm wondering why no one brought up the NetConnection debugger yet?  It's 
part of flash and can help debug most connection problems.

Also, Branden Hall released a Flash Remoting Tester:
http://www.communitymx.com/content/article.cfm?cid=E79F1303C1E096ED

~Todd


--
Todd Rafferty ([EMAIL PROTECTED]) - http://www.web-rat.com/
Team Macromedia Volunteer for ColdFusion
http://www.macromedia.com/support/forums/team_macromedia/
http://www.devmx.com/

--

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: CFMX + Remoting Assistance Needed

2003-08-04 Thread Benoit Hediard
It really looks like a problem in the gateway definiton in your swf file, it
only calls the local machine gateway, are you sure you define the correct
gateway URL?

>From your dev machine, create a new .fla and try to make a simple call to
your CFC on the production server, with the NetConnection Debugger
activated.

If it works, then there is really something wrong in your swf in the gateway
definition.
Try to hard-code the production gateway URL in your swf just to see...

You could also try to perform a direct HTTP call to your CFC to see if it is
available for remoting from a remote machine.
Something like :
http://www.youdomain.com/pathtothecfc/theFacadeCFC.cfc?method=somemethod&som
eparameter=somevalue


Benoit Hediard
www.benorama.com

> -Message d'origine-
> De : Graham Pearson [mailto:[EMAIL PROTECTED]
> Envoyé : lundi 4 août 2003 18:14
> À : CF-Talk
> Objet : RE: CFMX + Remoting Assistance Needed
>
>
> Doing some more testing on this resulted in:
>
> If I make an addition to c:\winnt\system32\drivers\etc\host file and
> resolve the domain to 127.0.0.1 the flash remoting application will work
> from the console but would not work from a remote machine. I
> added various
> cflog tags and with the domain resolving to 127.0.0.1 it writes
> all of the
> cflog entries with the respected information. Now if I remove the
> entry in
> the hosts file all of the cflog tags which have been put in the index.cfm
> page will be written to the log but all of the cflog tags in the
> .cfc file
> which I am calling do not get written to the log.
>
>
> Any additional Information (First time doing a RIA and treading
> water big time)
>
> At 08:59 AM 8/4/2003, you wrote:
> >One basic check is to put a  in your CFC in order to
> verify if Flash
> >Remoting calls are performed on the server and if the CFC is correctly
> >executed.
> >If there is nothing generated by , then :
> >- there is something wrong on the swf side,
> >- or the CFC generates an error (you might check if there is any
> flash.log
> >in CFusionMX/logs)
> >
> >Benoit Hediard
> >www.benorama.com
> >
> > > -Message d'origine-
> > > De : Graham Pearson [mailto:[EMAIL PROTECTED]
> > > Envoyé : lundi 4 août 2003 15:45
> > > À : CF-Talk
> > > Objet : Re: CFMX + Remoting Assistance Needed
> > >
> > >
> > > In my code I pass CGI.Server_Name to the .swf file for the
> gate url. This
> > > works on both local consoles just not from a remote location.
> > >
> > >
> > >
> > > At 08:20 AM 8/4/2003, you wrote:
> > > >You have to change the flash gateway url for each machine.
> > > >
> > > >So if you developed on http://www.first machine.com the
> moved the site to
> > > >http://www.secondmachine.com you will need to change the gate url.
> > > >
> > > >HTH
> > > >Clint
> > > >- Original Message -
> > > >From: "Graham Pearson" <[EMAIL PROTECTED]>
> > > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > > >Sent: Monday, August 04, 2003 8:01 AM
> > > >Subject: CFMX + Remoting Assistance Needed
> > > >
> > > >
> > > > > I am working on an application which I have working on my
> development
> > > > > machine which uses CFMX (in Standalone Mode) and Visnetic
> > > Website Pro. I
> > > >am
> > > > > able on the local machine view all of the Flash Remoting
> Stuff and the
> > > >site
> > > > > is running smooth. Now I have a Semi-Production Server which
> > > is the same
> > > >as
> > > > > my development machine that I have been using to test my code
> > > before it
> > > > > goes live and the code works from the local console on
> this machine as
> > > > > well. My Problem is when I view the site from a remote
> > > location the Flash
> > > > > Remoting Stuff does not work. All of the .swf's are on the
> > > same machine in
> > > > > the same directory as the .cfm pages.
> > > > >
> > > > >
> > > > > Is their a way to debug remotely why the Flash stuff does not
> > > work on a
> > > > > remote computer browsing the site and why it works from
> sitting at the
> > > >console?
> > > > >
> > > > >
> > > > >
> > > > > Do you use the Macromedia MX Suite of Products? A new
> book has just
> > > > > been published called Macromedia MX: Building Rich Internet
> > > Applications
> > > > >
> > > > > Link:
> > > > >
> > > >http://www.amazon.com/exec/obidos/ASIN/0321158814/onsite/102-7426
> >355-5264145
> > > >
> >
> >=
> ==
> > > > Graham Pearson, System Administrator / Certified Webmaster
> / Published
> > > > Northern Indiana Educational Services Center
> > > > Voice: (574) 254-0444 Ext 108 / (800) 326-5642 Fax: (574) 254-0148
> > > > Http://www.niesc.k12.in.us  http://support.niesc.k12.in.us   Email:
> > > > [EMAIL PROTECTED]
> > > >
> >
> >=
> ==
> > > >
> > > >
> > >
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscriptio

RE: CFMX + Remoting Assistance Needed

2003-08-04 Thread Graham Pearson
Doing some more testing on this resulted in:

If I make an addition to c:\winnt\system32\drivers\etc\host file and 
resolve the domain to 127.0.0.1 the flash remoting application will work 
from the console but would not work from a remote machine. I added various 
cflog tags and with the domain resolving to 127.0.0.1 it writes all of the 
cflog entries with the respected information. Now if I remove the entry in 
the hosts file all of the cflog tags which have been put in the index.cfm 
page will be written to the log but all of the cflog tags in the .cfc file 
which I am calling do not get written to the log.


Any additional Information (First time doing a RIA and treading water big time)

At 08:59 AM 8/4/2003, you wrote:
>One basic check is to put a  in your CFC in order to verify if Flash
>Remoting calls are performed on the server and if the CFC is correctly
>executed.
>If there is nothing generated by , then :
>- there is something wrong on the swf side,
>- or the CFC generates an error (you might check if there is any flash.log
>in CFusionMX/logs)
>
>Benoit Hediard
>www.benorama.com
>
> > -Message d'origine-
> > De : Graham Pearson [mailto:[EMAIL PROTECTED]
> > Envoyé : lundi 4 août 2003 15:45
> > À : CF-Talk
> > Objet : Re: CFMX + Remoting Assistance Needed
> >
> >
> > In my code I pass CGI.Server_Name to the .swf file for the gate url. This
> > works on both local consoles just not from a remote location.
> >
> >
> >
> > At 08:20 AM 8/4/2003, you wrote:
> > >You have to change the flash gateway url for each machine.
> > >
> > >So if you developed on http://www.first machine.com the moved the site to
> > >http://www.secondmachine.com you will need to change the gate url.
> > >
> > >HTH
> > >Clint
> > >- Original Message -
> > >From: "Graham Pearson" <[EMAIL PROTECTED]>
> > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > >Sent: Monday, August 04, 2003 8:01 AM
> > >Subject: CFMX + Remoting Assistance Needed
> > >
> > >
> > > > I am working on an application which I have working on my development
> > > > machine which uses CFMX (in Standalone Mode) and Visnetic
> > Website Pro. I
> > >am
> > > > able on the local machine view all of the Flash Remoting Stuff and the
> > >site
> > > > is running smooth. Now I have a Semi-Production Server which
> > is the same
> > >as
> > > > my development machine that I have been using to test my code
> > before it
> > > > goes live and the code works from the local console on this machine as
> > > > well. My Problem is when I view the site from a remote
> > location the Flash
> > > > Remoting Stuff does not work. All of the .swf's are on the
> > same machine in
> > > > the same directory as the .cfm pages.
> > > >
> > > >
> > > > Is their a way to debug remotely why the Flash stuff does not
> > work on a
> > > > remote computer browsing the site and why it works from sitting at the
> > >console?
> > > >
> > > >
> > > >
> > > > Do you use the Macromedia MX Suite of Products? A new book has just
> > > > been published called Macromedia MX: Building Rich Internet
> > Applications
> > > >
> > > > Link:
> > > >
> > >http://www.amazon.com/exec/obidos/ASIN/0321158814/onsite/102-7426
>355-5264145
> > >
> >===
> > > Graham Pearson, System Administrator / Certified Webmaster / Published
> > > Northern Indiana Educational Services Center
> > > Voice: (574) 254-0444 Ext 108 / (800) 326-5642 Fax: (574) 254-0148
> > > Http://www.niesc.k12.in.us  http://support.niesc.k12.in.us   Email:
> > > [EMAIL PROTECTED]
> > >
> >===
> > >
> > >
> >
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-04 Thread Jochem van Dieten
Blum, Jason (SAA) wrote:
> 
> I think I have done a poor job of describing the scenario.  Ben Forta's
> "Maybe We Should Try a Separation" (CFDJ Vol 4 Issue 10) really got me
> to thinking: there are so many good reasons for code reuse (faster
> development time, centralized ("policable") code, easier debugging,
> etc.)  But getting developers to tie into existing resources is
> hopeless, particularly when your community of developers comes and goes
> and is rarely around long enough to really respond to your efforts to
> get them to reuse codes and build off each others' functionality.

If they don't want to tie into existing resources and you don't 
have the authority to order them to do it, it is hopeless. And 
even if you have the authority but they don't want it, it is 
probably just as hopeless.

But from your scenario I get the impression you are not talking 
about just an ISP. You are talking about a closely connected 
community that already has ties with eachother. So maybe you 
should explain a bit more about that community. And what do the 
developers themselves think about it?

Jochem



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Auction site question

2003-08-04 Thread Jack Poe
My client wants Ebay like functionality - so multiple people can proxy bid
on the same item
any thoughts?



-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 11:41 AM
To: CF-Talk
Subject: Re: Auction site question


You don't. At any one time there is a single winner. Any new bid is placed
against that single winner. If you have multiple items and multiple winners,
then other things have to be done.


> one quick question - how do you deal with more than one proxy bid?
>
>
> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
> Sent: Saturday, August 02, 2003 11:23 PM
> To: CF-Talk
> Subject: Re: Auction site question
>
>
> I've written some patent pending auction code and have implemented this in
a
> few
> ways. The basic way is:
> 1. take a bid and store it
> 2. Is it a new bid?
> yes, then the winning bid is now the minimum needed for the item.
> no, then look at the previous bid. Does the new bid beat the proxy
(i.e.
> the
> total amount bid on the previous item)?
> yes, then the new bid is the winner and the bid is either 1
> increment
> over the previous bid or the new bid, whichever is less.
> no, then the old bid is upped to the level of the new bid.
> It can get more complicated but the main thing is to map out the business
> logic
> and the cases before implementing it.
>
> Michael Dinowitz
> Finding technical solutions to the problems you didn't know you had yet
>
> > BlankDoes anyone out there know how Ebay's Proxy-Bid functionality
works?
> > I need to emulate it for a site and I am going NuTz trying to come up
with
> a
> > fair solution.
> >
> > Thanks
> > -Jack
> >
> > _
> >
> > Jack L. Poe
> > Manager
> > Greater Dayton ColdFusion User Group
> > www.cfdayton.com
> > [EMAIL PROTECTED]
> > _
> >
> >
> >
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SQL Join Problem (Easy ?)

2003-08-04 Thread DeShazo, Jonathan P. (Keane)
OK, yeah.  You are right.  When you add discriminators on the
customer_levels table like 'AND customer_levels.customer_id = 20735'  it
messes up the outer join.  'inventory.client_id = 1' won't hurt but I don't
know what table the active column is on. 

What I would do is narrow down the data in the customer_levels table to the
right client_id BEFORE I outer join it to inventory.  Try using an inline
view like this:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.id,
customer_levels.price,
customer_levels.inv_id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
LEFT OUTER JOIN ( SELECT * FROM customer_levels
WHERE customer_id = 20735 ) AS customer_levels on
customer_levels.inv_id = inventory.service_id
where active = 1 
AND inventory.client_id = 1 
order by category_id ASC




Does this work for you?  

I like this problem because I am not used to the ANSI notation for joins and
wouldn't think to use them unless I had to.  Thanks for the practice:)


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 10:46 AM
To: CF-Talk
Subject: RE: SQL Join Problem (Easy ?)


Let me see if we are seeing eye to eye...I want to return all Inventory
records...and any customer_levels (custom prices can be none, one, or more
levels per item) if they exist and only for the one customer we are looking
up...

Here's my results right now:  http://www.heinzconnect.com/hzc.cfm

Only getting records with a matching customer_levels record, no records that
have no customer_levels match.  Is there something else monkeying this up (I
switched to left join)

I believe my AND clause with the customer id is funking it up maybe?  How
else to filter it then?  Maybe it is my joins.. :-)

Thanks so much!!  (the last piece of the proverbial puzzle on this)

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.id,
customer_levels.price,
customer_levels.inv_id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
LEFT OUTER JOIN customer_levels on
customer_levels.inv_id = inventory.service_id
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC

Regards,

Eric 

-Original Message-
From: DeShazo, Jonathan P. (Keane) [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 9:29 AM
To: CF-Talk

>From what you have got there, you should be returning all records from the
customer_levels table, along with the records in inventory that match.  
It sounds like you want all records in the inventory table with
cusomter_level data if it exists. 

You were almost there with the query you have but you put the lock on the
wrong side of the door.  Change your RIGHT OUTER JOIN to a LEFT OUTER JOIN
and you should be all set. 

ps. In case I read this wrong: you can return all inventory records AND all
customer_level data whether they match or not (like a union) by using a full
outer join.

Have a good Monday...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, August 03, 2003 11:50 PM
To: CF-Talk
Subject: SQL Join Problem (Easy ?)


This I bet is easy, but I am not seeing it...

Here is the query:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client

Re: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-04 Thread jon hall
I didn't read all the way back through the thread, but why is it
important that they use each others code in the first place? Obviously
code reuse is a good thing, but you never explained why it was
important for you. In most places...if the boss says, use this code,
it should to be used, and if not, the problem doesn't have anything to
do with code.

Do these developers even know what components are available?
Are these components/extensions organized into a coherent API and
documented centrally?

If you answered no to either of these questions, then the problem is
clear.
-- 
 jon
 mailto:[EMAIL PROTECTED]

Monday, August 4, 2003, 9:57:20 AM, you wrote:

BJS> So forget about my scattered scenario and emphasis on databases: just
BJS> consider this question: How could you set up a server architecture
BJS> (whether internally via security sandboxes or externally via web service
BJS> syndication servers) that would encourage a development culture whose
BJS> members were free to develop however whatever they wanted, but faced
BJS> strong incentives to first utilize each others' reusable code?


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Auction site question

2003-08-04 Thread Michael Dinowitz
You don't. At any one time there is a single winner. Any new bid is placed
against that single winner. If you have multiple items and multiple winners,
then other things have to be done.


> one quick question - how do you deal with more than one proxy bid?
>
>
> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
> Sent: Saturday, August 02, 2003 11:23 PM
> To: CF-Talk
> Subject: Re: Auction site question
>
>
> I've written some patent pending auction code and have implemented this in a
> few
> ways. The basic way is:
> 1. take a bid and store it
> 2. Is it a new bid?
> yes, then the winning bid is now the minimum needed for the item.
> no, then look at the previous bid. Does the new bid beat the proxy (i.e.
> the
> total amount bid on the previous item)?
> yes, then the new bid is the winner and the bid is either 1
> increment
> over the previous bid or the new bid, whichever is less.
> no, then the old bid is upped to the level of the new bid.
> It can get more complicated but the main thing is to map out the business
> logic
> and the cases before implementing it.
>
> Michael Dinowitz
> Finding technical solutions to the problems you didn't know you had yet
>
> > BlankDoes anyone out there know how Ebay's Proxy-Bid functionality works?
> > I need to emulate it for a site and I am going NuTz trying to come up with
> a
> > fair solution.
> >
> > Thanks
> > -Jack
> >
> > _
> >
> > Jack L. Poe
> > Manager
> > Greater Dayton ColdFusion User Group
> > www.cfdayton.com
> > [EMAIL PROTECTED]
> > _
> >
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: New LiveDocs system!

2003-08-04 Thread Stacy Young
Netscape 7.1, content is off the screen.

Stace

-Original Message-
From: jon hall [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 11:01 AM
To: CF-Talk
Subject: Re: New LiveDocs system!

I would really be curious what the person who developed these styles
declarations was thinking...

The negative left margins are way way out of kilter with reality for
h1 and h2 and cause the contents of these tags to be rendered half off
the screen.

H1, .heading1  {
margin-left:-48px;
font-size: 20px;
font-family: arial, helvetica, sans-serif;
color: black;
background-color: #FF;
font-weight: bold;
}

H2, .heading2  {
font-size: 18px;
font-family: Arial, sans-serif;
margin-left: -36px;
color: black;
background-color: #FF;
font-weight: bold;
}


-32px? Ok...

H3, .heading3   {
font-family: arial, helvetica, sans-serif;
font-size: -32px;
color: black;
background-color: #FF;
font-weight: bold;
margin-left: 24px;
}

-- 
 jon
 mailto:[EMAIL PROTECTED]

Sunday, August 3, 2003, 2:31:06 AM, you wrote:
SAC> Just in case folks haven't seen the announcement on my blog, we 
SAC> re-launched LiveDocs on Friday...

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

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

SAC> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Auction site question

2003-08-04 Thread Jack Poe
one quick question - how do you deal with more than one proxy bid?


-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 02, 2003 11:23 PM
To: CF-Talk
Subject: Re: Auction site question


I've written some patent pending auction code and have implemented this in a
few
ways. The basic way is:
1. take a bid and store it
2. Is it a new bid?
yes, then the winning bid is now the minimum needed for the item.
no, then look at the previous bid. Does the new bid beat the proxy (i.e.
the
total amount bid on the previous item)?
yes, then the new bid is the winner and the bid is either 1
increment
over the previous bid or the new bid, whichever is less.
no, then the old bid is upped to the level of the new bid.
It can get more complicated but the main thing is to map out the business
logic
and the cases before implementing it.

Michael Dinowitz
Finding technical solutions to the problems you didn't know you had yet

> BlankDoes anyone out there know how Ebay's Proxy-Bid functionality works?
> I need to emulate it for a site and I am going NuTz trying to come up with
a
> fair solution.
>
> Thanks
> -Jack
>
> _
>
> Jack L. Poe
> Manager
> Greater Dayton ColdFusion User Group
> www.cfdayton.com
> [EMAIL PROTECTED]
> _
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: What the heck is wrong with this Query?

2003-08-04 Thread Michael Traher
Maybe you need to exclude ID, 
something like


SELECT PA_COUNTRY, count(distinct PA_CATEGORY) as category_count
FROM papers
GROUP BY PA_COUNTRY


This will count the distinct categories, grouped by country.

If you still have problems, please post a sample of data as this will
clarify the problem.

Michael Traher 
Systems Manager
ICLP (London)
Tel: UK +44 (0) 20 8256 9072
Fax: UK +44 (0) 20 8681 0234 

This e-mail may contain privileged and confidential information and/or
copyright material and is intended for the use of the addressee only. If
you receive this e-mail by mistake please advise the sender immediately
by using the reply facility in your e-mail software and delete this
e-mail from your computer system. You may not deliver, copy or disclose
its contents to anyone else. Any unauthorised use may be unlawful. Any
views expressed in this e-mail are those of the individual sender and
may not necessarily reflect the views of ICLP. 
 
 

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: 04 August 2003 15:33
To: CF-Talk
Subject: RE: What the heck is wrong with this Query?

The query itself doesn't error out like this, but I'm not getting the
needed
results to "count" categories like I need:


SELECT DISTINCT PA_COUNTRY, ID, PA_CATEGORY
FROM papers
GROUP BY PA_COUNTRY, ID, PA_CATEGORY






This should give me the number of distinct "categories" for the distinct
country, "egypt". However, it's counting each individual instance, not
the
unique ones:

This is a "flat" database - so, I'm trying to group the countries, and
then
count the number of unique catagories for each country...



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



Re: New LiveDocs system!

2003-08-04 Thread jon hall
I would really be curious what the person who developed these styles
declarations was thinking...

The negative left margins are way way out of kilter with reality for
h1 and h2 and cause the contents of these tags to be rendered half off
the screen.

H1, .heading1  {
margin-left:-48px;
font-size: 20px;
font-family: arial, helvetica, sans-serif;
color: black;
background-color: #FF;
font-weight: bold;
}

H2, .heading2  {
font-size: 18px;
font-family: Arial, sans-serif;
margin-left: -36px;
color: black;
background-color: #FF;
font-weight: bold;
}


-32px? Ok...

H3, .heading3   {
font-family: arial, helvetica, sans-serif;
font-size: -32px;
color: black;
background-color: #FF;
font-weight: bold;
margin-left: 24px;
}

-- 
 jon
 mailto:[EMAIL PROTECTED]

Sunday, August 3, 2003, 2:31:06 AM, you wrote:
SAC> Just in case folks haven't seen the announcement on my blog, we 
SAC> re-launched LiveDocs on Friday...

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

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

SAC> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SQL Join Problem (Easy ?)

2003-08-04 Thread webmaster
Let me see if we are seeing eye to eye...I want to return all Inventory
records...and any customer_levels (custom prices can be none, one, or more
levels per item) if they exist and only for the one customer we are looking
up...

Here's my results right now:  http://www.heinzconnect.com/hzc.cfm

Only getting records with a matching customer_levels record, no records that
have no customer_levels match.  Is there something else monkeying this up (I
switched to left join)

I believe my AND clause with the customer id is funking it up maybe?  How
else to filter it then?  Maybe it is my joins.. :-)

Thanks so much!!  (the last piece of the proverbial puzzle on this)

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.id,
customer_levels.price,
customer_levels.inv_id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
LEFT OUTER JOIN customer_levels on
customer_levels.inv_id = inventory.service_id
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC

Regards,

Eric 

-Original Message-
From: DeShazo, Jonathan P. (Keane) [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 9:29 AM
To: CF-Talk

>From what you have got there, you should be returning all records from the
customer_levels table, along with the records in inventory that match.  
It sounds like you want all records in the inventory table with
cusomter_level data if it exists. 

You were almost there with the query you have but you put the lock on the
wrong side of the door.  Change your RIGHT OUTER JOIN to a LEFT OUTER JOIN
and you should be all set. 

ps. In case I read this wrong: you can return all inventory records AND all
customer_level data whether they match or not (like a union) by using a full
outer join.

Have a good Monday...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, August 03, 2003 11:50 PM
To: CF-Talk
Subject: SQL Join Problem (Easy ?)


This I bet is easy, but I am not seeing it...

Here is the query:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.inv_id,
customer_levels.price,
customer_levels.id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
RIGHT OUTER JOIN customer_levels on
inventory.service_id = customer_levels.inv_id 
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC




All we need to do is return all the rows right now.  This ends as a four
related subselect...the end result isn't important, simply need the query
returning every option, thus the join attempts.  In review, how do we join
that customer_level table on there so it does't exclude records when there
are no related records in customer_levels, but add multiple rows when there
are.  Example output:

Dispensing Jug Pumps Vol-Pak Valve Only 2. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 2.

Dispensing Jug Pumps Vol-Pak Rack and Valve set 3. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 4. 

Dispensing Jug Pumps Jug pump - Pour & Store #10 2.5000 

Dispensing Jug Pumps Jug pump - Pour & Store #11 

Dispensing Jug Pumps Jug pump - Pour & Store #12 

THANKS!!

Regards,

Eric J. Hoffman

DataStream Connexion
www.datastreamconnexion.com





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion

RE: What the heck is wrong with this Query?

2003-08-04 Thread Jack Poe
De-dupe the list then count it
:)

-Jack





-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 10:33 AM
To: CF-Talk
Subject: RE: What the heck is wrong with this Query?


The query itself doesn't error out like this, but I'm not getting the needed
results to "count" categories like I need:


SELECT DISTINCT PA_COUNTRY, ID, PA_CATEGORY
FROM papers
GROUP BY PA_COUNTRY, ID, PA_CATEGORY






This should give me the number of distinct "categories" for the distinct
country, "egypt". However, it's counting each individual instance, not the
unique ones:

This is a "flat" database - so, I'm trying to group the countries, and then
count the number of unique catagories for each country...



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: What the heck is wrong with this Query?

2003-08-04 Thread Les Mizzell
The query itself doesn't error out like this, but I'm not getting the needed
results to "count" categories like I need:


SELECT DISTINCT PA_COUNTRY, ID, PA_CATEGORY
FROM papers
GROUP BY PA_COUNTRY, ID, PA_CATEGORY






This should give me the number of distinct "categories" for the distinct
country, "egypt". However, it's counting each individual instance, not the
unique ones:

This is a "flat" database - so, I'm trying to group the countries, and then
count the number of unique catagories for each country...


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: SQL Join Problem (Easy ?)

2003-08-04 Thread DeShazo, Jonathan P. (Keane)
>From what you have got there, you should be returning all records from the
customer_levels table, along with the records in inventory that match.  
It sounds like you want all records in the inventory table with
cusomter_level data if it exists. 

You were almost there with the query you have but you put the lock on the
wrong side of the door.  Change your RIGHT OUTER JOIN to a LEFT OUTER JOIN
and you should be all set. 

ps. In case I read this wrong: you can return all inventory records AND all
customer_level data whether they match or not (like a union) by using a full
outer join.

Have a good Monday...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, August 03, 2003 11:50 PM
To: CF-Talk
Subject: SQL Join Problem (Easy ?)


This I bet is easy, but I am not seeing it...

Here is the query:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.inv_id,
customer_levels.price,
customer_levels.id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
RIGHT OUTER JOIN customer_levels on
inventory.service_id = customer_levels.inv_id 
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC




All we need to do is return all the rows right now.  This ends as a four
related subselect...the end result isn't important, simply need the query
returning every option, thus the join attempts.  In review, how do we join
that customer_level table on there so it does't exclude records when there
are no related records in customer_levels, but add multiple rows when there
are.  Example output:

Dispensing Jug Pumps Vol-Pak Valve Only 2. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 2.

Dispensing Jug Pumps Vol-Pak Rack and Valve set 3. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 4. 

Dispensing Jug Pumps Jug pump - Pour & Store #10 2.5000 

Dispensing Jug Pumps Jug pump - Pour & Store #11 

Dispensing Jug Pumps Jug pump - Pour & Store #12 

THANKS!!

Regards,

Eric J. Hoffman

DataStream Connexion
www.datastreamconnexion.com




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: Help with ACCESS and DATES.. Oh The Horror!!

2003-08-04 Thread Jeff - Development
Thanks guys I think I figured it out with your help.

The problem is the time thing. I eliminated the time portion and just
inserted the date without any time and it works perfectly

Jeff

- Original Message - 
From: "Jeff - Development" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 4:38 AM
Subject: Help with ACCESS and DATES.. Oh The Horror!!


> I've got a strange one, its pretty strange to me, maybe not to one of
you...
>
> I insert a date for a record using this set statement
> 
>
> and inside the database the record looks like this
>
> 8/1/2003 2:47:29 AM
>
> There are about 12 entries on this particular date, various times. Easy
> enough. Now I go to query based on a particular date:
>
> 
> 
>
> 
>
> SELECT  *
> FROMcontacts
> WHERE   record_modifieddate = #today#
> 
> 
> #total_calls# Total Calls. 
> -
> I get 0 for results when I should be getting 12. This query doesn't work
> when I use createodbcdate instead of createodbcdatetime. I still get 0.
>
> Heres the weird part... When I query a SPECIFIC time...
>
> -
> 
>
> 
>
> SELECT  *
> FROMcontacts
> WHERE   record_modifieddate = #today#
> 
> 
> #total_calls# Total Calls. 
> --
>
> I get a result of 1. How the heck do I query for an entire day, getting
all
> 12 records on that date There has to be something REAL simple thats
> wrong with my date query..
>
> Thanks..
> Jeff
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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.
http://www.cfhosting.com

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



SQL Join Problem (Easy ?)

2003-08-04 Thread webmaster
This I bet is easy, but I am not seeing it...

Here is the query:

Select 
inventory.service_id,
inventory.service_name,
inventory.service_rate,
inventory.client_id,
inventory.category_id,
client.shortname AS Client_Name,
inventory_category.category_name,
customer_levels.inv_id,
customer_levels.price,
customer_levels.id
from inventory 
JOIN inventory_category on inventory_category.id =
inventory.category_id
JOIN client on client.id = inventory.client_id
RIGHT OUTER JOIN customer_levels on
inventory.service_id = customer_levels.inv_id 
where active = 1 
AND inventory.client_id = 1 
AND customer_levels.customer_id = 20735
order by category_id ASC




All we need to do is return all the rows right now.  This ends as a four
related subselect...the end result isn't important, simply need the query
returning every option, thus the join attempts.  In review, how do we join
that customer_level table on there so it does't exclude records when there
are no related records in customer_levels, but add multiple rows when there
are.  Example output:

Dispensing Jug Pumps Vol-Pak Valve Only 2. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 2.

Dispensing Jug Pumps Vol-Pak Rack and Valve set 3. 

Dispensing Jug Pumps Vol-Pak Rack and Valve set 4. 

Dispensing Jug Pumps Jug pump - Pour & Store #10 2.5000 

Dispensing Jug Pumps Jug pump - Pour & Store #11 

Dispensing Jug Pumps Jug pump - Pour & Store #12 

THANKS!!

Regards,

Eric J. Hoffman

DataStream Connexion
www.datastreamconnexion.com



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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: What the heck is wrong with this Query?

2003-08-04 Thread Turetsky, Seth
Just as a little more detail, since you were grouping your query by one column, the db 
didn't know what to do with the other columns, so like the others said, adding the 
other columns to the 'group by' fixes your error.
But in other cases, you may need to use aggregate functions on fields that you don't 
want grouped, ie MIN, MAX, AVG, COUNT...etc, varies on what db you use

hth,
seth

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 9:45 AM
To: CF-Talk
Subject: RE: What the heck is wrong with this Query?



SELECT DISTINCT PA_COUNTRY, ID, PA_CATEGORY
  FROM papers
  GROUP BY PA_CATEGORY, ID, PA_COUNTRY


will work.

I think that all of the columns in a select distinct need to be in the
groupby also if I remember correctly.

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 9:38 AM
To: CF-Talk
Subject: What the heck is wrong with this Query?


Given a small Access database containing:

ID, PA_COUNTRY, PA_CATEGORY



SELECT DISTINCT PA_COUNTRY, ID, PA_CATEGORY
  FROM papers
  GROUP BY PA_CATEGORY



I get the following error:
You tried to execute a query that does not include the specified expression
'PA_COUNTRY' as part of an aggregate function.

If I remove the "GROUP BY" - it worksbut I need that in there!





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=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:RE: Search engine safe urls

2003-08-04 Thread jlangevin
Are you on IIS?  Perhaps the lockdown tool has been used.  Check the settings in
(usually at this path) c:/winnt/system32/inetsrv/urlscan/urlscan.ini if you can.
I had a problem with SES URLs due to the server not allowing multiple "." in
the URL and the setting in this file was the culprit.

--Jeff
_
Jeff Langevin  
Appalachian Mountain Club
MIS Department   5 Joy Street, Boston,
Massachusetts 02108

Don't judge each day by the harvest you reap, but by the seeds you plant.
--Robert Louis Stevenson



Reply Separator
Subject:RE: Search engine safe urls
Author: [EMAIL PROTECTED]
Date:   8/3/2003 10:50 PM

> I've looked high and low and I can't find an answer that > works so I'm going to ask 
> here. In the release notes for > the updater it says as one of the features fixed:
> Search engine safe URLs of the form *.cfm/* did not work > properly, so a URL such 
> as http:/server/test.cfm/alpha/beta > would not execute test.cfm.
> > Nice statement but I can't find anything more about SES urls, > nothing works and 
> > every attempt I make to get them to work > fails. Is it limited to a single domain 
> > site? Does it need > changes to the XML pages? Does it only work on IIS? Has > 
> > anyone gotten this to work? If so, want to write a paper on > it?

If you're using WebSite, I wouldn't be surprised if this didn't work at all.
You might want to ask Mr. Denny how his web server parses URLs; if you've
got CF hooked up to WebSite via an ISAPI extension (I don't think WebSite
supports ISAPI filters, but I could be wrong), the web server will be
responsible for parsing the URL, I think.

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=subscribe&forumid=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



  1   2   >