For consideration...

2009-12-11 Thread Justin Scott

I'm tired of writing form input validation routines over and over again.
Using CFINPUT and its validation options work great for the front end, but
it's still a pain to write input validation on the server-side, and the
rules between the two can get out of sync, and the built-in validation rules
don't have as much flexibility as server-side rules do.  I'm working on a
project where I have some flexible time to write a new tool and wanted to
see if there would be any interest in the community in a tool defined as
such:

A form library that would allow a form with all of its properties and
validation requirements to be defined in one place (likely a JSON file)
which would then 1) Generate the form for display (optional), 2) provide for
AJAX-based client-side validation, and 3) provide server-side validation.
The core library would have a number of built-in validation options and
allow for new rules to be added as needed without changing the core library
files.

My thought is that this would help speed development by centralizing form
definitions and properties and make input validation on both the client and
server side consistent and reliable without having to constantly write and
rewrite huge blocks of cfif/cfelseif code for each form.

Thoughts?  Opinions?  Bad idea?  Someone already release something that does
this?  If it sounds like something you could use, please let me know.  If
it's pursued, it would be released free for the community to use, but I
don't want to waste time building it if something similar exists or nobody
else could benefit from it.  Any feedback appreciated.


-Justin Scott



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


RE: For consideration...

2009-12-11 Thread Mark Kruger

I like it in principle but what is your idea of ajax based server side
validation... Server side validation needs to always be done prior to the
server uitlizing the inputs (inserting into the DB etc). You can't validate
using an ajax request and THEN submit the form values using a submit
request... You sumbit the form and then validate... Otherwise your
validation is easily circumvented and of no value... Right? Am I missing
something? Are you talking about ajax submissions encorporating validation?

-Mark 


-Original Message-
From: Justin Scott [mailto:jscott-li...@gravityfree.com] 
Sent: Friday, December 11, 2009 4:55 PM
To: cf-talk
Subject: For consideration...


I'm tired of writing form input validation routines over and over again.
Using CFINPUT and its validation options work great for the front end, but
it's still a pain to write input validation on the server-side, and the
rules between the two can get out of sync, and the built-in validation rules
don't have as much flexibility as server-side rules do.  I'm working on a
project where I have some flexible time to write a new tool and wanted to
see if there would be any interest in the community in a tool defined as
such:

A form library that would allow a form with all of its properties and
validation requirements to be defined in one place (likely a JSON file)
which would then 1) Generate the form for display (optional), 2) provide for
AJAX-based client-side validation, and 3) provide server-side validation.
The core library would have a number of built-in validation options and
allow for new rules to be added as needed without changing the core library
files.

My thought is that this would help speed development by centralizing form
definitions and properties and make input validation on both the client and
server side consistent and reliable without having to constantly write and
rewrite huge blocks of cfif/cfelseif code for each form.

Thoughts?  Opinions?  Bad idea?  Someone already release something that does
this?  If it sounds like something you could use, please let me know.  If
it's pursued, it would be released free for the community to use, but I
don't want to waste time building it if something similar exists or nobody
else could benefit from it.  Any feedback appreciated.


-Justin Scott





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


Re: For consideration...

2009-12-11 Thread Kevan Stannard

I haven't tried these but they may be what you are looking for

http://www.validatethis.org/

http://www.validatethis.org/http://thor.riaforge.org/

http://thor.riaforge.org/

2009/12/12 Justin Scott jscott-li...@gravityfree.com


 I'm tired of writing form input validation routines over and over again.
 Using CFINPUT and its validation options work great for the front end, but
 it's still a pain to write input validation on the server-side, and the
 rules between the two can get out of sync, and the built-in validation
 rules
 don't have as much flexibility as server-side rules do.  I'm working on a
 project where I have some flexible time to write a new tool and wanted to
 see if there would be any interest in the community in a tool defined as
 such:

 A form library that would allow a form with all of its properties and
 validation requirements to be defined in one place (likely a JSON file)
 which would then 1) Generate the form for display (optional), 2) provide
 for
 AJAX-based client-side validation, and 3) provide server-side validation.
 The core library would have a number of built-in validation options and
 allow for new rules to be added as needed without changing the core library
 files.

 My thought is that this would help speed development by centralizing form
 definitions and properties and make input validation on both the client and
 server side consistent and reliable without having to constantly write and
 rewrite huge blocks of cfif/cfelseif code for each form.

 Thoughts?  Opinions?  Bad idea?  Someone already release something that
 does
 this?  If it sounds like something you could use, please let me know.  If
 it's pursued, it would be released free for the community to use, but I
 don't want to waste time building it if something similar exists or nobody
 else could benefit from it.  Any feedback appreciated.


 -Justin Scott



 

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


RE: For consideration...

2009-12-11 Thread Justin Scott

 I like it in principle but what is your idea of ajax based
 server side validation... Server side validation needs to

It would use JavaScript to push the form data to a validation routine on the
server before the form is posted to give the user a better experience as a
preferred method.  If JavaScript were disabled then the form would post and
the form data would be run through the validation process on the server as a
fall-back.  It would use the same validation engine for client-side and
server-side so they would always be in sync and follow the same rules and
not be able to be bypassed.


-Justin Scott



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


Re: For consideration...

2009-12-11 Thread James Holmes

The app can do both. The idea is to write one set of server-side
validation routines in CF. The app then uses AJAX to check fields as
the used fills them out, for the benefit of the user; it also checks
them server side on submission to ensure data integrity and prevent
circumvention of the validation routines. A framework to easily apply
the validation at both ends would make it all a low maintenance thing
- the validation need only be written once and can be maintained in
one place.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/12/12 Mark Kruger mkru...@cfwebtools.com:

You can't validate
 using an ajax request and THEN submit the form values using a submit
 request... You sumbit the form and then validate...

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


RE: For consideration...

2009-12-11 Thread Justin Scott

 I haven't tried these but they may be what you are looking for
 http://www.validatethis.org/

That looks very promising and similar to what I had in mind.  I certainly
don't want to reinvent the wheel if this does what it appears to say it
does.  I'll check it out over the weekend and post back.


-Justin Scott



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


RE: For consideration...

2009-12-11 Thread Mark Kruger

Got... Clever. I see exactly what you are getting at. The use of ajax for
client side makes the validation run the exact same routines. 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Friday, December 11, 2009 5:35 PM
To: cf-talk
Subject: Re: For consideration...


The app can do both. The idea is to write one set of server-side validation
routines in CF. The app then uses AJAX to check fields as the used fills
them out, for the benefit of the user; it also checks them server side on
submission to ensure data integrity and prevent circumvention of the
validation routines. A framework to easily apply the validation at both ends
would make it all a low maintenance thing
- the validation need only be written once and can be maintained in one
place.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/12/12 Mark Kruger mkru...@cfwebtools.com:

You can't validate
 using an ajax request and THEN submit the form values using a submit  
request... You sumbit the form and then validate...



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


Re: database table design consideration

2005-12-07 Thread Will Tomlinson
Well, as I just explained to Kiley, off-list, I might be the one who 
understood my teachings wrong.  I've been known to do that.  :)


I think that's the clean way to do it anyway. Linking tables are fun!  :)

Will


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

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

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


RE: database table design consideration

2005-12-07 Thread Andy
Bridge technique is correct, but a single property can only have one type at
a time, so you need to add start and end dates to Prop_type_XREF.

Andy 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 12:35 AM
To: CF-Talk
Subject: Re: database table design consideration

I'm pretty sure that is what I meant with my bridge design.  I, like you,
think that's my only choice in this situation.  I just hate having to deal
with the two extra tables.  This app was very lean and mean, and this just
makes it harder to maintain, IMO.

I was always taught to avoid bridge (or cross ref) tables, because it
usually meant that you designed your data structure poorly.  I understand
that it's unavoidable in some cases, I was hoping that wasn't the case here.

Kiley Simpson wrote:
 Can you have the following tables
 
 PROPERTY
PROP_ID
PROP_NAME
 
 PROPERTY_TYPES
PROPERTY_TYPE_ID
PROPERTY_TYPE_NAME
 
 PROP_TYPE_XREF - This just has the unique id's from the 2 above tables.
PROP_ID
PROPERTY_TYPE_ID
 
 with this you can have unlimited property types per property.
 
 
 At 10:19 PM 12/6/2005, you wrote:
 
So - I have a real estate listings table, and my client wants to add a 
property type field to each listing, such as golf home, ski 
home, village home, mountain condo etc to each of the listings.  
This field will then be used in a quick search set of links that 
will be clickable on each page as an alternative to using the full search
capability.   The problem I am having is how to add this field to the
listings table, because a listing can be more than one property type, 
ie, a golf home in the summer is also a ski home in the winter, etc.
  (It's a resort town)  Now I think I've got a many to many 
relationship, and I want out.

My first thought was to just input the types into a comma delimited 
list and store that in a prop_type field in the listings table, but 
that is just plain ugly to work with, search from, will slow down my
pages, etc.

I then went to a bridge table design, using a prop_type table with an 
prop_type_ID and prop_type_name, then using a bridge table to link the 
three tables together (prop_type_FK, listing_FK, ID)  but that'll be a 
nightmare to maintain in the future.

I'm out of ideas.  Is there a better way to do what I'm trying to do?
Am I stuck?

MySQL 4.x DB, BTW.

Thanks,

Ray


 
 
 



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

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


RE: database table design consideration

2005-12-07 Thread Russ
I took a course or two on database design and I don't remember anyone
teaching us to avoid cross ref tables.  How else do you design a
many-to-many relationship?



-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 12:35 AM
To: CF-Talk
Subject: Re: database table design consideration

--snip--

I was always taught to avoid bridge (or cross ref) tables, because it 
usually meant that you designed your data structure poorly.  I 
understand that it's unavoidable in some cases, I was hoping that wasn't 
the case here.

---snip---


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

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


Re: database table design consideration

2005-12-07 Thread Charlie Griefer
i was taught that if you find yourself with a many-to-many
relationship, just make sure you go back and re-examine whether or not
it's truly necessary.

but if it is necessary (and certainly, many times it is), then you
would do your junction|cross-ref|intersection|whatever table to
facilitate that relationship.

On 12/7/05, Russ [EMAIL PROTECTED] wrote:
 I took a course or two on database design and I don't remember anyone
 teaching us to avoid cross ref tables.  How else do you design a
 many-to-many relationship?



 -Original Message-
 From: Ray Champagne [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 07, 2005 12:35 AM
 To: CF-Talk
 Subject: Re: database table design consideration

 --snip--

 I was always taught to avoid bridge (or cross ref) tables, because it
 usually meant that you designed your data structure poorly.  I
 understand that it's unavoidable in some cases, I was hoping that wasn't
 the case here.

 ---snip---


 

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

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


Re: database table design consideration

2005-12-07 Thread Ray Champagne
Yea, Charlie, I have thought about this since I posted the question last 
night, and I think your synopsis is really what I was taught, and I 
mish-mashed it into my own meaning.  I also think that's why I asked if 
it could be done better, without the many-to-many relationship, maybe I 
was missing a better approach.

Anyhow, you never know if you don't ask, right?  Glad I was set 
straight.  :)

Charlie Griefer wrote:
 i was taught that if you find yourself with a many-to-many
 relationship, just make sure you go back and re-examine whether or not
 it's truly necessary.
 
 but if it is necessary (and certainly, many times it is), then you
 would do your junction|cross-ref|intersection|whatever table to
 facilitate that relationship.
 
 On 12/7/05, Russ [EMAIL PROTECTED] wrote:
 
I took a course or two on database design and I don't remember anyone
teaching us to avoid cross ref tables.  How else do you design a
many-to-many relationship?



-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 07, 2005 12:35 AM
To: CF-Talk
Subject: Re: database table design consideration

--snip--

I was always taught to avoid bridge (or cross ref) tables, because it
usually meant that you designed your data structure poorly.  I
understand that it's unavoidable in some cases, I was hoping that wasn't
the case here.

---snip---



 
 
 

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

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


database table design consideration

2005-12-06 Thread Ray Champagne
So - I have a real estate listings table, and my client wants to add a 
property type field to each listing, such as golf home, ski home, 
village home, mountain condo etc to each of the listings.  This 
field will then be used in a quick search set of links that will be 
clickable on each page as an alternative to using the full search 
capability.   The problem I am having is how to add this field to the 
listings table, because a listing can be more than one property type, 
ie, a golf home in the summer is also a ski home in the winter, etc. 
  (It's a resort town)  Now I think I've got a many to many 
relationship, and I want out.

My first thought was to just input the types into a comma delimited list 
and store that in a prop_type field in the listings table, but that is 
just plain ugly to work with, search from, will slow down my pages, etc.

I then went to a bridge table design, using a prop_type table with an 
prop_type_ID and prop_type_name, then using a bridge table to link the 
three tables together (prop_type_FK, listing_FK, ID)  but that'll be a 
nightmare to maintain in the future.

I'm out of ideas.  Is there a better way to do what I'm trying to do? 
Am I stuck?

MySQL 4.x DB, BTW.

Thanks,

Ray

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

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


Re: database table design consideration

2005-12-06 Thread Kiley Simpson
Can you have the following tables

PROPERTY
   PROP_ID
   PROP_NAME

PROPERTY_TYPES
   PROPERTY_TYPE_ID
   PROPERTY_TYPE_NAME

PROP_TYPE_XREF - This just has the unique id's from the 2 above tables.
   PROP_ID
   PROPERTY_TYPE_ID

with this you can have unlimited property types per property.


At 10:19 PM 12/6/2005, you wrote:
So - I have a real estate listings table, and my client wants to add a
property type field to each listing, such as golf home, ski home,
village home, mountain condo etc to each of the listings.  This
field will then be used in a quick search set of links that will be
clickable on each page as an alternative to using the full search
capability.   The problem I am having is how to add this field to the
listings table, because a listing can be more than one property type,
ie, a golf home in the summer is also a ski home in the winter, etc.
   (It's a resort town)  Now I think I've got a many to many
relationship, and I want out.

My first thought was to just input the types into a comma delimited list
and store that in a prop_type field in the listings table, but that is
just plain ugly to work with, search from, will slow down my pages, etc.

I then went to a bridge table design, using a prop_type table with an
prop_type_ID and prop_type_name, then using a bridge table to link the
three tables together (prop_type_FK, listing_FK, ID)  but that'll be a
nightmare to maintain in the future.

I'm out of ideas.  Is there a better way to do what I'm trying to do?
Am I stuck?

MySQL 4.x DB, BTW.

Thanks,

Ray



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

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


Re: database table design consideration

2005-12-06 Thread Ray Champagne
I'm pretty sure that is what I meant with my bridge design.  I, like 
you, think that's my only choice in this situation.  I just hate having 
to deal with the two extra tables.  This app was very lean and mean, and 
this just makes it harder to maintain, IMO.

I was always taught to avoid bridge (or cross ref) tables, because it 
usually meant that you designed your data structure poorly.  I 
understand that it's unavoidable in some cases, I was hoping that wasn't 
the case here.

Kiley Simpson wrote:
 Can you have the following tables
 
 PROPERTY
PROP_ID
PROP_NAME
 
 PROPERTY_TYPES
PROPERTY_TYPE_ID
PROPERTY_TYPE_NAME
 
 PROP_TYPE_XREF - This just has the unique id's from the 2 above tables.
PROP_ID
PROPERTY_TYPE_ID
 
 with this you can have unlimited property types per property.
 
 
 At 10:19 PM 12/6/2005, you wrote:
 
So - I have a real estate listings table, and my client wants to add a
property type field to each listing, such as golf home, ski home,
village home, mountain condo etc to each of the listings.  This
field will then be used in a quick search set of links that will be
clickable on each page as an alternative to using the full search
capability.   The problem I am having is how to add this field to the
listings table, because a listing can be more than one property type,
ie, a golf home in the summer is also a ski home in the winter, etc.
  (It's a resort town)  Now I think I've got a many to many
relationship, and I want out.

My first thought was to just input the types into a comma delimited list
and store that in a prop_type field in the listings table, but that is
just plain ugly to work with, search from, will slow down my pages, etc.

I then went to a bridge table design, using a prop_type table with an
prop_type_ID and prop_type_name, then using a bridge table to link the
three tables together (prop_type_FK, listing_FK, ID)  but that'll be a
nightmare to maintain in the future.

I'm out of ideas.  Is there a better way to do what I'm trying to do?
Am I stuck?

MySQL 4.x DB, BTW.

Thanks,

Ray


 
 
 

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

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

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


Re: database table design consideration

2005-12-06 Thread Charlie Griefer
i think that'd still be considered a clean design to accomplish what
you want.
if a property record can share more than one property_type, that's the
way to do it (IMHO).

On 12/7/05, Ray Champagne [EMAIL PROTECTED] wrote:
 I'm pretty sure that is what I meant with my bridge design.  I, like
 you, think that's my only choice in this situation.  I just hate having
 to deal with the two extra tables.  This app was very lean and mean, and
 this just makes it harder to maintain, IMO.

 I was always taught to avoid bridge (or cross ref) tables, because it
 usually meant that you designed your data structure poorly.  I
 understand that it's unavoidable in some cases, I was hoping that wasn't
 the case here.

 Kiley Simpson wrote:
  Can you have the following tables
 
  PROPERTY
 PROP_ID
 PROP_NAME
 
  PROPERTY_TYPES
 PROPERTY_TYPE_ID
 PROPERTY_TYPE_NAME
 
  PROP_TYPE_XREF - This just has the unique id's from the 2 above tables.
 PROP_ID
 PROPERTY_TYPE_ID
 
  with this you can have unlimited property types per property.
 
 
  At 10:19 PM 12/6/2005, you wrote:
 
 So - I have a real estate listings table, and my client wants to add a
 property type field to each listing, such as golf home, ski home,
 village home, mountain condo etc to each of the listings.  This
 field will then be used in a quick search set of links that will be
 clickable on each page as an alternative to using the full search
 capability.   The problem I am having is how to add this field to the
 listings table, because a listing can be more than one property type,
 ie, a golf home in the summer is also a ski home in the winter, etc.
   (It's a resort town)  Now I think I've got a many to many
 relationship, and I want out.
 
 My first thought was to just input the types into a comma delimited list
 and store that in a prop_type field in the listings table, but that is
 just plain ugly to work with, search from, will slow down my pages, etc.
 
 I then went to a bridge table design, using a prop_type table with an
 prop_type_ID and prop_type_name, then using a bridge table to link the
 three tables together (prop_type_FK, listing_FK, ID)  but that'll be a
 nightmare to maintain in the future.
 
 I'm out of ideas.  Is there a better way to do what I'm trying to do?
 Am I stuck?
 
 MySQL 4.x DB, BTW.
 
 Thanks,
 
 Ray
 
 
 
 
 

 

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

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

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


RE: database table design consideration

2005-12-06 Thread Dave Watts
 I was always taught to avoid bridge (or cross ref) tables, 
 because it usually meant that you designed your data structure 
 poorly. I understand that it's unavoidable in some cases, I was 
 hoping that wasn't the case here.

That's just crazy talk. You should use intersection tables whenever it's
appropriate, which is pretty often.

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

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


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

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


Re: database table design consideration

2005-12-06 Thread Ray Champagne
Well, as I just explained to Kiley, off-list, I might be the one who 
understood my teachings wrong.  I've been known to do that.  :)

I'll continue on with the bridge, intersection, cross-ref, whatever 
you'd call it.

Thanks for the help all!

Ray

Dave Watts wrote:
I was always taught to avoid bridge (or cross ref) tables, 
because it usually meant that you designed your data structure 
poorly. I understand that it's unavoidable in some cases, I was 
hoping that wasn't the case here.
 
 
 That's just crazy talk. You should use intersection tables whenever it's
 appropriate, which is pretty often.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 
 Fig Leaf Software provides the highest caliber vendor-authorized 
 instruction at our training centers in Washington DC, Atlanta, 
 Chicago, Baltimore, Northern Virginia, or on-site at your location. 
 Visit http://training.figleaf.com/ for more information!
 
 
 

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

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


Re: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-23 Thread Dick Applebaum
Vern

Here's hoping that the next updater (and future updaters) will also  
work on the port to Mac OS X -- so we don't have to reinstall Linux.

Damon Cooper and Brent Baker, of the Macromedia CF RD team, put  
together an updater 1 package that worked great on Mac OS X -- I hope  
this will carried forward to future updaters.

TIA

Dick


On Tuesday, October 22, 2002, at 11:39 AM, Vernon Viehe wrote:

 Hey Maurius,

 Let me highlight some of the text that preceeds the list, and try to  
 elaborate a bit:

 This TechNote provides a summary of *some* of the known issues with  
 Macromedia ColdFusion MX. Fixes for *these* issues are currently being  
 investigated for *potential* inclusion in an upcoming release of the  
 ColdFusion MX Updater. *Inclusion or exclusion* in this list *does not  
 guarantee inclusion or exclusion from future releases* of the  
 ColdFusion MX Updater.

 Basically, this (should?) mean that not all issues reported to us are  
 on this list. These are the ones that have been chosen for  
 consideration in an upcoming updater release. There may be issues  
 included in the updater that aren't listed here. Most importantly,  
 there are other known issues, and we know that many of those issues  
 are very important to the community. Hopefully, issues that didn't  
 make it onto this list for consideration for the next updater will end  
 up on a list for a subsequent updater - but we haven't gotten this one  
 out the door yet, so we haven't firmed up anything beyond what's on  
 this technote.

 If there's an issue you'd like to see addressed as part of an updater,  
 and it's not on this list, you can vote for that issue by turning it  
 in on the feature request form (even if you already have reported it,  
 so do it as a vote. I got this form the horse's mouth, so please do  
 so!) http://www.macromedia.com/support/email/wishform?6213=3

 Thanks!

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com
 -Original Message-
 From: Marius Milosav [mailto:mmilosav;scorpiosoft.com]
 Sent: Tuesday, October 22, 2002 11:31 AM
 To: CF-Talk
 Subject: Re: Known CFMX issues under consideration for upcoming Updater
 releas e


 Is this list the final cut for the next updater?
 I haven't seen any mention for the null problem throw once in a while  
 by
 CFMX server,
 http://webforums.macromedia.com/coldfusion/ 
 messageview.cfm?catid=3threadid=
 410762highlight_key=ykeyword1=null

 Connection reset by peer, error
 http://webforums.macromedia.com/coldfusion/ 
 messageview.cfm?catid=10threadid
 =423645highlight_key=ykeyword1=Connection%20reset%20by%20peer

 cffunctions that should participate in transactions declared outside  
 of the
 function

 All of this issues have been reported (for a couple of months now) and  
 quasi
 acknowledged by MM as bugs

 Thanks
 Marius Milosav
 www.scorpiosoft.com
 It's not about technology, it's about people.
 Virtual Company (VICO) Application Demo
 www.scorpiosoft.com/vicodemo/login.cfm


 - Original Message -
 From: Vernon Viehe [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, October 22, 2002 2:09 PM
 Subject: Known CFMX issues under consideration for upcoming Updater  
 releas e


 TechNote 23464 provides a summary of some of the known issues with
 Macromedia ColdFusion MX. Fixes for these issues are currently being
 investigated for potential inclusion in an upcoming release of the
 ColdFusion MX Updater. Inclusion or exclusion in this list does not
 guarantee inclusion or exclusion from future releases of the  
 ColdFusion MX
 Updater.

 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com




 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-23 Thread Robertson-Ravo, Neil (REC)
Hey Dick,

Do you think MM are serious on porting over to Mac OS X?  even its just in a
developer capacity :-)   (I dont think Macs will ever be a hit on the server
market)

Neil

-Original Message-
From: Dick Applebaum [mailto:dicklacara;mac.com]
Sent: 23 October 2002 09:05
To: CF-Talk
Subject: Re: Known CFMX issues under consideration for upcoming Updater
re leas e


Vern

Here's hoping that the next updater (and future updaters) will also  
work on the port to Mac OS X -- so we don't have to reinstall Linux.

Damon Cooper and Brent Baker, of the Macromedia CF RD team, put  
together an updater 1 package that worked great on Mac OS X -- I hope  
this will carried forward to future updaters.

TIA

Dick


On Tuesday, October 22, 2002, at 11:39 AM, Vernon Viehe wrote:

 Hey Maurius,

 Let me highlight some of the text that preceeds the list, and try to  
 elaborate a bit:

 This TechNote provides a summary of *some* of the known issues with  
 Macromedia ColdFusion MX. Fixes for *these* issues are currently being  
 investigated for *potential* inclusion in an upcoming release of the  
 ColdFusion MX Updater. *Inclusion or exclusion* in this list *does not  
 guarantee inclusion or exclusion from future releases* of the  
 ColdFusion MX Updater.

 Basically, this (should?) mean that not all issues reported to us are  
 on this list. These are the ones that have been chosen for  
 consideration in an upcoming updater release. There may be issues  
 included in the updater that aren't listed here. Most importantly,  
 there are other known issues, and we know that many of those issues  
 are very important to the community. Hopefully, issues that didn't  
 make it onto this list for consideration for the next updater will end  
 up on a list for a subsequent updater - but we haven't gotten this one  
 out the door yet, so we haven't firmed up anything beyond what's on  
 this technote.

 If there's an issue you'd like to see addressed as part of an updater,  
 and it's not on this list, you can vote for that issue by turning it  
 in on the feature request form (even if you already have reported it,  
 so do it as a vote. I got this form the horse's mouth, so please do  
 so!) http://www.macromedia.com/support/email/wishform?6213=3

 Thanks!

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com
 -Original Message-
 From: Marius Milosav [mailto:mmilosav;scorpiosoft.com]
 Sent: Tuesday, October 22, 2002 11:31 AM
 To: CF-Talk
 Subject: Re: Known CFMX issues under consideration for upcoming Updater
 releas e


 Is this list the final cut for the next updater?
 I haven't seen any mention for the null problem throw once in a while  
 by
 CFMX server,
 http://webforums.macromedia.com/coldfusion/ 
 messageview.cfm?catid=3threadid=
 410762highlight_key=ykeyword1=null

 Connection reset by peer, error
 http://webforums.macromedia.com/coldfusion/ 
 messageview.cfm?catid=10threadid
 =423645highlight_key=ykeyword1=Connection%20reset%20by%20peer

 cffunctions that should participate in transactions declared outside  
 of the
 function

 All of this issues have been reported (for a couple of months now) and  
 quasi
 acknowledged by MM as bugs

 Thanks
 Marius Milosav
 www.scorpiosoft.com
 It's not about technology, it's about people.
 Virtual Company (VICO) Application Demo
 www.scorpiosoft.com/vicodemo/login.cfm


 - Original Message -
 From: Vernon Viehe [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, October 22, 2002 2:09 PM
 Subject: Known CFMX issues under consideration for upcoming Updater  
 releas e


 TechNote 23464 provides a summary of some of the known issues with
 Macromedia ColdFusion MX. Fixes for these issues are currently being
 investigated for potential inclusion in an upcoming release of the
 ColdFusion MX Updater. Inclusion or exclusion in this list does not
 guarantee inclusion or exclusion from future releases of the  
 ColdFusion MX
 Updater.

 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com




 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Re: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-23 Thread Dick Applebaum
Neil

I hope MM is looking at a Mac OS X version of CFMX -- at least for 
developers.

I have been told that there isn't a large enough population of Mac OS X 
servers to build a business case for releasing a supported production 
version.

That said, Sybase and Oracle have released their latest db servers to 
run on Mac OS X, and IBM is conducting a survey to see if there is 
enough demand to warrant a DB/2 product for Mac OS X.

So, Sybase, Oracle, and maybe IBM see an opportunity to make money on 
the Mac Server Market.

If IBM decides to release a Mac product, that will mean that 3 of the 
top 4 production databases have Mac products.

I have Sybase and Oracle (and every other JDBC-compliant db I could 
find) running on my TiBook.

I just converted a client's large SQL-Server db to Sybase to see what 
is involved.  As you may know, Sybase and SQL-Server share a common 
ancestry, T/SQL, etc.  There were a few differences, but everything 
works fine, even though everything is running on the same box.  It 
performs well, and makes a very nice demo.

Later, I will do the same exercise with Oracle -- just 'cause I can.

Sybase_ASE, on the Mac, has an interesting feature -- using Rendezvous 
(Apple's zero configuration networking) it can detect and connect  
(with appropriate security) to any Sybase servers that exist on the 
network or wireless.  So, conceivably, you could grab your wireless 
laptop,  dance into a client's office, connect to his production db and 
do a prepared or ad hoc CFMX demo -- no wires, no configuration, no 
fiddling, no nuthin' between you and the presentation

The list of dbs that run on OS X and interface with CFMX include:

MySQL
PostgreSQL
OpenBase
PointBase Embedded
PointBase Server
FrontBase
Xindice
Sybase_ASE
Oracle9i

And to convert existing offline databases to a more robust RDBMS 
suitable for online use, CFMX can interface the following running on 
Mac OS X.

   FileMaker
   MS-Access 97/2000 running under emulation with an interface from 
OpenLink Software.

The Client Sybase db  that I created (mention above) was actually built 
from a MS-Access 97 mdb, with CFMX programs reading the Access db, then 
creating,validating, normalizing the Sybase db (using the same programs 
that created the SQL-Server db, several years ago).

So, with the exception of SQL-Server and DB/2, you can run (pretty 
much) everything you need for a complete CFMX developer system in 
native OS X, on a single box.

It's getting there!

Dick



On Wednesday, October 23, 2002, at 01:26 AM, Robertson-Ravo, Neil (REC) 
wrote:

 Hey Dick,

 Do you think MM are serious on porting over to Mac OS X?  even its 
 just in a
 developer capacity :-)   (I dont think Macs will ever be a hit on the 
 server
 market)

 Neil

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



Re: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-23 Thread Jochem van Dieten
Dick Applebaum wrote:

 That said, Sybase and Oracle have released their latest db servers to
 run on Mac OS X, and IBM is conducting a survey to see if there is
 enough demand to warrant a DB/2 product for Mac OS X.

 So, Sybase, Oracle, and maybe IBM see an opportunity to make money on
 the Mac Server Market.

 If IBM decides to release a Mac product, that will mean that 3 of the
 top 4 production databases have Mac products.

And how many of these depend on an up-to-date JRE being available for 
Mac OS X? Don't they all just depend on POSIX compliance, which is 
pretty much guaranteed giving the FreeBSD roots?

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Vernon Viehe
TechNote 23464 provides a summary of some of the known issues with Macromedia 
ColdFusion MX. Fixes for these issues are currently being investigated for potential 
inclusion in an upcoming release of the ColdFusion MX Updater. Inclusion or exclusion 
in this list does not guarantee inclusion or exclusion from future releases of the 
ColdFusion MX Updater.

http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

Vernon Viehe
ColdFusion Community Manager
Macromedia, Inc.
--
Macromedia Certified Professional
CF blog at http://vvmx.blogspot.com 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Marius Milosav
Is this list the final cut for the next updater?
I haven't seen any mention for the null problem throw once in a while by
CFMX server,
http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid=
410762highlight_key=ykeyword1=null

Connection reset by peer, error
http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=10threadid
=423645highlight_key=ykeyword1=Connection%20reset%20by%20peer

cffunctions that should participate in transactions declared outside of the
function

All of this issues have been reported (for a couple of months now) and quasi
acknowledged by MM as bugs

Thanks
Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm


- Original Message -
From: Vernon Viehe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, October 22, 2002 2:09 PM
Subject: Known CFMX issues under consideration for upcoming Updater releas e


 TechNote 23464 provides a summary of some of the known issues with
Macromedia ColdFusion MX. Fixes for these issues are currently being
investigated for potential inclusion in an upcoming release of the
ColdFusion MX Updater. Inclusion or exclusion in this list does not
guarantee inclusion or exclusion from future releases of the ColdFusion MX
Updater.

 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com


 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-22 Thread Vernon Viehe
Hey Maurius,

Let me highlight some of the text that preceeds the list, and try to elaborate a bit: 

This TechNote provides a summary of *some* of the known issues with Macromedia 
ColdFusion MX. Fixes for *these* issues are currently being investigated for 
*potential* inclusion in an upcoming release of the ColdFusion MX Updater. *Inclusion 
or exclusion* in this list *does not guarantee inclusion or exclusion from future 
releases* of the ColdFusion MX Updater.

Basically, this (should?) mean that not all issues reported to us are on this list. 
These are the ones that have been chosen for consideration in an upcoming updater 
release. There may be issues included in the updater that aren't listed here. Most 
importantly, there are other known issues, and we know that many of those issues are 
very important to the community. Hopefully, issues that didn't make it onto this list 
for consideration for the next updater will end up on a list for a subsequent updater 
- but we haven't gotten this one out the door yet, so we haven't firmed up anything 
beyond what's on this technote.

If there's an issue you'd like to see addressed as part of an updater, and it's not on 
this list, you can vote for that issue by turning it in on the feature request form 
(even if you already have reported it, so do it as a vote. I got this form the 
horse's mouth, so please do so!) 
http://www.macromedia.com/support/email/wishform?6213=3

Thanks!

Vernon Viehe
ColdFusion Community Manager
Macromedia, Inc.
--
Macromedia Certified Professional
CF blog at http://vvmx.blogspot.com 
-Original Message-
From: Marius Milosav [mailto:mmilosav;scorpiosoft.com]
Sent: Tuesday, October 22, 2002 11:31 AM
To: CF-Talk
Subject: Re: Known CFMX issues under consideration for upcoming Updater
releas e


Is this list the final cut for the next updater?
I haven't seen any mention for the null problem throw once in a while by
CFMX server,
http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid=
410762highlight_key=ykeyword1=null

Connection reset by peer, error
http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=10threadid
=423645highlight_key=ykeyword1=Connection%20reset%20by%20peer

cffunctions that should participate in transactions declared outside of the
function

All of this issues have been reported (for a couple of months now) and quasi
acknowledged by MM as bugs

Thanks
Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm


- Original Message -
From: Vernon Viehe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, October 22, 2002 2:09 PM
Subject: Known CFMX issues under consideration for upcoming Updater releas e


 TechNote 23464 provides a summary of some of the known issues with
Macromedia ColdFusion MX. Fixes for these issues are currently being
investigated for potential inclusion in an upcoming release of the
ColdFusion MX Updater. Inclusion or exclusion in this list does not
guarantee inclusion or exclusion from future releases of the ColdFusion MX
Updater.

 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

 Vernon Viehe
 ColdFusion Community Manager
 Macromedia, Inc.
 --
 Macromedia Certified Professional
 CF blog at http://vvmx.blogspot.com


 

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



Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Jesse Houwing
Vernon Viehe wrote:
 TechNote 23464 provides a summary of some of the known issues with Macromedia 
ColdFusion MX. Fixes for these issues are currently being investigated for potential 
inclusion in an upcoming release of the ColdFusion MX Updater. Inclusion or exclusion 
in this list does not guarantee inclusion or exclusion from future releases of the 
ColdFusion MX Updater.
 
 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full
 

* Restarting the coldfusion from the service panel in windows fails, 
because it takes too long to stop and too long to start. (win32)
* Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA (which is much 
faster on x86. The 1.3 version works fine.
* Stopping a server fails if you've changed JVM (restart is required).
* URLSessionFormat, J2ee sessions and IIS won't work together.
* Coldfusion won't start correctly if the server is set to login 
automatically, or if you log it in manually as soon as the login window 
appears (win32)

Didn't see those there. I've submitted them already, but thought you'd 
like to know :)

Jesse

PS These are all listed at 
http://www.cfbughunt.org/index.cfm?fuseaction=list_bugs

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



RE: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Rob Rohan
Ok, I have got to jump in here. He said they are the ones they are *looking
at right now*. If you have 4 developers and all of them are looking at
issues - you can't look at more. He said they know there are more, but these
are the ones they are *looking at right now*.

If we keep bashing and overwhelming them they'll probably communicate less
with us. We have several issues that are not on the list too, but as Vernon
said:

..these issues are currently being investigated for potential inclusion in
an upcoming release of the ColdFusion MX Updater. Inclusion or exclusion in
this list does not guarantee inclusion or exclusion from future releases of
the ColdFusion MX Updater.


-Original Message-
From: Jesse Houwing [mailto:j.houwing;student.utwente.nl]
Sent: Tuesday, October 22, 2002 2:14 PM
To: CF-Talk
Subject: Re: Known CFMX issues under consideration for upcoming Updater
releas e


Vernon Viehe wrote:
 TechNote 23464 provides a summary of some of the known issues with
Macromedia ColdFusion MX. Fixes for these issues are currently being
investigated for potential inclusion in an upcoming release of the
ColdFusion MX Updater. Inclusion or exclusion in this list does not
guarantee inclusion or exclusion from future releases of the ColdFusion MX
Updater.

 http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full


* Restarting the coldfusion from the service panel in windows fails,
because it takes too long to stop and too long to start. (win32)
* Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA (which is much
faster on x86. The 1.3 version works fine.
* Stopping a server fails if you've changed JVM (restart is required).
* URLSessionFormat, J2ee sessions and IIS won't work together.
* Coldfusion won't start correctly if the server is set to login
automatically, or if you log it in manually as soon as the login window
appears (win32)

Didn't see those there. I've submitted them already, but thought you'd
like to know :)

Jesse

PS These are all listed at
http://www.cfbughunt.org/index.cfm?fuseaction=list_bugs


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



Re: Known CFMX issues under consideration for upcoming Updater release

2002-10-22 Thread Todd
* Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA which is much 
faster on x86. The 1.3 version works fine.

Personally, I don't think it's fair to have macromedia support both BEA 
JRocket and Sun's JRE.  Who knows what BEA is smoking and from the quality 
of their products I've dealt in the past, I'd be a little weary.

~Todd

At 11:14 PM 10/22/2002 +0200, you wrote:
Vernon Viehe wrote:
  TechNote 23464 provides a summary of some of the known issues with 
 Macromedia ColdFusion MX. Fixes for these issues are currently being 
 investigated for potential inclusion in an upcoming release of the 
 ColdFusion MX Updater. Inclusion or exclusion in this list does not 
 guarantee inclusion or exclusion from future releases of the ColdFusion 
 MX Updater.
 
  http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full
 

* Restarting the coldfusion from the service panel in windows fails,
because it takes too long to stop and too long to start. (win32)
* Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA (which is much
faster on x86. The 1.3 version works fine.
* Stopping a server fails if you've changed JVM (restart is required).
* URLSessionFormat, J2ee sessions and IIS won't work together.
* Coldfusion won't start correctly if the server is set to login
automatically, or if you log it in manually as soon as the login window
appears (win32)

Didn't see those there. I've submitted them already, but thought you'd
like to know :)

Jesse

PS These are all listed at
http://www.cfbughunt.org/index.cfm?fuseaction=list_bugs


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Jesse Houwing
Rob Rohan wrote:
 Ok, I have got to jump in here. He said they are the ones they are *looking
 at right now*. If you have 4 developers and all of them are looking at
 issues - you can't look at more. He said they know there are more, but these
 are the ones they are *looking at right now*.
 
 If we keep bashing and overwhelming them they'll probably communicate less
 with us. We have several issues that are not on the list too, but as Vernon
 said:
 
 ..these issues are currently being investigated for potential inclusion in
 an upcoming release of the ColdFusion MX Updater. Inclusion or exclusion in
 this list does not guarantee inclusion or exclusion from future releases of
 the ColdFusion MX Updater.

I know, and you're right. I didn't want to bash vernon, or anyone 
working on Coldfusion. I love the product, but there are a few things 
that keep bugging me, and I just love to know what the status on it is. 
sending in 1000 wishforms probably yields to the same results, but I'd 
rather ask these things personally, and over here. Maybe others have 
found simular problems, and maybe solutions.

Jesse



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



RE: Known CFMX issues under consideration for upcoming Updater release

2002-10-22 Thread Joe Eugene
Does MM have plans to support Oracle 9i AS?

Joe

 -Original Message-
 From: Todd [mailto:todd;web-rat.com]
 Sent: Tuesday, October 22, 2002 5:45 PM
 To: CF-Talk
 Subject: Re: Known CFMX issues under consideration for upcoming Updater
 release


 * Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA which is much
 faster on x86. The 1.3 version works fine.

 Personally, I don't think it's fair to have macromedia support both BEA
 JRocket and Sun's JRE.  Who knows what BEA is smoking and from
 the quality
 of their products I've dealt in the past, I'd be a little weary.

 ~Todd

 At 11:14 PM 10/22/2002 +0200, you wrote:
 Vernon Viehe wrote:
   TechNote 23464 provides a summary of some of the known issues with
  Macromedia ColdFusion MX. Fixes for these issues are currently being
  investigated for potential inclusion in an upcoming release of the
  ColdFusion MX Updater. Inclusion or exclusion in this list does not
  guarantee inclusion or exclusion from future releases of the ColdFusion
  MX Updater.
  
   http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full
  
 
 * Restarting the coldfusion from the service panel in windows fails,
 because it takes too long to stop and too long to start. (win32)
 * Coldfusion won't run on JRockit 7.0 (Java 1.4) by BEA (which is much
 faster on x86. The 1.3 version works fine.
 * Stopping a server fails if you've changed JVM (restart is required).
 * URLSessionFormat, J2ee sessions and IIS won't work together.
 * Coldfusion won't start correctly if the server is set to login
 automatically, or if you log it in manually as soon as the login window
 appears (win32)
 
 Didn't see those there. I've submitted them already, but thought you'd
 like to know :)
 
 Jesse
 
 PS These are all listed at
 http://www.cfbughunt.org/index.cfm?fuseaction=list_bugs
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Known CFMX issues under consideration for upcoming Updater re lease

2002-10-22 Thread Vernon Viehe
I know that's been raised here, and it's under consideration, but I don't have any 
information on that yet, sorry. When/if I do...I'll let everyone know.

Thanks,

Vernon Viehe
ColdFusion Community Manager
Macromedia, Inc.
--
Macromedia Certified Professional
CF blog at http://vvmx.blogspot.com 

-Original Message-
From: Joe Eugene [mailto:Jebebox;earthlink.net]
Sent: Tuesday, October 22, 2002 5:45 PM
To: CF-Talk
Subject: RE: Known CFMX issues under consideration for upcoming Updater
release


Does MM have plans to support Oracle 9i AS?

Joe

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Jon Hall
Thank you! Nice to know what is going on.

However...did anyone see this?
Bug 48462: ColdFusion MX URLEncodes special characters in the name
attribute of name=value pairs.

Could someone clarify what this pertains to?
-- 
jon
mailto:jonhall;ozline.net

Tuesday, October 22, 2002, 2:09:34 PM, you wrote:

VV TechNote 23464 provides a summary of some of the known issues with Macromedia 
ColdFusion MX. Fixes for these issues are currently being investigated for potential 
inclusion in an upcoming release
VV of the ColdFusion MX Updater. Inclusion or exclusion in this list does not 
guarantee inclusion or exclusion from future releases of the ColdFusion MX Updater.

VV http://www.macromedia.com/v1/Handlers/index.cfm?ID=23464Method=Full

VV Vernon Viehe
VV ColdFusion Community Manager
VV Macromedia, Inc.
VV --
VV Macromedia Certified Professional
VV CF blog at http://vvmx.blogspot.com 


VV 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



Re: Known CFMX issues under consideration for upcoming Updater re lease

2002-10-22 Thread Doug
I hope it is because that is the database of choice for the Dept of Defense now, 
replacing Sybase,
and MSSQL.  By MM failing to support it, will be curtains for ColdFusion with the DoD 
(Includes the
military services.)

Doug
Oracle DBA



This address is filtered through the open relay database at http://www.ordb.org
and is virus scanned by ANTIVIR
http://www.dwhite.ws
mailto:doug;dwhite.ws

- Original Message -
From: Vernon Viehe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, October 22, 2002 7:51 PM
Subject: RE: Known CFMX issues under consideration for upcoming Updater re lease


| I know that's been raised here, and it's under consideration, but I don't have any 
|information on
that yet, sorry. When/if I do...I'll let everyone know.
|
| Thanks,
|
| Vernon Viehe
| ColdFusion Community Manager
| Macromedia, Inc.
| --
| Macromedia Certified Professional
| CF blog at http://vvmx.blogspot.com
|
| -Original Message-
| From: Joe Eugene [mailto:Jebebox;earthlink.net]
| Sent: Tuesday, October 22, 2002 5:45 PM
| To: CF-Talk
| Subject: RE: Known CFMX issues under consideration for upcoming Updater
| release
|
|
| Does MM have plans to support Oracle 9i AS?
|
| Joe
|
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Known CFMX issues under consideration for upcoming Updater re lease

2002-10-22 Thread Vernon Viehe
I don't know what all the considerations under discussion regarding this might be, 
sorry. But for those who want it, be sure to get your request in - the more the better!

http://www.macromedia.com/support/email/wishform?6213=3

Vernon Viehe
ColdFusion Community Manager
Macromedia, Inc.
--
Macromedia Certified Professional
CF blog at http://vvmx.blogspot.com 

-Original Message-
From: Doug [mailto:doug;dwhite.ws]
Sent: Tuesday, October 22, 2002 6:22 PM
To: CF-Talk
Subject: Re: Known CFMX issues under consideration for upcoming Updater
re lease


I hope it is because that is the database of choice for the Dept of Defense now, 
replacing Sybase,
and MSSQL.  By MM failing to support it, will be curtains for ColdFusion with the DoD 
(Includes the
military services.)

Doug
Oracle DBA



This address is filtered through the open relay database at http://www.ordb.org
and is virus scanned by ANTIVIR
http://www.dwhite.ws
mailto:doug;dwhite.ws

- Original Message -
From: Vernon Viehe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, October 22, 2002 7:51 PM
Subject: RE: Known CFMX issues under consideration for upcoming Updater re lease


| I know that's been raised here, and it's under consideration, but I don't have any 
|information on
that yet, sorry. When/if I do...I'll let everyone know.
|
| Thanks,
|
| Vernon Viehe
| ColdFusion Community Manager
| Macromedia, Inc.
| --
| Macromedia Certified Professional
| CF blog at http://vvmx.blogspot.com
|
| -Original Message-
| From: Joe Eugene [mailto:Jebebox;earthlink.net]
| Sent: Tuesday, October 22, 2002 5:45 PM
| To: CF-Talk
| Subject: RE: Known CFMX issues under consideration for upcoming Updater
| release
|
|
| Does MM have plans to support Oracle 9i AS?
|
| Joe
|
| 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



RE: Known CFMX issues under consideration for upcoming Updater re lease

2002-10-22 Thread Dave Watts
 Does MM have plans to support Oracle 9i AS?

I suspect they will, although I certainly can't speak for them. The latest
version of the DataDirect Connect for JDBC drivers, 3.1, supports Oracle 9i.

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/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Oracle Support for 9i AS (was Re: Known CFMX issues under consideration for upcoming Updater release)

2002-10-22 Thread Samuel Neff
I think the original question was about CFMX for J2EE.  He asked about
support for Oracle 9i AS -- i.e., Application Server.  

This issue has been brought up before and my understanding is that MM
has publicly asked everyone interested in CFMX for J2EE on Oracle to ask
for it via the Wish Form and specifically say if they are interested for
themselves or for clients and how many licenses, etc.  

I guess they're evaluating the costs of migrating to Oracle AS.
Remember there are many other J2EE AS's not support yet, so MM has to
prioritize migration--Oracle before WebLogic?  What about Tomcat? etc.
etc.


Date: Tue, 22 Oct 2002 22:23:27 -0400
From: Dave Watts [EMAIL PROTECTED]
Subject: RE: Known CFMX issues under consideration for upcoming Updater
re lease
Message-ID: [EMAIL PROTECTED]

 Does MM have plans to support Oracle 9i AS?

I suspect they will, although I certainly can't speak for them. The
latest
version of the DataDirect Connect for JDBC drivers, 3.1, supports Oracle
9i.

Dave Watts, CTO, Fig Leaf Software


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Re: Known CFMX issues under consideration for upcoming Updater re lease

2002-10-22 Thread Sean A Corfield
On Tuesday, Oct 22, 2002, at 18:21 US/Pacific, Doug wrote:
 I hope it is because that is the database of choice for the Dept of 
 Defense now, replacing Sybase, and MSSQL.  By MM failing to support 
 it, will be curtains for ColdFusion with the DoD (Includes the 
 military services.)

There's clearly some confusion here - Oracle Database *IS* supported!

 | From: Joe Eugene [mailto:Jebebox;earthlink.net]
 ...
 | Does MM have plans to support Oracle 9i AS?

This is the Oracle Java Application Server. Not the database.

ColdFusion MX has full support for Oracle 9i DATABASE. I myself am 
using 9iR2 installed locally with no problems. I use the Thin Client 
downloaded from Oracle's website. You can also use the native OCI 
drivers (there was a thread about this elsewhere here recently).

The Oracle Application Server is like BEA's WebLogic, IBM's WebSphere, 
Sun's ONE and, of course, our own dear JRun 4. Support for that would 
depend on demand I expect, the same way each of the other platforms was 
approached.

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/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Is the Netscape browser still a consideration?

2002-02-20 Thread DDB Lists

Last time I set up an html mail (2 weeks ago), I had to redo it because
people couldn't read it using their NS 4.5 mail client. Go figure.

- Original Message -
From: Steve Oliver [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 20, 2002 5:24 AM
Subject: RE: Is the Netscape browser still a consideration?


 It's an assumption on my part, looks like everyone else thinks
 differently.

 I guess there could be a few people out there running NS 4.7 on a 75mhz
 computer, not worrying about upgrading anything because it does what
 they need.

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread list peters

hi, i dont like the argument used my some people that if netscape has 5% of
the market, and your site doesnt work for them you will have a 5% drop in
sales.  That assumes that 100% of people that go to your site are buying -
so you would be getting 95% sale rate which is pretty great!

i hear this all the time - and it drives me nuts.

my 2 cents - i make the site viewable in netscape - accepting some weirdo
table problems etc - as long as it can be viewed.

c

 Even if the percentage of users for all wacko browsers is just ... say
 .. 5%.  Are you willing to take a 5% drop in sales for an unknown
 duration?  Like others I not only still see NN3 users... I'm still
 seeing AOL 3 on a site where about 10% of users are on AO-Hell - the
 typical site demographic is an affluent, college-educated, married male
 in his mid-forties.  5-8% is about right for *all* NN users on that site
 right now.

 Bah.

 --Matt Robertson--
 MSB Designs, Inc.
 http://mysecretbase.com
 
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Jim McAtee

CSS is by far the simplest obstacle to overcome.  Detect the browser and use
the appropriate sub/superset of CSS that makes the site palatable.
JavaScript and simple HTML, on the other hand can be a freaking nightmare.
I balance it on development costs vs. the cost of telling N% of visitors
that I could care less if the site looks good to them.  Usually, I opt for
the least expensive solution.  Take a wild guess which one that usually
is...

Jim


- Original Message -
From: Rey Bango [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 10:40 PM
Subject: Re: SOT: Is the Netscape browser still a consideration?


 Hi Howard.

 The CSS issue was one of the main reasons that I started this post. I was
 working on a site and implemented some design elements using styles that
 really enhanced the appearance of the site. I actually did test it out in
 Netscape 6.2 as well as IE 5.5 and both rendered the site beautifully. The
 pain came in when I loaded up Netscape 4.7x. The site was just
 non-functional and it really irritated me. So it prompted me to do some
 homework to determine what other developers were doing.

 Based on the feedback so far, its seems prudent to continue to support
 Netscape. I just wish that a baseline of Netscape 6.0 could be established
 but such a meaningful percentage of NS 4.7 users still out there, it
appears
 that some workarounds will still be needed. Sigh...

 Thanks for your input.

 Rey///

 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, February 20, 2002 12:17 AM
 Subject: RE: SOT: Is the Netscape browser still a consideration?


  The site I mentioned in my previous e-mail is also an RV site. About the
  same traffic. Average age of registered users is 56.
 
  My biggest problem isn't NS users, it's WebTV users.  Currently, we only
 get
  about 1.5 percent WebTV, but I get complaints from them all of the time.
  Not so much design, but a lot of functionality (javascripts, form
  submissions, picture uploads) don't work or don't work as well or work
  inconsistently with WebTV (thought I haven't received a complaint in
 several
  months, so maybe WebTV has improved).
 
  The redesign I'm working on right now looked great in IE. It totally
falls
  apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3
 validated.
  But CSS is a huge problem.  My solution will probably be to do a browser
  redirect and send NS users to a totally stripped down version of the
site.
  It will pretty much be just black text, white background and links and
  forms.  No design. I want to have a site that useable for those 7
percent,
  but with such a small audience, I'm not going to waste a lot of time on
 it.
 
  As far as I'm concerned (and this is just a personal opinion and how I
  approach site building), IE's won.
 
  H.
 
 
 
  -Original Message-
  From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, February 19, 2002 8:09 PM
  To: CF-Talk
  Subject: RE: SOT: Is the Netscape browser still a consideration?
 
 
  We run an RV Classified site with about 40,000 visitors per month.  The
  average age of Rver's is in their early 60's.  Believe it or not, about
  1.5% of our visitors use Netscape 3.0.
 
  We've had to code in FONT tags with the CSS classes so it didn't look
  horrible in NS 3.0
 
  Tom Nunamaker
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, February 19, 2002 10:04 PM
  To: CF-Talk
  Subject: Re: SOT: Is the Netscape browser still a consideration?
 
 
  Here's my .02 cents
 
   I'm leaning towards giving more consideration to the Netscape 6.0 above
  but
  I'm not ready to declare Netscape 4.75 dead. I think there's still about
  10
  percent of the internet users that are using Netscape 4.75. Netscape 6.0
  is
  coming along real nicely and I've seen some users jumping over from IE
  to
  Netscape 6.0.
 
   It would make sense if someone would overlook some of the small design
  differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
  far
  in ignoring some of the glaring layout differences. The clients we work
  with
  generally have no understanding why there's a browser war, why netscape
  4.75
  doesn't support some of the HTML tags as well as IE does and etc. It
  would
  hurt the contractors' reputation if they were to ignore 4.75 as of now.
 
   If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
  there
  are almost zero differences between those versions. It'll make your job
  much
  easier.
 
I have a small site tracking system on my site and every one user in
  about
  10 or 15 users are showing up with a 4.75 version. So I have no choice
  but to
  design sites for 3 different versions. Thus, I'd recommend you do the
  same
  thing.
 
 
 
   For the longest time, I've coded my sites to take into account
   Netscape users but with the ever-dwindling numbers

Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Jim McAtee

A site for which we develop wanted all kinds of whiz-bang neato DHMTL and
all kinds of extraneous crap and enhancements extraordinaire.  We gave it to
them, only supporting IE 5+.  In the last 4 months their traffic is up 40%
to 50%.  Did the Opera and Netscape and AOL 2 users fall away as a result?
Who cares.  Everybody is happy.  Life is good.  Life is simple again.

Jim

- Original Message -
From: Rey Bango [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 9:22 PM
Subject: Re: SOT: Is the Netscape browser still a consideration?


 Nick,

 Great points bud. The main reason that I'm asking the development
community
 is because I wanted to gauge what everyone else was doing. This list has
 such a diverse talent pool that it really gives you a good indication as
to
 new trends in ecommerce development. Notice that we've had varying replies
 that go from one extreme to the next. That's why it was so important to me
 to pose the question here.

 Thanks again for your feedback. Keep it coming.

 Rey...

 - Original Message -
 From: Nick Texidor [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, February 19, 2002 11:06 PM
 Subject: Re: SOT: Is the Netscape browser still a consideration?


  I'm not sure what the general consensus is, but in my opinion, I would
  continue to code for Netscape, and also consider Opera too.  If everyone
  gives up coding for the other browsers, then it's game over,  MS will
  not only own your personal machines, but the internet too!The other
  option of course is those people who don't run IE will simply not return
  to your sites, and from where I sit, I see a few more people looking at
  the alternatives to windows than there were just a few months ago.
 
  I think you need to put the question to your clients, not the
  developers.  Most of the CF list probably wouldn't care a jot if they
  only had to develop for IE.  But their clients may be a little more
  caring!  The last thing you want to do is go to a client and say 'we'll
  code it for IE', only to receive a call a week after it goes live saying
  'my mate said he can't view the site'...  the client isn't going to be
  too happy.  IMHO, code for the biggest market, because people will
  simply not return to your site if the only way they can see it is to
  have to download another browser.
 
  All our sites are tested under different browsers on several platforms.
  We still have clients that use Netscape as their main browser.  We all
  use different browsers internally too, I prefer to use Opera, and
  occasionally Netscape, on Linux, and for the one site that forces me to
  use IE (Internet Banking), I switch on my NT box (although I'm looking
  at switching banks because of this very reason).  Our designers either
  use Netscape or IE, but both on the Mac platform.
 
  Just my thoughts.
 
  N
 
 
 
  Rey Bango wrote:
  
   For the longest time, I've coded my sites to take into account
Netscape
   users but with the ever-dwindling numbers of Navigator afficianados
and
 IE's
   continued growth, I've been wondering if I should even bother worrying
 about
   whether my sites work with Netscape.
  
   Since this has been one of my best resources for info and some of the
 most
   talented and savvy people that I've met post to CF-Talk, I was hoping
 that I
   could get some good feedback.
  
   So, if we consider that the apps that I'm developing will be geared
 towards
   the Internet consumer at large and I won't have the luxury of
developing
 for
   a controlled environment like a corporate intranet, I beg the
question:
  
   Should I continue to worry about Netscape? If so, which version should
 serve
   as a baseline?
  
   Looking forward to your responses.
  
   C-ya,
  
   Rey...
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is the Netscape browser still a consideration?

2002-02-20 Thread Jochem van Dieten

DDB Lists wrote:
 Last time I set up an html mail (2 weeks ago), I had to redo it because
 people couldn't read it using their NS 4.5 mail client. Go figure.

I usually store HTML mail in /dev/null. Go figure ;)

Jochem
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is the Netscape browser still a consideration?

2002-02-20 Thread Pete Ruckelshaus

Ugh.  I am fighting this battle right now at work.

I hate the fact that instead of being able to code a standards-compliant web
site (which would allow me to focus most of my attention on actually
building the application), I have to employ hacks and workarounds just so I
can support the 8% of our site users that are using a browser whose lineage
dates back 4.5+ years (Netscape 4.0 came out in June 1997).  CSS standards?
Nope.  Predictable HTML output?  Nope.  Yet the situation at my current
employer demands nothing less -- too few people to do too much work.  By
being able to focus on standards rather than workarounds, we can get much
more work done in less time.  Don't like the way the site looks in Netscape
4.08?  Upgrade your browser, plain and simple...much better ones exist.

I am pushing towards only supporting browsers based upon what their
standards support is.  HTML 4.01 and CSS1 full (OK, 95%) compliance is what
I would like, which pretty much includes MSIE 4+, Mozilla, NS 6+, and Opera.

Personally, I think all browsers should time bomb after 2 years, so that
users are forced to upgrade from time to time.

Pete

- Original Message -
From: Rey Bango [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 10:42 PM
Subject: SOT: Is the Netscape browser still a consideration?


 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and
IE's
 continued growth, I've been wondering if I should even bother worrying
about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that
I
 could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
towards
 the Internet consumer at large and I won't have the luxury of developing
for
 a controlled environment like a corporate intranet, I beg the question:

 Should I continue to worry about Netscape? If so, which version should
serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...

 
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Mike Alberts

I just had to get in on this one ...

While there really isn't much debating that the browser war is over (which
is as much Netscape's fault for releasing junk as it is Microsoft's for
predatory practices), IMHO anyone that doesn't account for some 4.x version
of Netscape when developing sites (intranets aside of course) is just being
lazy and not doing their job. Those of us that have been developing for a
fair amount of time have been fighting with this since day one. It's called
site usability.

We as developers I think tend to get tunnel vision. Just because we are
technically adept we think that the average person is as well. The reality
is that the average joe on the web just wants to read his email, find a good
deal on Ebay, do a little research on products, and keep up with his/her
favorite hobbies, and read the latest news. And he/she is doing it on a 56k
modem. They don't care if they have the latest and greatest browser. What
they have is working (as far as they know), and they don't want to wait for
4 hours to download the latest piece of bloatware.

I for one am all for standards. It would be great if we didn't have this
mess to deal with. But then there's reality. The reality is we have had to
deal with this for years, and it isn't going away for awhile. While it is
part of our job description to keep up with technology, the average person
just doesn't want to deal with the headaches. There are millions of people
still using older browsers at 800x600 (and even 640x480) resolution. If
developers spent a little more time making their sites usable for the
average person, instead of incorporating all this Flash and fancy imagery
and DHTML and all this other stuff that people don't want to wait 5 minutes
to download, the web would be a better place for everyone. Granted, these
things have their place, and their time will come, but not until the average
user is using something a little better than a simple dialup connection. And
I don't see that happening anytime too soon. People just want to find their
information, they don't want to wait all day for it to download, and they
want it to be viewable with the browser they are using. not the one the
developer tells them they need.

The internet worked fine when it was a bunch of geeks writing basic HTML,
and just because the world of print and multimedia designers on their
Macintosh computers decided that we could do all this fancy design and Flash
and all this other wiz bang stuff doesn't mean that it's necessarily the
right thing to do.

My .02, and sorry for ranting

Mike Alberts

 Tue, 19 Feb 2002 22:42:59 -0500
 From: Rey Bango [EMAIL PROTECTED]
 Subject: SOT: Is the Netscape browser still a consideration?
 Message-ID: 019b01c1b9c0$b18928a0$[EMAIL PROTECTED]

 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and
IE's
 continued growth, I've been wondering if I should even bother worrying
about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that
I
 could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
towards
 the Internet consumer at large and I won't have the luxury of developing
for
 a controlled environment like a corporate intranet, I beg the question:

 Should I continue to worry about Netscape? If so, which version should
serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Matt Robertson

Yes, I understand the argument is flawed, but the root idea is sound.
You can't place barriers to usability without paying some sort of
penalty.  Mike Alberts post is right on with this, imho.

--Matt--

From: list peters [mailto:[EMAIL PROTECTED]] 
hi, i dont like the argument used my some people that if netscape has 5%
of the market, and your site doesnt work for them you will have a 5%
drop in sales.  That assumes that 100% of people that go to your site
are buying - so you would be getting 95% sale rate which is pretty
great!
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread jon

We get the same thing from our WebTV users... also a small, but vocal
percentage.

I've also noticed a drop in complaints, though. My impression is that the
latest version of WebTV can support Java and whatnot pretty well, but I'm
not sure if it's even being sold anymore. The price of regular PC's has come
down so low that one wonders why anyone would buy a clumsy device like a
webtv.

-- jon

-
jon roig
online community services manager
epilepsy foundation
tel:   215.850.0710
site:  http://www.epilepsyfoundation.org
email: [EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 20, 2002 12:17 AM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?


The site I mentioned in my previous e-mail is also an RV site. About the
same traffic. Average age of registered users is 56.

My biggest problem isn't NS users, it's WebTV users.  Currently, we only get
about 1.5 percent WebTV, but I get complaints from them all of the time.
Not so much design, but a lot of functionality (javascripts, form
submissions, picture uploads) don't work or don't work as well or work
inconsistently with WebTV (thought I haven't received a complaint in several
months, so maybe WebTV has improved).

The redesign I'm working on right now looked great in IE. It totally falls
apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3 validated.
But CSS is a huge problem.  My solution will probably be to do a browser
redirect and send NS users to a totally stripped down version of the site.
It will pretty much be just black text, white background and links and
forms.  No design. I want to have a site that useable for those 7 percent,
but with such a small audience, I'm not going to waste a lot of time on it.

As far as I'm concerned (and this is just a personal opinion and how I
approach site building), IE's won.

H.



-Original Message-
From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 8:09 PM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?


We run an RV Classified site with about 40,000 visitors per month.  The
average age of Rver's is in their early 60's.  Believe it or not, about
1.5% of our visitors use Netscape 3.0.

We've had to code in FONT tags with the CSS classes so it didn't look
horrible in NS 3.0

Tom Nunamaker

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 10:04 PM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


Here's my .02 cents

 I'm leaning towards giving more consideration to the Netscape 6.0 above
but
I'm not ready to declare Netscape 4.75 dead. I think there's still about
10
percent of the internet users that are using Netscape 4.75. Netscape 6.0
is
coming along real nicely and I've seen some users jumping over from IE
to
Netscape 6.0.

 It would make sense if someone would overlook some of the small design
differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
far
in ignoring some of the glaring layout differences. The clients we work
with
generally have no understanding why there's a browser war, why netscape
4.75
doesn't support some of the HTML tags as well as IE does and etc. It
would
hurt the contractors' reputation if they were to ignore 4.75 as of now.

 If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
there
are almost zero differences between those versions. It'll make your job
much
easier.

  I have a small site tracking system on my site and every one user in
about
10 or 15 users are showing up with a 4.75 version. So I have no choice
but to
design sites for 3 different versions. Thus, I'd recommend you do the
same
thing.



 For the longest time, I've coded my sites to take into account
 Netscape users but with the ever-dwindling numbers of Navigator
 afficianados and IE's continued growth, I've been wondering if I
 should even bother worrying about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the
 most talented and savvy people that I've met post to CF-Talk, I was
 hoping that I could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
 towards the Internet consumer at large and I won't have the luxury of
 developing for a controlled environment like a corporate intranet, I
 beg the question:

 Should I continue to worry about Netscape? If so, which version should
 serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...


Nathaniel Horwitz
mailto:[EMAIL PROTECTED]
AIM: NRHorwitz
Fax: 510-573-2298
Web Site: http://www.nathanielhorwitz.com

 What separates winning from losing is the head. The brain sometimes
doesn't
believe in the power of the body






__
Why Share?
  Dedicated Win 2000 Server

RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Matthew R. Small

One more opinion about browsers -
Somebody needs to raise the bar.  If we all coded using present
W3C standards and 5-10% of the population can't view it properly, then
that's their fault, not the coder's.  Not everybody can always use the
latest and greatest features, but they should be forced to at some
point, shouldn't they?  The way I see it, those viewers using netscape
4.x and lower should be forced to deal with crappy pages, unusable
javascript, and non-functioning CSS.  It might persuade them to upgrade
to a browser which works, AND is free as well.  Progress waits for
nobody.

- Matt Small



-Original Message-
From: jon [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, February 20, 2002 9:23 AM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?

We get the same thing from our WebTV users... also a small, but vocal
percentage.

I've also noticed a drop in complaints, though. My impression is that
the
latest version of WebTV can support Java and whatnot pretty well, but
I'm
not sure if it's even being sold anymore. The price of regular PC's has
come
down so low that one wonders why anyone would buy a clumsy device like a
webtv.

-- jon

-
jon roig
online community services manager
epilepsy foundation
tel:   215.850.0710
site:  http://www.epilepsyfoundation.org
email: [EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 20, 2002 12:17 AM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?


The site I mentioned in my previous e-mail is also an RV site. About the
same traffic. Average age of registered users is 56.

My biggest problem isn't NS users, it's WebTV users.  Currently, we only
get
about 1.5 percent WebTV, but I get complaints from them all of the time.
Not so much design, but a lot of functionality (javascripts, form
submissions, picture uploads) don't work or don't work as well or work
inconsistently with WebTV (thought I haven't received a complaint in
several
months, so maybe WebTV has improved).

The redesign I'm working on right now looked great in IE. It totally
falls
apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3
validated.
But CSS is a huge problem.  My solution will probably be to do a browser
redirect and send NS users to a totally stripped down version of the
site.
It will pretty much be just black text, white background and links and
forms.  No design. I want to have a site that useable for those 7
percent,
but with such a small audience, I'm not going to waste a lot of time on
it.

As far as I'm concerned (and this is just a personal opinion and how I
approach site building), IE's won.

H.



-Original Message-
From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 8:09 PM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?


We run an RV Classified site with about 40,000 visitors per month.  The
average age of Rver's is in their early 60's.  Believe it or not, about
1.5% of our visitors use Netscape 3.0.

We've had to code in FONT tags with the CSS classes so it didn't look
horrible in NS 3.0

Tom Nunamaker

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 10:04 PM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


Here's my .02 cents

 I'm leaning towards giving more consideration to the Netscape 6.0 above
but
I'm not ready to declare Netscape 4.75 dead. I think there's still about
10
percent of the internet users that are using Netscape 4.75. Netscape 6.0
is
coming along real nicely and I've seen some users jumping over from IE
to
Netscape 6.0.

 It would make sense if someone would overlook some of the small design
differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
far
in ignoring some of the glaring layout differences. The clients we work
with
generally have no understanding why there's a browser war, why netscape
4.75
doesn't support some of the HTML tags as well as IE does and etc. It
would
hurt the contractors' reputation if they were to ignore 4.75 as of now.

 If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
there
are almost zero differences between those versions. It'll make your job
much
easier.

  I have a small site tracking system on my site and every one user in
about
10 or 15 users are showing up with a 4.75 version. So I have no choice
but to
design sites for 3 different versions. Thus, I'd recommend you do the
same
thing.



 For the longest time, I've coded my sites to take into account
 Netscape users but with the ever-dwindling numbers of Navigator
 afficianados and IE's continued growth, I've been wondering if I
 should even bother worrying about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the
 most talented and savvy people

RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Haggerty, Michael A.

Does anyone remember the CF_FIX_NETSCAPE tag that was in the developer's
gallery a few years ago? Reported to fix all problems with Netscape, it
would check to see what browser you were using and, if it was netscape, it
could issue a CF_ABORT tag. 

I have written Allaire and now Macromedia many times asking for this to
become a native feature of the product.

Seriously, a Web site should be compliant with various browsers as dictated
by their user community. I am responsible for eight sites in three
government agencies right now; five of those sites are IE preferred (meaning
we design exclusively for IE), because less than 1% of the hits each month
come from browsers other than IE. On the other hand, at another unnamed govt
agency, the standard Web browser is NS 3. 95% of users have it and use it
daily. 

Mike

-Original Message-
From: Mike Alberts [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 20, 2002 7:46 AM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


I just had to get in on this one ...

While there really isn't much debating that the browser war is over (which
is as much Netscape's fault for releasing junk as it is Microsoft's for
predatory practices), IMHO anyone that doesn't account for some 4.x version
of Netscape when developing sites (intranets aside of course) is just being
lazy and not doing their job. Those of us that have been developing for a
fair amount of time have been fighting with this since day one. It's called
site usability.

We as developers I think tend to get tunnel vision. Just because we are
technically adept we think that the average person is as well. The reality
is that the average joe on the web just wants to read his email, find a good
deal on Ebay, do a little research on products, and keep up with his/her
favorite hobbies, and read the latest news. And he/she is doing it on a 56k
modem. They don't care if they have the latest and greatest browser. What
they have is working (as far as they know), and they don't want to wait for
4 hours to download the latest piece of bloatware.

I for one am all for standards. It would be great if we didn't have this
mess to deal with. But then there's reality. The reality is we have had to
deal with this for years, and it isn't going away for awhile. While it is
part of our job description to keep up with technology, the average person
just doesn't want to deal with the headaches. There are millions of people
still using older browsers at 800x600 (and even 640x480) resolution. If
developers spent a little more time making their sites usable for the
average person, instead of incorporating all this Flash and fancy imagery
and DHTML and all this other stuff that people don't want to wait 5 minutes
to download, the web would be a better place for everyone. Granted, these
things have their place, and their time will come, but not until the average
user is using something a little better than a simple dialup connection. And
I don't see that happening anytime too soon. People just want to find their
information, they don't want to wait all day for it to download, and they
want it to be viewable with the browser they are using. not the one the
developer tells them they need.

The internet worked fine when it was a bunch of geeks writing basic HTML,
and just because the world of print and multimedia designers on their
Macintosh computers decided that we could do all this fancy design and Flash
and all this other wiz bang stuff doesn't mean that it's necessarily the
right thing to do.

My .02, and sorry for ranting

Mike Alberts

 Tue, 19 Feb 2002 22:42:59 -0500
 From: Rey Bango [EMAIL PROTECTED]
 Subject: SOT: Is the Netscape browser still a consideration?
 Message-ID: 019b01c1b9c0$b18928a0$[EMAIL PROTECTED]

 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and
IE's
 continued growth, I've been wondering if I should even bother worrying
about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that
I
 could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
towards
 the Internet consumer at large and I won't have the luxury of developing
for
 a controlled environment like a corporate intranet, I beg the question:

 Should I continue to worry about Netscape? If so, which version should
serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona

RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Steve Oliver

People just want to find their 
information, they don't want to wait all day for it to download, and
they
want it to be viewable with the browser they are using. not the one the
developer tells them they need.

Most of the time it's not up to the developer anyways.  We go by what
the client wants on their site.

If they say they want a flash intro, so be it.

Anyways, I couldn't imagine a web without pictures and flash and dhtml,
it would be like a magazine with nothing but text inside.

__
steve oliver
atnet solutions, inc.
http://www.atnetsolutions.com


-Original Message-
From: Mike Alberts [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, February 20, 2002 7:46 AM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


I just had to get in on this one ...

While there really isn't much debating that the browser war is over
(which
is as much Netscape's fault for releasing junk as it is Microsoft's for
predatory practices), IMHO anyone that doesn't account for some 4.x
version
of Netscape when developing sites (intranets aside of course) is just
being
lazy and not doing their job. Those of us that have been developing for
a
fair amount of time have been fighting with this since day one. It's
called
site usability.

We as developers I think tend to get tunnel vision. Just because we are
technically adept we think that the average person is as well. The
reality
is that the average joe on the web just wants to read his email, find a
good
deal on Ebay, do a little research on products, and keep up with his/her
favorite hobbies, and read the latest news. And he/she is doing it on a
56k
modem. They don't care if they have the latest and greatest browser.
What
they have is working (as far as they know), and they don't want to wait
for
4 hours to download the latest piece of bloatware.

I for one am all for standards. It would be great if we didn't have this
mess to deal with. But then there's reality. The reality is we have had
to
deal with this for years, and it isn't going away for awhile. While it
is
part of our job description to keep up with technology, the average
person
just doesn't want to deal with the headaches. There are millions of
people
still using older browsers at 800x600 (and even 640x480) resolution. If
developers spent a little more time making their sites usable for the
average person, instead of incorporating all this Flash and fancy
imagery
and DHTML and all this other stuff that people don't want to wait 5
minutes
to download, the web would be a better place for everyone. Granted,
these
things have their place, and their time will come, but not until the
average
user is using something a little better than a simple dialup connection.
And
I don't see that happening anytime too soon. People just want to find
their
information, they don't want to wait all day for it to download, and
they
want it to be viewable with the browser they are using. not the one the
developer tells them they need.

The internet worked fine when it was a bunch of geeks writing basic
HTML,
and just because the world of print and multimedia designers on their
Macintosh computers decided that we could do all this fancy design and
Flash
and all this other wiz bang stuff doesn't mean that it's necessarily the
right thing to do.

My .02, and sorry for ranting

Mike Alberts

 Tue, 19 Feb 2002 22:42:59 -0500
 From: Rey Bango [EMAIL PROTECTED]
 Subject: SOT: Is the Netscape browser still a consideration?
 Message-ID: 019b01c1b9c0$b18928a0$[EMAIL PROTECTED]

 For the longest time, I've coded my sites to take into account
Netscape
 users but with the ever-dwindling numbers of Navigator afficianados
and
IE's
 continued growth, I've been wondering if I should even bother worrying
about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the
most
 talented and savvy people that I've met post to CF-Talk, I was hoping
that
I
 could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
towards
 the Internet consumer at large and I won't have the luxury of
developing
for
 a controlled environment like a corporate intranet, I beg the
question:

 Should I continue to worry about Netscape? If so, which version should
serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar

Re: Is the Netscape browser still a consideration?

2002-02-20 Thread Jon Hall

Here are some stats from a very large site, that appeals to a the general
population for this month so far. Took forever to genereate this report in
LiveStats... The numbers should speak for themselves. These are Livestat
session numbers, not hits or page views.
Analysis for the Month of Feb, 2002.

 Total sessions served during period : 801025

Most active browsers by type and version:
  MSIE 5.x   with   296141   sessions   (37.11% of all sessions)
  Netscape 4.x   with   290926   sessions   (36.45% of all sessions)
  AOL 4.x   with   98844   sessions   (12.39% of all sessions)
  Netscape 3.x   with   35885   sessions   (4.50% of all sessions)
  AOL 5.x   with   20564   sessions   (2.58% of all sessions)
  Netscape 5.x   with   16109   sessions   (2.02% of all sessions)
  Unknown   with   11594   sessions   (1.45% of all sessions)
  MSProxy 2.x   with   9699   sessions   (1.22% of all sessions)
  Opera 3.x   with   8388   sessions   (1.05% of all sessions)
  MSIE 4.x   with   7699   sessions   (0.96% of all sessions)
  WebTV 2.x   with   1321   sessions   (0.17% of all sessions)
  Netscape 2.x   with   326   sessions   (0.04% of all sessions)
  WebTV 1.x   with   242   sessions   (0.03% of all sessions)
  AOL 3.x   with   145   sessions   (0.02% of all sessions)
  MSIE 3.x   with   142   sessions   (0.02% of all sessions)
  Lotus-Notes   with   18   sessions   (0.00% of all sessions)
  MSIE 2.x   with   13   sessions   (0.00% of all sessions)
  Netscape 1.x   with   12   sessions   (0.00% of all sessions)
  MSProxy 1.x   with   8   sessions   (0.00% of all sessions)
  Opera 4.x   with   3   sessions   (0.00% of all sessions)
  MSIE 1.x   with   1   sessions   (0.00% of all sessions)

View Browsers by Agent Type Report
Most browsers by brand preference:
  MSIE   with   537034   sessions   (67.21% of all sessions)
  AOL   with   119672   sessions   (14.98% of all sessions)
  Netscape   with   46   sessions   (13.91% of all sessions)
  Other   with   11524   sessions   (1.44% of all sessions)
  MSProxy   with   9716   sessions   (1.22% of all sessions)
  Opera   with   8410   sessions   (1.05% of all sessions)
  WebTV   with   1563   sessions   (0.20% of all sessions)
  Lotus-Notes   with   18   sessions   (0.00% of all sessions)

Notice Netscape 6 (listed as 5) is more popular than WebTV, Opera, or IE4...

jon

- Original Message -
From: Rey Bango [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 10:42 PM
Subject: SOT: Is the Netscape browser still a consideration?


 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and
IE's
 continued growth, I've been wondering if I should even bother worrying
about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that
I
 could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
towards
 the Internet consumer at large and I won't have the luxury of developing
for
 a controlled environment like a corporate intranet, I beg the question:

 Should I continue to worry about Netscape? If so, which version should
serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...

 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Yager, Brian T Contractor/NCCIM

I would like to chime in on this topic...I have several sites that I have to
maintain (I do government work) that I did not write.  They were written using
layers and HEAVY on javascript.  When Netscape 6 was loaded on many of the new
machines, the sites stopped working.  I visited many javascript sites asking
about Netscape 6 and they all told me that NS 6 is awfull.  Based on what all of
you are saying, you love it.  I am part of a team that sets standards for web
development (for my organization).  We are looking at NS6 and what we should do
about it.  I value this lists opinion and would like to hear from you.  Do any
of you have problems using NS6 and javascript?  

Thanks,


Brian Yager
President - North AL Cold Fusion Users Group
Sr. Systems Analyst
NCCIM/CIC
[EMAIL PROTECTED]
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Jon Hall

You are opening a can of worms here I believe, but Netscape has no problem
with Javascript. Especially since Netscape invented Javascript, I imagine
they can do whatever they want with it. It's web site authors that write
code for proprietary DOM's (read: IE) that are the reason some sites do not
work.

I view Netscape 6 compatibility as forwards compatibility, as do many
others. We are finally moving towards standards and Netscape 6.x is on the
forefront of the standards movement. I'd also just like to mention that
Netscape 6.0 or 6.2 are really not representative of what Netscape 6.x will
be by April. Whatever the next version will be numbered, it's going to knock
the socks off of a lot of people...

jon
- Original Message -
From: Yager, Brian T Contractor/NCCIM [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 20, 2002 10:10 AM
Subject: RE: SOT: Is the Netscape browser still a consideration?


 I would like to chime in on this topic...I have several sites that I have
to
 maintain (I do government work) that I did not write.  They were written
using
 layers and HEAVY on javascript.  When Netscape 6 was loaded on many of the
new
 machines, the sites stopped working.  I visited many javascript sites
asking
 about Netscape 6 and they all told me that NS 6 is awfull.  Based on what
all of
 you are saying, you love it.  I am part of a team that sets standards for
web
 development (for my organization).  We are looking at NS6 and what we
should do
 about it.  I value this lists opinion and would like to hear from you.  Do
any
 of you have problems using NS6 and javascript?

 Thanks,

__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Robert Everland

This gets discussed every couple of months. Everyone will decide to do what
they want to do. My little tidbit I mention every couple months is this. Aol
bought Netscape for a reason. It's not becuase it had a cool name. They plan
on doing something with it one day, and if the Microsoft AOL battle keeps up
the way you do and us developers are not ready, the people who plan to be
cross browser compatible will be the ones with the leg up. It can't hurt to
fix your code now, and it will give you more experience. Some jobs say hey
screw netscape users, others say we need to keep it up. No one will win
until it's too late. If all of a sudden 30 million internet users who once
used IE5 with thier packaged software started using Netscape 6, how would
your site work?

Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire

-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 20, 2002 10:27 AM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


You are opening a can of worms here I believe, but Netscape has no problem
with Javascript. Especially since Netscape invented Javascript, I imagine
they can do whatever they want with it. It's web site authors that write
code for proprietary DOM's (read: IE) that are the reason some sites do not
work.

I view Netscape 6 compatibility as forwards compatibility, as do many
others. We are finally moving towards standards and Netscape 6.x is on the
forefront of the standards movement. I'd also just like to mention that
Netscape 6.0 or 6.2 are really not representative of what Netscape 6.x will
be by April. Whatever the next version will be numbered, it's going to knock
the socks off of a lot of people...

jon
- Original Message -
From: Yager, Brian T Contractor/NCCIM [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 20, 2002 10:10 AM
Subject: RE: SOT: Is the Netscape browser still a consideration?


 I would like to chime in on this topic...I have several sites that I have
to
 maintain (I do government work) that I did not write.  They were written
using
 layers and HEAVY on javascript.  When Netscape 6 was loaded on many of the
new
 machines, the sites stopped working.  I visited many javascript sites
asking
 about Netscape 6 and they all told me that NS 6 is awfull.  Based on what
all of
 you are saying, you love it.  I am part of a team that sets standards for
web
 development (for my organization).  We are looking at NS6 and what we
should do
 about it.  I value this lists opinion and would like to hear from you.  Do
any
 of you have problems using NS6 and javascript?

 Thanks,


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Jeffry Houser


Most of the time it's not up to the developer anyways.  We go by what
the client wants on their site.

If they say they want a flash intro, so be it.

Anyways, I couldn't imagine a web without pictures and flash and dhtml,
it would be like a magazine with nothing but text inside.

  It sounds like heaven..

  I surfed on a VMS Vax system using the lynx browser in my college 
years.  It didn't support in-line images.  It was wicked fast.
  I used to surf in Navigator 3 with images off.  Then people started using 
things like graphical navigation ( with no alt tags ) and...  well, it 
makes sites impossible to navigate.



--
Jeffry Houser | mailto:[EMAIL PROTECTED]
Need a Web Developer?  Contact me!
AIM: Reboog711  | Fax / Phone: 860-223-7946
--
My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread John B. White

Why not bring in some users and do some usability testing?  The previous solution
of creating a stripped down site for NS 4.x browsers seemed viable so long as the
customer (who paid for the development after all) still uses the site.  My father
doesn't like bells and whistles and he loved when I showed him how to turn off all
the 'fluff'.

--JW

Who, btw, uses 4.78 as my mail client and primary web client, with IE 6 as the
back up.  Can't beat that IMAP implementation.

Rey Bango wrote:

 Hi Howard.

 The CSS issue was one of the main reasons that I started this post. I was
 working on a site and implemented some design elements using styles that
 really enhanced the appearance of the site. I actually did test it out in
 Netscape 6.2 as well as IE 5.5 and both rendered the site beautifully. The
 pain came in when I loaded up Netscape 4.7x. The site was just
 non-functional and it really irritated me. So it prompted me to do some
 homework to determine what other developers were doing.

 Based on the feedback so far, its seems prudent to continue to support
 Netscape. I just wish that a baseline of Netscape 6.0 could be established
 but such a meaningful percentage of NS 4.7 users still out there, it appears
 that some workarounds will still be needed. Sigh...

 Thanks for your input.

 Rey///

 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, February 20, 2002 12:17 AM
 Subject: RE: SOT: Is the Netscape browser still a consideration?

  The site I mentioned in my previous e-mail is also an RV site. About the
  same traffic. Average age of registered users is 56.
 
  My biggest problem isn't NS users, it's WebTV users.  Currently, we only
 get
  about 1.5 percent WebTV, but I get complaints from them all of the time.
  Not so much design, but a lot of functionality (javascripts, form
  submissions, picture uploads) don't work or don't work as well or work
  inconsistently with WebTV (thought I haven't received a complaint in
 several
  months, so maybe WebTV has improved).
 
  The redesign I'm working on right now looked great in IE. It totally falls
  apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3
 validated.
  But CSS is a huge problem.  My solution will probably be to do a browser
  redirect and send NS users to a totally stripped down version of the site.
  It will pretty much be just black text, white background and links and
  forms.  No design. I want to have a site that useable for those 7 percent,
  but with such a small audience, I'm not going to waste a lot of time on
 it.
 
  As far as I'm concerned (and this is just a personal opinion and how I
  approach site building), IE's won.
 
  H.
 
 
 
  -Original Message-
  From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, February 19, 2002 8:09 PM
  To: CF-Talk
  Subject: RE: SOT: Is the Netscape browser still a consideration?
 
 
  We run an RV Classified site with about 40,000 visitors per month.  The
  average age of Rver's is in their early 60's.  Believe it or not, about
  1.5% of our visitors use Netscape 3.0.
 
  We've had to code in FONT tags with the CSS classes so it didn't look
  horrible in NS 3.0
 
  Tom Nunamaker
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, February 19, 2002 10:04 PM
  To: CF-Talk
  Subject: Re: SOT: Is the Netscape browser still a consideration?
 
 
  Here's my .02 cents
 
   I'm leaning towards giving more consideration to the Netscape 6.0 above
  but
  I'm not ready to declare Netscape 4.75 dead. I think there's still about
  10
  percent of the internet users that are using Netscape 4.75. Netscape 6.0
  is
  coming along real nicely and I've seen some users jumping over from IE
  to
  Netscape 6.0.
 
   It would make sense if someone would overlook some of the small design
  differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
  far
  in ignoring some of the glaring layout differences. The clients we work
  with
  generally have no understanding why there's a browser war, why netscape
  4.75
  doesn't support some of the HTML tags as well as IE does and etc. It
  would
  hurt the contractors' reputation if they were to ignore 4.75 as of now.
 
   If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
  there
  are almost zero differences between those versions. It'll make your job
  much
  easier.
 
I have a small site tracking system on my site and every one user in
  about
  10 or 15 users are showing up with a 4.75 version. So I have no choice
  but to
  design sites for 3 different versions. Thus, I'd recommend you do the
  same
  thing.
 
 
 
   For the longest time, I've coded my sites to take into account
   Netscape users but with the ever-dwindling numbers of Navigator
   afficianados and IE's continued growth, I've been wondering if I
   should even bother worrying about
   whether my sites work with Netscape

SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Rey Bango

For the longest time, I've coded my sites to take into account Netscape
users but with the ever-dwindling numbers of Navigator afficianados and IE's
continued growth, I've been wondering if I should even bother worrying about
whether my sites work with Netscape.

Since this has been one of my best resources for info and some of the most
talented and savvy people that I've met post to CF-Talk, I was hoping that I
could get some good feedback.

So, if we consider that the apps that I'm developing will be geared towards
the Internet consumer at large and I won't have the luxury of developing for
a controlled environment like a corporate intranet, I beg the question:

Should I continue to worry about Netscape? If so, which version should serve
as a baseline?

Looking forward to your responses.

C-ya,

Rey...

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Mark A. Kruger - CFG

My take:

I do make an attempt to make sure that my HTML coding standards present
themselves in Netscape so that the content is readable and navigatable.  I
do NOT make sure that netscape renders with the same quality as IE - the
amount of effort it takes to do both is just too demanding and not cost
effective (there's little return on the investment and it impacts our bottom
line).

Mark

-Original Message-
From: Rey Bango [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 7:43 PM
To: CF-Talk
Subject: SOT: Is the Netscape browser still a consideration?


For the longest time, I've coded my sites to take into account Netscape
users but with the ever-dwindling numbers of Navigator afficianados and IE's
continued growth, I've been wondering if I should even bother worrying about
whether my sites work with Netscape.

Since this has been one of my best resources for info and some of the most
talented and savvy people that I've met post to CF-Talk, I was hoping that I
could get some good feedback.

So, if we consider that the apps that I'm developing will be geared towards
the Internet consumer at large and I won't have the luxury of developing for
a controlled environment like a corporate intranet, I beg the question:

Should I continue to worry about Netscape? If so, which version should serve
as a baseline?

Looking forward to your responses.

C-ya,

Rey...


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Steve Oliver

People still use netscape? :)

I think it depends on what your app is geared for.

Like, if you develop a web portal with tech news, chances are you'll get
a few NS hits, since there a still a few hardcore NS fans out there that
are still using NS from when it was the best thing since sliced bread.

But, if it's a web portal for gardening, or something of that nature,
chances are you'll get the non-tech savvy crowd, and most of them would
be on AOL (which uses IE), or a local ISP, running the default browser
(IE)

When I make a site though, I do open it in NS6 to see if it's viewable.
The majority of the people who do run NS (the fans) would certainly of
upgraded to the latest version, which is pretty W3C compliant.

__
steve oliver
atnet solutions, inc.
http://www.atnetsolutions.com


-Original Message-
From: Rey Bango [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, February 19, 2002 10:43 PM
To: CF-Talk
Subject: SOT: Is the Netscape browser still a consideration?


For the longest time, I've coded my sites to take into account Netscape
users but with the ever-dwindling numbers of Navigator afficianados and
IE's
continued growth, I've been wondering if I should even bother worrying
about
whether my sites work with Netscape.

Since this has been one of my best resources for info and some of the
most
talented and savvy people that I've met post to CF-Talk, I was hoping
that I
could get some good feedback.

So, if we consider that the apps that I'm developing will be geared
towards
the Internet consumer at large and I won't have the luxury of developing
for
a controlled environment like a corporate intranet, I beg the question:

Should I continue to worry about Netscape? If so, which version should
serve
as a baseline?

Looking forward to your responses.

C-ya,

Rey...


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread NathanielHorwitz

Here's my .02 cents

 I'm leaning towards giving more consideration to the Netscape 6.0 above but 
I'm not ready to declare Netscape 4.75 dead. I think there's still about 10 
percent of the internet users that are using Netscape 4.75. Netscape 6.0 is 
coming along real nicely and I've seen some users jumping over from IE to 
Netscape 6.0. 

 It would make sense if someone would overlook some of the small design 
differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too far 
in ignoring some of the glaring layout differences. The clients we work with 
generally have no understanding why there's a browser war, why netscape 4.75 
doesn't support some of the HTML tags as well as IE does and etc. It would 
hurt the contractors' reputation if they were to ignore 4.75 as of now. 

 If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then there 
are almost zero differences between those versions. It'll make your job much 
easier.

  I have a small site tracking system on my site and every one user in about 
10 or 15 users are showing up with a 4.75 version. So I have no choice but to 
design sites for 3 different versions. Thus, I'd recommend you do the same 
thing.



 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and 
 IE's
 continued growth, I've been wondering if I should even bother worrying 
 about
 whether my sites work with Netscape.
 
 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that 
 I
 could get some good feedback.
 
 So, if we consider that the apps that I'm developing will be geared towards
 the Internet consumer at large and I won't have the luxury of developing 
 for
 a controlled environment like a corporate intranet, I beg the question:
 
 Should I continue to worry about Netscape? If so, which version should 
 serve
 as a baseline?
 
 Looking forward to your responses.
 
 C-ya,
 
 Rey...


Nathaniel Horwitz
mailto:[EMAIL PROTECTED]
AIM: NRHorwitz  
Fax: 510-573-2298
Web Site: http://www.nathanielhorwitz.com

 What separates winning from losing is the head. The brain sometimes doesn't 
believe in the power of the body   



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Nick Texidor

I'm not sure what the general consensus is, but in my opinion, I would
continue to code for Netscape, and also consider Opera too.  If everyone
gives up coding for the other browsers, then it's game over,  MS will
not only own your personal machines, but the internet too!The other
option of course is those people who don't run IE will simply not return
to your sites, and from where I sit, I see a few more people looking at
the alternatives to windows than there were just a few months ago.  

I think you need to put the question to your clients, not the
developers.  Most of the CF list probably wouldn't care a jot if they
only had to develop for IE.  But their clients may be a little more
caring!  The last thing you want to do is go to a client and say 'we'll
code it for IE', only to receive a call a week after it goes live saying
'my mate said he can't view the site'...  the client isn't going to be
too happy.  IMHO, code for the biggest market, because people will
simply not return to your site if the only way they can see it is to
have to download another browser.

All our sites are tested under different browsers on several platforms. 
We still have clients that use Netscape as their main browser.  We all
use different browsers internally too, I prefer to use Opera, and
occasionally Netscape, on Linux, and for the one site that forces me to
use IE (Internet Banking), I switch on my NT box (although I'm looking
at switching banks because of this very reason).  Our designers either
use Netscape or IE, but both on the Mac platform.

Just my thoughts.

N



Rey Bango wrote:
 
 For the longest time, I've coded my sites to take into account Netscape
 users but with the ever-dwindling numbers of Navigator afficianados and IE's
 continued growth, I've been wondering if I should even bother worrying about
 whether my sites work with Netscape.
 
 Since this has been one of my best resources for info and some of the most
 talented and savvy people that I've met post to CF-Talk, I was hoping that I
 could get some good feedback.
 
 So, if we consider that the apps that I'm developing will be geared towards
 the Internet consumer at large and I won't have the luxury of developing for
 a controlled environment like a corporate intranet, I beg the question:
 
 Should I continue to worry about Netscape? If so, which version should serve
 as a baseline?
 
 Looking forward to your responses.
 
 C-ya,
 
 Rey...
 
 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Tom Nunamaker

We run an RV Classified site with about 40,000 visitors per month.  The
average age of Rver's is in their early 60's.  Believe it or not, about
1.5% of our visitors use Netscape 3.0.

We've had to code in FONT tags with the CSS classes so it didn't look
horrible in NS 3.0

Tom Nunamaker

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, February 19, 2002 10:04 PM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


Here's my .02 cents

 I'm leaning towards giving more consideration to the Netscape 6.0 above
but 
I'm not ready to declare Netscape 4.75 dead. I think there's still about
10 
percent of the internet users that are using Netscape 4.75. Netscape 6.0
is 
coming along real nicely and I've seen some users jumping over from IE
to 
Netscape 6.0. 

 It would make sense if someone would overlook some of the small design 
differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
far 
in ignoring some of the glaring layout differences. The clients we work
with 
generally have no understanding why there's a browser war, why netscape
4.75 
doesn't support some of the HTML tags as well as IE does and etc. It
would 
hurt the contractors' reputation if they were to ignore 4.75 as of now. 

 If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
there 
are almost zero differences between those versions. It'll make your job
much 
easier.

  I have a small site tracking system on my site and every one user in
about 
10 or 15 users are showing up with a 4.75 version. So I have no choice
but to 
design sites for 3 different versions. Thus, I'd recommend you do the
same 
thing.



 For the longest time, I've coded my sites to take into account 
 Netscape users but with the ever-dwindling numbers of Navigator 
 afficianados and IE's continued growth, I've been wondering if I 
 should even bother worrying about
 whether my sites work with Netscape.
 
 Since this has been one of my best resources for info and some of the 
 most talented and savvy people that I've met post to CF-Talk, I was 
 hoping that I could get some good feedback.
 
 So, if we consider that the apps that I'm developing will be geared 
 towards the Internet consumer at large and I won't have the luxury of 
 developing for a controlled environment like a corporate intranet, I 
 beg the question:
 
 Should I continue to worry about Netscape? If so, which version should
 serve
 as a baseline?
 
 Looking forward to your responses.
 
 C-ya,
 
 Rey...


Nathaniel Horwitz
mailto:[EMAIL PROTECTED]
AIM: NRHorwitz  
Fax: 510-573-2298
Web Site: http://www.nathanielhorwitz.com

 What separates winning from losing is the head. The brain sometimes
doesn't 
believe in the power of the body   




__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Paul Giesenhagen

We have seen a dramtic increase in Netscape users over the last few months,
(with over 2million uniques per month) ..our numbers have jumped from 3-4%
to over 15% ...  I would keep the coding going for Netscape!

Paul Giesenhagen
QuillDesign
http://www.quilldesign.com
SiteDirector - Commerce Builder
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Ken Wilson

 The majority of the people who do run NS (the fans) would certainly
 of upgraded to the latest version, which is pretty W3C compliant.



Is this a fact or an assumption?  :)

I would tend to guess just the opposite based on my own experience and from
the stats I've seen in the past. It has been several months since I hunted
for reasonably reliable looking stats from other than tech-oriented sites,
though, so things might well have evolved.

Ken


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Rey Bango

Nick,

Great points bud. The main reason that I'm asking the development community
is because I wanted to gauge what everyone else was doing. This list has
such a diverse talent pool that it really gives you a good indication as to
new trends in ecommerce development. Notice that we've had varying replies
that go from one extreme to the next. That's why it was so important to me
to pose the question here.

Thanks again for your feedback. Keep it coming.

Rey...

- Original Message -
From: Nick Texidor [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 11:06 PM
Subject: Re: SOT: Is the Netscape browser still a consideration?


 I'm not sure what the general consensus is, but in my opinion, I would
 continue to code for Netscape, and also consider Opera too.  If everyone
 gives up coding for the other browsers, then it's game over,  MS will
 not only own your personal machines, but the internet too!The other
 option of course is those people who don't run IE will simply not return
 to your sites, and from where I sit, I see a few more people looking at
 the alternatives to windows than there were just a few months ago.

 I think you need to put the question to your clients, not the
 developers.  Most of the CF list probably wouldn't care a jot if they
 only had to develop for IE.  But their clients may be a little more
 caring!  The last thing you want to do is go to a client and say 'we'll
 code it for IE', only to receive a call a week after it goes live saying
 'my mate said he can't view the site'...  the client isn't going to be
 too happy.  IMHO, code for the biggest market, because people will
 simply not return to your site if the only way they can see it is to
 have to download another browser.

 All our sites are tested under different browsers on several platforms.
 We still have clients that use Netscape as their main browser.  We all
 use different browsers internally too, I prefer to use Opera, and
 occasionally Netscape, on Linux, and for the one site that forces me to
 use IE (Internet Banking), I switch on my NT box (although I'm looking
 at switching banks because of this very reason).  Our designers either
 use Netscape or IE, but both on the Mac platform.

 Just my thoughts.

 N



 Rey Bango wrote:
 
  For the longest time, I've coded my sites to take into account Netscape
  users but with the ever-dwindling numbers of Navigator afficianados and
IE's
  continued growth, I've been wondering if I should even bother worrying
about
  whether my sites work with Netscape.
 
  Since this has been one of my best resources for info and some of the
most
  talented and savvy people that I've met post to CF-Talk, I was hoping
that I
  could get some good feedback.
 
  So, if we consider that the apps that I'm developing will be geared
towards
  the Internet consumer at large and I won't have the luxury of developing
for
  a controlled environment like a corporate intranet, I beg the question:
 
  Should I continue to worry about Netscape? If so, which version should
serve
  as a baseline?
 
  Looking forward to your responses.
 
  C-ya,
 
  Rey...
 
 
 
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Jeffry Houser

  Watch your logs.. ( Or the logs of the site you are developing for, 
rather ) .  That is the biggest tell-tale sign as to what you should be 
developing for ( or not ).

  The server administrator of one site I developed, a long time ago, told 
me that on weekdays, 98% of the hits were from Netscape, but on weekends it
 
evened out 50-50.  ( It turned out that the corporate browser was Netscape
 
and all employees had their home page set to the corporate web site, so 
most of the hits were coming from the employees of the company ).

   Other than that, I use Netscape about half the time and nothing peeves 
me off more than not being able to see a page because someone missed an 
end-table tag.



At 10:42 PM 02/19/2002 -0500, you wrote:
For the longest time, I've coded my sites to take into account Netscape
users but with the ever-dwindling numbers of Navigator afficianados and
 IE's
continued growth, I've been wondering if I should even bother worrying
 about
whether my sites work with Netscape.

Since this has been one of my best resources for info and some of the most
talented and savvy people that I've met post to CF-Talk, I was hoping that
 I
could get some good feedback.

So, if we consider that the apps that I'm developing will be geared towards
the Internet consumer at large and I won't have the luxury of developing
 for
a controlled environment like a corporate intranet, I beg the question:

Should I continue to worry about Netscape? If so, which version should
 serve
as a baseline?

Looking forward to your responses.

C-ya,

Rey...


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Steve Oliver

It's an assumption on my part, looks like everyone else thinks
differently.

I guess there could be a few people out there running NS 4.7 on a 75mhz
computer, not worrying about upgrading anything because it does what
they need.

__
steve oliver
atnet solutions, inc.
http://www.atnetsolutions.com


-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, February 19, 2002 11:25 PM
To: CF-Talk
Subject: RE: Is the Netscape browser still a consideration?


 The majority of the people who do run NS (the fans) would certainly
 of upgraded to the latest version, which is pretty W3C compliant.



Is this a fact or an assumption?  :)

I would tend to guess just the opposite based on my own experience and
from
the stats I've seen in the past. It has been several months since I
hunted
for reasonably reliable looking stats from other than tech-oriented
sites,
though, so things might well have evolved.

Ken



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is the Netscape browser still a consideration?

2002-02-19 Thread Nick Texidor

I use Netscape 4.78 on Linux because it's faster than Mozilla and
Netscape 6.  Simple as that.  And I still use Netscape as my email
client, because it has (IMHO) the best IMAP client out there.

I have to say that on Linux, Opera is looking damn fine though!  And
even on our Macs Opera is almost looking like being the best browser
option.

:^)




Steve Oliver wrote:
 
 It's an assumption on my part, looks like everyone else thinks
 differently.
 
 I guess there could be a few people out there running NS 4.7 on a 75mhz
 computer, not worrying about upgrading anything because it does what
 they need.
 
 __
 steve oliver
 atnet solutions, inc.
 http://www.atnetsolutions.com
 
 -Original Message-
 From: Ken Wilson [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 19, 2002 11:25 PM
 To: CF-Talk
 Subject: RE: Is the Netscape browser still a consideration?
 
  The majority of the people who do run NS (the fans) would certainly
  of upgraded to the latest version, which is pretty W3C compliant.
 
 Is this a fact or an assumption?  :)
 
 I would tend to guess just the opposite based on my own experience and
 from
 the stats I've seen in the past. It has been several months since I
 hunted
 for reasonably reliable looking stats from other than tech-oriented
 sites,
 though, so things might well have evolved.
 
 Ken
 
 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Ken Wilson

 I guess there could be a few people out there running NS 4.7 on a 75mhz


Keep in mind that some IT departments build an image and only update the
browser when the user absolutely demands it or requires it for a project
thay work on. In one of my cases, NS is the primary mail client so asking
users to launch a second browser to use the site has been a fight. Gentle
nudging seems to be working slowly and the inclusion of a few desirable
features that for some mysterious reason only seem to work in IE hasn't
hurt.  :)

Ken
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is the Netscape browser still a consideration?

2002-02-19 Thread Dave Carabetta

I would most definitely continue to develop for Netscape 4.x browsers. I
feel that it is very short-sighted to make any assumptions about what your
users are viewing your web site with unless you run some extensive logging
that captures browser info (i.e., BrowserHawk, etc.) and do some analysis.

I have to be honest, whenever I've seen code (and there are exceptions to
this) that works well in IE and bombs in Netscape, a lot of the time it's
because of shoddy coding (missing closing table tags, etc.), where IE is
much more forgiving. If you stick with W3C compliant code, most of the time
you will be fine in both major browsers. Obviously there are exceptions such
as IFrames, various elements of the DOM, and other nuances that Microsoft
has extended beyond W3C standards or Netscape just chose not to implement.
But I would wager that a majority of web sites out there don't use those
exclusive elements if they generate a lot of traffic. As mentioned in a
previous reply, most customers would just leave and never come back to your
site. And if you do use these exclusive elements, there's probably a
workaround if you think hard about the problem. I think that coders (myself
included at times) love to take the easy way out. That's not necessarily a
bad thing, but the wrong solutions get applied to certain problems just
because it's quicker.

Up-and-coming browsers (Opera, Mozilla, etc.) are fully W3C compliant, and
that's where your focus should be. I always make sure to test my code in IE,
Netscape 4.7, and Opera, and do so on different OSes. Remember that IE on a
Mac renders different than IE on a Windows platform at times. Also think
about XHTML, which is just a re-named version of the W3C's HTML 4.01 spec.
Some things take getting used to, but you'll find that you code cleaner and
more efficiently, and, most importantly, make your code scalable for
potential XML integration down the road.

Sorry to ramble, but Rey, I think you brought up a very good point. I, too,
look forward to what other people's thoughts are on this subject.

Regards,
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread howard

I just checked the stats on a site I run for an older, non-savvy type of
user -- 7.2 percent use Netscape, and more than half of those are running NS
4.x.

It's worth noting that my site pretty much looks like crap, though is still
useable, in NS 4.x, so who knows -- maybe with a better site, I'd get more
NS users.  I'm thinking a lot of people who use NS arrived at an earlier
version they like and because of the mergers, sales, cutbacks, slow delivery
on new product, bad reviews of new product -- a lot of NS users are sticking
with 4.x.

H.


-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 8:25 PM
To: CF-Talk
Subject: RE: Is the Netscape browser still a consideration?


 The majority of the people who do run NS (the fans) would certainly
 of upgraded to the latest version, which is pretty W3C compliant.



Is this a fact or an assumption?  :)

I would tend to guess just the opposite based on my own experience and from
the stats I've seen in the past. It has been several months since I hunted
for reasonably reliable looking stats from other than tech-oriented sites,
though, so things might well have evolved.

Ken



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread howard

The site I mentioned in my previous e-mail is also an RV site. About the
same traffic. Average age of registered users is 56.

My biggest problem isn't NS users, it's WebTV users.  Currently, we only get
about 1.5 percent WebTV, but I get complaints from them all of the time.
Not so much design, but a lot of functionality (javascripts, form
submissions, picture uploads) don't work or don't work as well or work
inconsistently with WebTV (thought I haven't received a complaint in several
months, so maybe WebTV has improved).

The redesign I'm working on right now looked great in IE. It totally falls
apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3 validated.
But CSS is a huge problem.  My solution will probably be to do a browser
redirect and send NS users to a totally stripped down version of the site.
It will pretty much be just black text, white background and links and
forms.  No design. I want to have a site that useable for those 7 percent,
but with such a small audience, I'm not going to waste a lot of time on it.

As far as I'm concerned (and this is just a personal opinion and how I
approach site building), IE's won.

H.



-Original Message-
From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 8:09 PM
To: CF-Talk
Subject: RE: SOT: Is the Netscape browser still a consideration?


We run an RV Classified site with about 40,000 visitors per month.  The
average age of Rver's is in their early 60's.  Believe it or not, about
1.5% of our visitors use Netscape 3.0.

We've had to code in FONT tags with the CSS classes so it didn't look
horrible in NS 3.0

Tom Nunamaker

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 19, 2002 10:04 PM
To: CF-Talk
Subject: Re: SOT: Is the Netscape browser still a consideration?


Here's my .02 cents

 I'm leaning towards giving more consideration to the Netscape 6.0 above
but
I'm not ready to declare Netscape 4.75 dead. I think there's still about
10
percent of the internet users that are using Netscape 4.75. Netscape 6.0
is
coming along real nicely and I've seen some users jumping over from IE
to
Netscape 6.0.

 It would make sense if someone would overlook some of the small design
differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
far
in ignoring some of the glaring layout differences. The clients we work
with
generally have no understanding why there's a browser war, why netscape
4.75
doesn't support some of the HTML tags as well as IE does and etc. It
would
hurt the contractors' reputation if they were to ignore 4.75 as of now.

 If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
there
are almost zero differences between those versions. It'll make your job
much
easier.

  I have a small site tracking system on my site and every one user in
about
10 or 15 users are showing up with a 4.75 version. So I have no choice
but to
design sites for 3 different versions. Thus, I'd recommend you do the
same
thing.



 For the longest time, I've coded my sites to take into account
 Netscape users but with the ever-dwindling numbers of Navigator
 afficianados and IE's continued growth, I've been wondering if I
 should even bother worrying about
 whether my sites work with Netscape.

 Since this has been one of my best resources for info and some of the
 most talented and savvy people that I've met post to CF-Talk, I was
 hoping that I could get some good feedback.

 So, if we consider that the apps that I'm developing will be geared
 towards the Internet consumer at large and I won't have the luxury of
 developing for a controlled environment like a corporate intranet, I
 beg the question:

 Should I continue to worry about Netscape? If so, which version should
 serve
 as a baseline?

 Looking forward to your responses.

 C-ya,

 Rey...


Nathaniel Horwitz
mailto:[EMAIL PROTECTED]
AIM: NRHorwitz
Fax: 510-573-2298
Web Site: http://www.nathanielhorwitz.com

 What separates winning from losing is the head. The brain sometimes
doesn't
believe in the power of the body





__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Rey Bango

Hi Howard.

The CSS issue was one of the main reasons that I started this post. I was
working on a site and implemented some design elements using styles that
really enhanced the appearance of the site. I actually did test it out in
Netscape 6.2 as well as IE 5.5 and both rendered the site beautifully. The
pain came in when I loaded up Netscape 4.7x. The site was just
non-functional and it really irritated me. So it prompted me to do some
homework to determine what other developers were doing.

Based on the feedback so far, its seems prudent to continue to support
Netscape. I just wish that a baseline of Netscape 6.0 could be established
but such a meaningful percentage of NS 4.7 users still out there, it appears
that some workarounds will still be needed. Sigh...

Thanks for your input.

Rey///

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 20, 2002 12:17 AM
Subject: RE: SOT: Is the Netscape browser still a consideration?


 The site I mentioned in my previous e-mail is also an RV site. About the
 same traffic. Average age of registered users is 56.

 My biggest problem isn't NS users, it's WebTV users.  Currently, we only
get
 about 1.5 percent WebTV, but I get complaints from them all of the time.
 Not so much design, but a lot of functionality (javascripts, form
 submissions, picture uploads) don't work or don't work as well or work
 inconsistently with WebTV (thought I haven't received a complaint in
several
 months, so maybe WebTV has improved).

 The redesign I'm working on right now looked great in IE. It totally falls
 apart in NS 4.7.  It's totally useless in 4.7.  And my code is W3
validated.
 But CSS is a huge problem.  My solution will probably be to do a browser
 redirect and send NS users to a totally stripped down version of the site.
 It will pretty much be just black text, white background and links and
 forms.  No design. I want to have a site that useable for those 7 percent,
 but with such a small audience, I'm not going to waste a lot of time on
it.

 As far as I'm concerned (and this is just a personal opinion and how I
 approach site building), IE's won.

 H.



 -Original Message-
 From: Tom Nunamaker [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 19, 2002 8:09 PM
 To: CF-Talk
 Subject: RE: SOT: Is the Netscape browser still a consideration?


 We run an RV Classified site with about 40,000 visitors per month.  The
 average age of Rver's is in their early 60's.  Believe it or not, about
 1.5% of our visitors use Netscape 3.0.

 We've had to code in FONT tags with the CSS classes so it didn't look
 horrible in NS 3.0

 Tom Nunamaker

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 19, 2002 10:04 PM
 To: CF-Talk
 Subject: Re: SOT: Is the Netscape browser still a consideration?


 Here's my .02 cents

  I'm leaning towards giving more consideration to the Netscape 6.0 above
 but
 I'm not ready to declare Netscape 4.75 dead. I think there's still about
 10
 percent of the internet users that are using Netscape 4.75. Netscape 6.0
 is
 coming along real nicely and I've seen some users jumping over from IE
 to
 Netscape 6.0.

  It would make sense if someone would overlook some of the small design
 differences between Netscape 4.75 and 6.0 +. However, I wouldn't go too
 far
 in ignoring some of the glaring layout differences. The clients we work
 with
 generally have no understanding why there's a browser war, why netscape
 4.75
 doesn't support some of the HTML tags as well as IE does and etc. It
 would
 hurt the contractors' reputation if they were to ignore 4.75 as of now.

  If anyone wants to work with IE 5.5 and Netscape 6.0+ exclusively then
 there
 are almost zero differences between those versions. It'll make your job
 much
 easier.

   I have a small site tracking system on my site and every one user in
 about
 10 or 15 users are showing up with a 4.75 version. So I have no choice
 but to
 design sites for 3 different versions. Thus, I'd recommend you do the
 same
 thing.



  For the longest time, I've coded my sites to take into account
  Netscape users but with the ever-dwindling numbers of Navigator
  afficianados and IE's continued growth, I've been wondering if I
  should even bother worrying about
  whether my sites work with Netscape.
 
  Since this has been one of my best resources for info and some of the
  most talented and savvy people that I've met post to CF-Talk, I was
  hoping that I could get some good feedback.
 
  So, if we consider that the apps that I'm developing will be geared
  towards the Internet consumer at large and I won't have the luxury of
  developing for a controlled environment like a corporate intranet, I
  beg the question:
 
  Should I continue to worry about Netscape? If so, which version should
  serve
  as a baseline?
 
  Looking forward to your responses.
 
  C-ya,
 
  Rey...


 Nathaniel Horwitz

Re: Is the Netscape browser still a consideration?

2002-02-19 Thread Rey Bango

Dave,

Excellent post. I've always taken what I called the Amazon litmus test. It
was a known fact that Amazon coded all portions of their site in a manner
that was viewable in very early verisons of Netscape. This ensured that they
never lost a customer because of a browser compatibility issue. That was
something that really appealed to my business side and still does to a great
extent. This process though does restrain your ability to truly leverage
some of the amazing advances in browser technologies.

Recently, I was working on a site where I used some styles to enhance the
look and feel of inputs, textareas and buttons. The effect was very modern
and clean. The pages rendered beautifully under IE 5.5 and NS 6.2 but failed
miserably when brought up under NS 4.7. It was extremely frustrating to say
the least especially since the code was W3C compliant. I verified this
thinking that perhaps I had used some IE-centric approach.

I think we're all in agreement, to some extent, that maintaining some level
of backward compatibility is in everyone's best interest but I'd like your
feedback on something else. What do you use as your baseline for browser
compatibility? Is it NS 4.7? In other words, when you decide your minimum
browser requirements, which browser versions do you choose as the starting
point?

Thanks again,

Rey...





- Original Message -
From: Dave Carabetta [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 19, 2002 11:55 PM
Subject: Re: Is the Netscape browser still a consideration?


 I would most definitely continue to develop for Netscape 4.x browsers. I
 feel that it is very short-sighted to make any assumptions about what
your
 users are viewing your web site with unless you run some extensive logging
 that captures browser info (i.e., BrowserHawk, etc.) and do some analysis.

 I have to be honest, whenever I've seen code (and there are exceptions to
 this) that works well in IE and bombs in Netscape, a lot of the time it's
 because of shoddy coding (missing closing table tags, etc.), where IE is
 much more forgiving. If you stick with W3C compliant code, most of the
time
 you will be fine in both major browsers. Obviously there are exceptions
such
 as IFrames, various elements of the DOM, and other nuances that Microsoft
 has extended beyond W3C standards or Netscape just chose not to implement.
 But I would wager that a majority of web sites out there don't use those
 exclusive elements if they generate a lot of traffic. As mentioned in a
 previous reply, most customers would just leave and never come back to
your
 site. And if you do use these exclusive elements, there's probably a
 workaround if you think hard about the problem. I think that coders
(myself
 included at times) love to take the easy way out. That's not necessarily a
 bad thing, but the wrong solutions get applied to certain problems just
 because it's quicker.

 Up-and-coming browsers (Opera, Mozilla, etc.) are fully W3C compliant, and
 that's where your focus should be. I always make sure to test my code in
IE,
 Netscape 4.7, and Opera, and do so on different OSes. Remember that IE on
a
 Mac renders different than IE on a Windows platform at times. Also think
 about XHTML, which is just a re-named version of the W3C's HTML 4.01 spec.
 Some things take getting used to, but you'll find that you code cleaner
and
 more efficiently, and, most importantly, make your code scalable for
 potential XML integration down the road.

 Sorry to ramble, but Rey, I think you brought up a very good point. I,
too,
 look forward to what other people's thoughts are on this subject.

 Regards,
 
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Nick McClure

I am one of those hard core Netscape users.

Really I use it because I don't trust the security of IE/Outlook. I still 
use Netscape and Eudora for that reason. The threat of the next big hole 
that MS has not yet released a patch for, and me going to some obscure 
website that somebody from cf-community posts keep me using netscape.

You will also find in a lot of large corporation and schools, that 
computers have particular browsers loaded on to all of the computers in the
 
lab and that is just what you get. They have been using them for years and
 
there is no reason to change.

I would recommend coding your sites for the current (6) version of netscape
 
and IE. checking to make sure it is viewable in netscape 4.7+ and Opera, 
and you should be good.

At 10:42 PM 2/19/2002 -0500, you wrote:
For the longest time, I've coded my sites to take into account Netscape
users but with the ever-dwindling numbers of Navigator afficianados and
 IE's
continued growth, I've been wondering if I should even bother worrying
 about
whether my sites work with Netscape.

Since this has been one of my best resources for info and some of the most
talented and savvy people that I've met post to CF-Talk, I was hoping that
 I
could get some good feedback.

So, if we consider that the apps that I'm developing will be geared towards
the Internet consumer at large and I won't have the luxury of developing
 for
a controlled environment like a corporate intranet, I beg the question:

Should I continue to worry about Netscape? If so, which version should
 serve
as a baseline?

Looking forward to your responses.

C-ya,

Rey...


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOT: Is the Netscape browser still a consideration?

2002-02-19 Thread Matt Robertson

Even if the percentage of users for all wacko browsers is just ... say
.. 5%.  Are you willing to take a 5% drop in sales for an unknown
duration?  Like others I not only still see NN3 users... I'm still
seeing AOL 3 on a site where about 10% of users are on AO-Hell - the
typical site demographic is an affluent, college-educated, married male
in his mid-forties.  5-8% is about right for *all* NN users on that site
right now.

Bah.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Matt Robertson

I use NN 4.78, NN 6.2, IE6 and IE5.  I can run both NN's and IE6 on my
regular dev server, and keep IE5 on my win2k laptop.  Its tough to go
back to IE 4 simply because of how MS handles browser upgrades.

Its not just your visitors you have to please, and it ain't just
Netscape:

I just ran into a new client using an early NN4.7(1?).  My preliminary
design stunk in 4.78.  Good thing I looked at it.

About 6 months ago I had a client who used professional photography on
the site.  When we went over the thing during construction over the
phone, She always said the photos looked crummy, and I did awful things
in Photoshop before she was grudgingly satisfied.  When I personally
visited for final training, I found *all* of the systems at this very
upscale establishment were at the Windows default of 640x480x256, which
is how the vendor uncrated them.

Last week at another brand-new client (currently getting 50,000 daily
visitors as part of a sports team sponsorship):  They fired the other
guy because they couldn't see his design on their 15'' 640x480
default-out-of-the-box screens.  

Sound out the client about hardware/screen res right at the get-go.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-17 Thread Michael Lugassy

Mark,

I assume the OS would be windows advanced server?

Why advanced?

Michael.


Date: Sun, 16 Sep 2001 14:11:10 +0200
From: Michael Lugassy [EMAIL PROTECTED]
Subject: Hardware Consideration
Message-ID: 000e01c13ea8$adc3c240$[EMAIL PROTECTED]

This may seem a bit OT, but if any pro. can help me out here, I'll be 
glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion 
IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very 
quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower 
CPU?

Any help or links on the subject would be great!

Michael.

brbrbrMark Smeets/stranger0/ICQ #1062196

My new email: [EMAIL PROTECTED]

Mr. West, not every situation requires your patented approach of shoot 
first, shoot later, shoot some more and then when everybody's dead try 
to 
ask a question or two - Wild Wild West

A Stranger's Domain
http://24.113.34.178/stranger

Official Splitting Adam Homepage
http://www.splittingadam.com/


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hardware Consideration

2001-09-17 Thread Billy Cravens

You should only spend the money on Advanced Server if you have a massive
farm, in which you have some high-dollar servers.  That sounds like this
isn't the case.  (advantages of Win2K AS over regular Server: supports
up to 8 cpus, up to 8 gb of ram, and has clustering support)

---
Billy Cravens
Web Development, EDS
[EMAIL PROTECTED]


-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 18, 2001 5:38 AM
To: CF-Talk
Subject: Re: Hardware Consideration


Mark,

I assume the OS would be windows advanced server?

Why advanced?

Michael.


Date: Sun, 16 Sep 2001 14:11:10 +0200
From: Michael Lugassy [EMAIL PROTECTED]
Subject: Hardware Consideration
Message-ID: 000e01c13ea8$adc3c240$[EMAIL PROTECTED]

This may seem a bit OT, but if any pro. can help me out here, I'll be 
glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion

IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying. Further more, the site send out
hunderds of images and htmls very 
quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE? Should I consider more ram (1-2Gb over 512MB) and settle
for a slower 
CPU?

Any help or links on the subject would be great!

Michael.

brbrbrMark Smeets/stranger0/ICQ #1062196

My new email: [EMAIL PROTECTED]

Mr. West, not every situation requires your patented approach of shoot 
first, shoot later, shoot some more and then when everybody's dead try 
to 
ask a question or two - Wild Wild West

A Stranger's Domain
http://24.113.34.178/stranger

Official Splitting Adam Homepage
http://www.splittingadam.com/



~~
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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Hardware Consideration

2001-09-16 Thread Michael Lugassy

This may seem a bit OT, but if any pro. can help me out here, I'll be glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

Any help or links on the subject would be great!

Michael.


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-16 Thread Jeffry Houser

  Are you looking for a database Server ( SQL Server? Oracle?) or a 
ColdFusion server, or a machine that can handle both at once?
  It is usually recommended that you try to separate your database server 
from your Application Server.

At 02:11 PM 09/16/2001 +0200, you wrote:
This may seem a bit OT, but if any pro. can help me out here, I'll be glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

Any help or links on the subject would be great!

Michael.



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-16 Thread Michael Lugassy

Jeffry,

   Are you looking for a database Server ( SQL Server? Oracle?) or a
 ColdFusion server, or a machine that can handle both at once?
   It is usually recommended that you try to separate your database server
 from your Application Server.

Something that can handle both at once (SQL and IIS/Coldfusion).

Michael.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-16 Thread Tony Schreiber

I got some good hardware from this guy, but it doesn't look like he's
going to be selling any longer:

http://www.dark-wave.net/index.html

 This may seem a bit OT, but if any pro. can help me out here, I'll be glad
 to hear all tips and pointers.

 I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
 website.

 The server mostly run SQL Full-text queries, (10-20 million text rows)
 Also, there some Coldfusion scripts that consumes some resources for
 calucluation, generating and querying.
 Further more, the site send out hunderds of images and htmls very quickly,
 in a high above average rate.

 How can I check which server will be enough? Should I consider SCSI or
 settle for IDE?
 Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

 Any help or links on the subject would be great!

 Michael.


 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hardware Consideration

2001-09-16 Thread Eric J Hoffman

It is not a general practice to put CF and SQL on the same box as SQL (as
well as CF) can become extremely resource intensive and slow everything down
to a halt.  If you have the cash, buy two good boxes rather than one
expensive box.

Eric J Hoffman
Director of Internet Development
Small Dog Design, LLC
www.smalldogdesign.com

Home of MN Vikings Fans Worldwide!
www.purplepride.org

-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
Sent: Sunday, September 16, 2001 7:11 AM
To: CF-Talk
Subject: Hardware Consideration


This may seem a bit OT, but if any pro. can help me out here, I'll be glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

Any help or links on the subject would be great!

Michael.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-16 Thread Jon Hall

Anandtech's IT pages are a great source for midrange server articles. 
Mostly they talk about their own web server farm, and what they have 
gone through. He also runs SQL Server and ColdFusion

http://www.anandtech.com/it/index.html

jon
Michael Lugassy wrote:

This may seem a bit OT, but if any pro. can help me out here, I'll be glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

Any help or links on the subject would be great!

Michael.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hardware Consideration

2001-09-16 Thread Dave Watts

 I'm intrested in buying a 1U server to host our full-text/SQL/
 coldfusion IIS website.
 
 The server mostly run SQL Full-text queries, (10-20 million text 
 rows) Also, there some Coldfusion scripts that consumes some 
 resources for calucluation, generating and querying. Further more, 
 the site send out hunderds of images and htmls very quickly,
 in a high above average rate.
 
 How can I check which server will be enough? Should I consider 
 SCSI or settle for IDE? Should I consider more ram (1-2Gb over 
 512MB) and settle for a slower CPU?

Before you can come up with especially useful answers, you'll need to know:

1. what amount of traffic you expect to get,
2. what amount of traffic you're willing to support in a worst-case
scenario,
3. how this traffic will be distributed over the course of a day,
4. what kind of things happen on the site,
5. how long your users will be willing to wait,
6. and a bunch of things I'm surely forgetting.

For example, you might normally have a load of five thousand users per day,
but they might all visit at lunch time. Or, you might normally have one
thousand users a day, but you're going to be mentioned on TV this week. The
kinds of things that people do on the site will also have an effect on this.
For example, transactional processing will require more resources than
simply viewing data (which may very well be cached). On the other hand, if
you have a relatively captive user base, they might be willing to wait
longer than average. As you can see, there are a lot of variables that go
into capacity planning.

However, given the information you've provided, I'd recommend that:

1. You get two mediocre servers instead of one really good server. Put the
SQL Server on a separate box. This not only improves performance, but
increases stability - web/application servers tend to fail pretty often
compared to database servers, and you don't want to constantly tinker with
your database server. In addition, it will increase performance and prevent
annoying fights between CF and SQL Server about who's getting what memory -
those don't turn out very well.

2. Put as much RAM into your web/application server as you can. CF benefits
from lots of in-memory caching, if it has the memory. I'd recommend at least
1 Gb.

3. You'll get considerably better disk performance with SCSI on your
servers. IDE is getting better all the time, but I don't think it's caught
up yet.

4. If you do get separate servers, you might get better performance by
putting the database server on a separate network, and  putting your web
server on both the database server's network and the external one.
Obviously, you'd need two NICs in your web server for this. In addition to
better performance, you'd probably have better security. The down side of
this is that it makes it harder to manage the servers if they're at a
dedicated hosting facility.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hardware Consideration

2001-09-16 Thread Mark Smeets

Hey Michael,

Having put together my own machines and my own server, this much I will say, 
while I've never used SQL, I am running IIS and CF.

The thing is you're dealing with windows so you have to think memory. You 
need at least 256mb. I think what you should look at is something along the 
lines of a p4 850, 256mb with a 40gig drive. Cheap 50$ video card and no 
soundcard.

That shouldn't be too much and go for SCSI too.

I assume the OS would be windows advanced server?

Date: Sun, 16 Sep 2001 14:11:10 +0200
From: Michael Lugassy [EMAIL PROTECTED]
Subject: Hardware Consideration
Message-ID: 000e01c13ea8$adc3c240$[EMAIL PROTECTED]

This may seem a bit OT, but if any pro. can help me out here, I'll be glad
to hear all tips and pointers.

I'm intrested in buying a 1U server to host our full-text/SQL/coldfusion IIS
website.

The server mostly run SQL Full-text queries, (10-20 million text rows)
Also, there some Coldfusion scripts that consumes some resources for
calucluation, generating and querying.
Further more, the site send out hunderds of images and htmls very quickly,
in a high above average rate.

How can I check which server will be enough? Should I consider SCSI or
settle for IDE?
Should I consider more ram (1-2Gb over 512MB) and settle for a slower CPU?

Any help or links on the subject would be great!

Michael.

brbrbrMark Smeets/stranger0/ICQ #1062196

My new email: [EMAIL PROTECTED]

Mr. West, not every situation requires your patented approach of shoot 
first, shoot later, shoot some more and then when everybody's dead try to 
ask a question or two - Wild Wild West

A Stranger's Domain
http://24.113.34.178/stranger

Official Splitting Adam Homepage
http://www.splittingadam.com/

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: in consideration of large arrays?

2000-05-23 Thread Sean German

Nevermind :)

FOund what I was looking for.


Sean


-Original Message-
From: Sean German [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 22, 2000 8:45 PM
To: '[EMAIL PROTECTED]'
Subject: in consideration of large arrays?


Howdy fusioneers,

I know theoretically the size of an array is limited by the available
memory, but what other considerations need to be made when working with
large arrays?
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



in consideration of large arrays?

2000-05-22 Thread Sean German

Howdy fusioneers,

I know theoretically the size of an array is limited by the available
memory, but what other considerations need to be made when working with
large arrays?

I have a template that works with an array of about 6000 elements.  No
matter for how long I set the time out, the dern thing still conks out after
a few minutes.

The available physical memory doesn't go below 180K running CF 4.0.1 on NT4,
SP5, IIS 4.  The code is good and was running in production until a couple
weeks ago.  At some point the database outgrew the methods.

Any hints, suggestions, or job offers?  And will the server setting time out
limit override a url ?timeoutrequest= or the other way around?

TIA


Sean
[EMAIL PROTECTED]



tip type=forms
This isn't too complicated but seems to be one of the frequenty asked
questions.

You cannot do this:
CFIF foo
FORM some action
CFELSE
FORM some other action
/CFIF
!--- Jolly fun form bits here ---

/FORM

Bad form to break up the form tags.

But you can do this:

FORM
CFIF bar
some action
CFELSE
some other action
/CFELSE


!--- Jolly fun form bits here ---

/FORM

/tip











/tip
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.