<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>The Honey House Buzz - browsers</title>
			<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			<description>Musings about Life, Momy-hood, Teenagers, ColdFusion, and Being a GeekGirl in the South</description>
			<language>en-us</language>
			<pubDate>Thu, 02 Sep 2010 11:17:45 -0600</pubDate>
			<lastBuildDate>Wed, 05 Nov 2008 19:40:00 -0600</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>support@honeyhousedesigns.com</managingEditor>
			<webMaster>support@honeyhousedesigns.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>support@honeyhousedesigns.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>The Honey House Buzz</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>&quot;Button&quot; tag vs. input type=&apos;button&apos;</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/button-vs-input-typebutton</link>
				<description>
				
				Although the  tag has been around W3C for a while, Dreamweaver still creates buttons as &quot;form buttons&quot;.

&lt;code&gt;
 &lt;input type=&quot;submit&quot; name=&quot;button&quot; id=&quot;button&quot; value=&quot;Click Me&quot;&gt;
&lt;/code&gt;

The form input button creates generic browser buttons, and can be customized using css. However, an easier way to manage the styling of buttons on your site is to use the &quot;button&quot; tag.
&lt;code&gt;
&lt;button type=&quot;button&quot;&gt;Click Me!&lt;/button&gt;
&lt;/code&gt;

This allows a developer to create and use push buttons outside of FORMS in a manner that is better suited for site styling and flexibility. 
				</description>
				
				<category>HTML</category>				
				
				<category>CSS</category>				
				
				<category>browsers</category>				
				
				<pubDate>Wed, 05 Nov 2008 19:40:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/button-vs-input-typebutton</guid>
				
			</item>
			
			<item>
				<title>Help for Businesses on a Budget! AikenBuzz.com Now Oline</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/8/11/Help-for-Businesses-on-a-Budget-AikenBuzzcom-Now-Oline</link>
				<description>
				
				In order to meet the every growing needs of individual professionals  and home-owned businesses in the Aiken area, HHWD has released a new site geared just for small entrepreneurs or the business just getting started online.

For a &lt;strong&gt;single price of $200&lt;/strong&gt;, we will provide you with a one page ad on AikenBuzz.com that features
&lt;ul&gt;
&lt;li&gt;Your Business&apos; search terms&lt;/li&gt;
&lt;li&gt; Your photos and content&lt;/li&gt;
&lt;li&gt;Your busines hours and contact information&lt;/li&gt;
&lt;li&gt;Search Engine optimization customized for your and your business&lt;/li&gt;
&lt;/ul&gt;
AND... &lt;strong&gt;renewals are only $50 annually&lt;/strong&gt;! 

This is perfect for single professionals such as hairstylists, real estate agents, home-based businesses, doctors, and more!  Visit &lt;a href=&quot;http://aikenbuzz.com&quot;&gt;AikenBuzz.com&lt;/a&gt; and Call Us Today at 803-648-8556 to get your ad! 
				</description>
				
				<category>Internet</category>				
				
				<category>Small Business</category>				
				
				<category>HHWD</category>				
				
				<category>browsers</category>				
				
				<pubDate>Mon, 11 Aug 2008 16:37:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/8/11/Help-for-Businesses-on-a-Budget-AikenBuzzcom-Now-Oline</guid>
				
			</item>
			
			<item>
				<title>Quick &amp; Dirty Tricks -- Using CFDUMP inside CFC -- Viewing All Methods, Pt. 2</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/7/2/Quick--Dirty-Trricks--Viewing-Entire-CFC-using-CFDUMP-Pt-2</link>
				<description>
				
				In the second part of CFDump Q&amp;D tricks, you can view the entire methods and settings for a CFC, just like you would see in the &apos;Live Data View&apos; from inside Dreamweaver.

Placing
&lt;cfdump var=&apos;#this#&apos;&gt;
in a CFC outside a function, but inside the &lt;cfcomponent&gt; tags starts the setup and produces a runtime dump that looks like this:

&lt;img src=&quot;http://honeyhousedesigns.com/blog/images//cfcdump.gif&quot; &gt;

Clicking on the linked &apos;component&apos; in that dump will open up the Live data View (note, you&apos;ll need administrator privileges to view the methods).

&lt;img src=&quot;http://honeyhousedesigns.com/blog/images//cfcdmp2.gif&quot;&gt;

And, in keeping with Adobe&apos;s color coding, CFC Dumps are red :). 
				</description>
				
				<category>snippets</category>				
				
				<category>Adobe</category>				
				
				<category>Dreamweaver</category>				
				
				<category>CFCs</category>				
				
				<category>Quick &amp;amp; Dirty Tricks</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Wed, 02 Jul 2008 19:24:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/7/2/Quick--Dirty-Trricks--Viewing-Entire-CFC-using-CFDUMP-Pt-2</guid>
				
			</item>
			
			<item>
				<title>Quick &amp; Dirty -- Using CFDUMP To View CFC Functions</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/7/2/Using-CFDUMP-To-View-CFC-Functions</link>
				<description>
				
				CFDUMP is a quick way to see the contents of variables, structures, arrays, even queries. But it can also be used to quickly see at runtime the parameters and setup of a called CFC Function.

If a &lt;cfdump var=&apos;#functionname#&apos;&gt; is placed inside a CFC Function, then at runtime, the dump generated shows the user quick information regarding the function itself.

&lt;img src=&quot;http://honeyhousedesigns.com/blog/images//fndump.jpg&quot; hspace=&apos;3&apos; vspace=&apos;3&apos;&gt; 

Side Note: Adobe color codes cfdumps (if not overridden by CSS settings). variable and structure dumps are blue, arrays green, queries purple-ish, CFC Methods are red,and CFC functions are brown. Nice tough to pick out types of dumps. 
				</description>
				
				<category>snippets</category>				
				
				<category>Internet</category>				
				
				<category>CFCs</category>				
				
				<category>Quick &amp;amp; Dirty Tricks</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Wed, 02 Jul 2008 19:06:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/7/2/Using-CFDUMP-To-View-CFC-Functions</guid>
				
			</item>
			
			<item>
				<title>Browser Statistics &amp; Monitor Sizes</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/6/10/Browser-Statistics--Monitor-Sizes</link>
				<description>
				
				HHWD had their annual meeting last week. One issue is the continued development of sites that were cross-browser compatible with IE6, IE7, FireFox, Safari, and Opera. We don&apos;t maintains compatibility with Mozilla as most of our Mozilla/Netscape users migrated to FF.

http://www.w3schools.com/browsers/browsers_stats.asp

W3Schools.com maintains a statistical chart of browsers and monitor sizes and is quite useful to determine just what percentage of the population is actually USING a browser.
As of April 2008, these are as follows:
IE7 24.9%
IE6 28.9%
IE5 1.0%
FF 39.1%
Moz 1.0%
Safari 2.2%
Opera  1.4%

Since most of the clients in our geographic region still use IE6, we tend to code to IE6 and tweak sites to fit FF/IE7.  When IE6 drops to less than 25% of users, we plan to update our methodology to code to FF and tweak to IE6.

We will also be dropping Opera as a browser compatibility standard due to its low percentage. It is statistically insignificant.

It is refreshing to see FF steadily gain market share against IE and HHWD has been encouraging clients to consider it as a browser of choice. 
				</description>
				
				<category>Internet</category>				
				
				<category>browsers</category>				
				
				<pubDate>Tue, 10 Jun 2008 06:46:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/6/10/Browser-Statistics--Monitor-Sizes</guid>
				
			</item>
			
			<item>
				<title>Rating Your Site</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/5/6/Rating-Your-Site</link>
				<description>
				
				Having Finished several recent projects ranging from relationship to politics to retail sales, I found the broad spectrum of categories warranted a review of my standard project meta tags.

HHWD has always used the &apos;rating&apos; meta tag &apos;Safe for Kids&apos; in keeping with our policy of family friendly sites. But.. after a number of years, just WHAT is the way the Internet rates websites?

One resource is the &lt;a href=&apos;icra.org&apos;&gt;Family Online Safety Institute&lt;/a&gt;. It provides resources for families, parents, and web designers for rating websites and content. It brings to attention a variety of risk factors for websites, sex, violence, dangerous behaviors and such.

The site has the ability to rate your web project and provides links/images/ratings for it. As a developer, I found it quite interesting to read through the site and rank a few projects. As a mom, even of teens, I was pleased to see an organization as much a &apos;wet-blanket&apos; as I am :) 
				</description>
				
				<category>Teenagers</category>				
				
				<category>Politics</category>				
				
				<category>Family</category>				
				
				<category>Internet</category>				
				
				<category>browsers</category>				
				
				<pubDate>Tue, 06 May 2008 14:03:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/5/6/Rating-Your-Site</guid>
				
			</item>
			
			<item>
				<title>CF8 Installation throws &quot;JNDI listen port in jndi.properties blocked by TCP/IP filtering&quot; Error</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/3/24/CF8-Installation-throws-JNDI-listen-port-in-jndiproperties-blocked-by-TCPIP-filtering-Error</link>
				<description>
				
				I have two CF installations running on separate servers, CFMX7 on my &apos;production&apos; development server and CF8 running on a secondary server I set up at the end of beta testing last summer. I was ready to make my primary server now CF8 as most of my new projects are developed in it. 

Installing CF8 on the secondary server went flawlessly (except for forgetting uninstall Scorpio first). Prior installations of Coldfusion on my dev server also always occurred flawlessly. So, why then, when I attempted to install CF8 did I get a &quot;JNDI listen port in jndi.properties blocked by TCP/IP filtering &quot; error? What is the dickens was that?  Java-ish in nature, I knew I was about to enter the netherworld of java...

(Sidenote, I would LOVE to take a few weeks off to learn the internals of CF, Java, RIA, FLEX, etc... but my project load is SO great, and coldfusion is SO good, I simply haven&apos;t had time.  These are on my list of 100 things to do before I die)

I uninstalled CF8 figuring that was the issue and reinstalled 7... NOPE now CF7 throws the same error... grrr.
Checked the TCPIP of newly installed NIC card... oops, IP doesn&apos;t match IIS, so corrected.... but error remains (suspect this is root of problem)

I had just installed a new lan card, but for the love of mustard couldn&apos;t see why that would cause my Coldfusion to fail. But that indeed was the culprit.

Looking at &lt;a href=&apos;http://russ.michaels.me.uk/index.cfm/2006/10/27/CFMX7-Installation-and-Web-Server-Configuration-Tool-fails-with-JNDI-ports-blocked&apos; target=&apos;_blank&apos;&gt;Russ Michaels blog&lt;/a&gt;, who had a running client with the same issue in 2006, I ran
&lt;em&gt;netstat -an&lt;/em&gt; to see what was listening (Thanks Russ... I would have never thought of that).  Indeed there was not port 2930 listening on my netstat listing as is set up in  &lt;em&gt;&lt;cf-root&gt;\runtime\servers\coldfusion\SERVER-INF\jrun.xml&lt;/em&gt;.

so I looked at the server config and sure enough, my new card&apos;s IP was 192.xxx.xxx.4 instead of  the 192.xxx.xxx.3 used in the IIS server setup. I corrected the card&apos;s IP address  and could not get the system to look and listening (voila-- reboot).

Upon reboot, another netstat command shows that the tcpip port 2930 is now listening and the server will configure as it should. I could have updated the jrun.xml to another port that was listening, but this was more elegant, and I now have it set to what it was before. 
				</description>
				
				<category>Java/Jrun</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Mon, 24 Mar 2008 08:17:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/3/24/CF8-Installation-throws-JNDI-listen-port-in-jndiproperties-blocked-by-TCPIP-filtering-Error</guid>
				
			</item>
			
			<item>
				<title>Quick &amp; Dirty Tricks -- Dynamic CSS</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/2/1/Quick--Dirty-Tricks--Dynamic-CSS</link>
				<description>
				
				Ever have  site that needs CSS to be similar yet different based on user input? Take &lt;a href=&apos;http://hhwd.com&apos;&gt;HHWD&apos;s main site&lt;/a&gt;. We use different colors for different type of categories for our site. Instead of creating multiple DW templates, we can use ColdFusion to set the id or class tag dynamically to determine the format, color, etc for our site. We can even use CF to determine the site settings based on browser.

To do this,
set your tag to be a CF variable
&lt;code&gt;
&lt;div id=&apos;#category#&apos;&gt;
   blah blah code goes here
&lt;/div&gt;
&lt;/code&gt;
where category is a variable previously set. In your CSS file, you can different IDs, classes, and so on that would be called. 

You can even use different CSS files based on variables.

Quick And Dirty, but effective! 
				</description>
				
				<category>CSS</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Fri, 01 Feb 2008 09:08:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/2/1/Quick--Dirty-Tricks--Dynamic-CSS</guid>
				
			</item>
			
			<item>
				<title>Creating a Dynamic Slide Show Using P7 &amp; Coldfusion</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/1/5/Creating-a-Dynamic-Slide-Show-Using-P7--Coldfusion</link>
				<description>
				
				Ever like the &lt;a href=&apos;http://projectseven.com&apos;&gt;Project Seven&lt;/a&gt; Slide Show magic but want to use the functionality of Coldfusion to fill in the thumbnails and images? Well, ok... lets do it.

Open your page to place slide show in and create the basic slide show, filling in a default directory and selecting an image. This creates directories and code populates the default SSM code on your page. 

Once this is created, you can go back in and edit it to fill images in from a query. Interestingly, you only need to update the &lt;li&gt; area with the query output to have the updates reflected both in the thumbnails and the larger images.

With respect to P7&apos;s code, I won&apos;t be cutting/pasting the entire SMM code here, but will only show snippets of strategic locations for place your outputed query.

Once the SMM code is built, find the p7ssm_thumb_section div. Looping through your query/array/list with &lt;li&gt; tag will update your thumbnails.

&lt;code&gt; 
&lt;div class=&quot;p7ssm_thumb_section&quot;&gt;
  &lt;ul&gt;
    &lt;cfoutput query=&apos;foo&apos;&gt;
       &lt;li&gt;&lt;a href=&quot;#foophoto#&quot;&gt;&lt;img src=&quot;#foophoto#&quot; alt=&apos;#fooname#&apos;/&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;/cfoutput&gt;
  &lt;/ul&gt;
  &lt;br class=&quot;p7ssm_clearThumbs&quot; /&gt;
&lt;/div&gt;
&lt;/code&gt;

To update the starting image from the &apos;default&apos; one you used when you set up SMM, go down a tad further in the code, and edit the p7ssm_fsimg div.

&lt;code&gt;
&lt;cfoutput&gt;
&lt;div id=&quot;p7ssm_fsimg&quot;&gt;
  &lt;a id=&quot;p7ssm_fslink&quot;&gt;&lt;img id=&quot;p7ssm_im&quot; name=&quot;p7ssm_im&quot; src=&quot;#foo.foophoto#&quot;  /&gt;&lt;/a&gt;
&lt;/div&gt; 
&lt;/cfoutput&gt;
&lt;/code&gt;


See an example of this here: &lt;a href=&apos;http://hhwd2sandbox.com/harrisonk9/showcase.cfm&apos;&gt;Click on a Dog to see SMM&lt;/a&gt;&lt;br&gt;
This is a site in development due to be rolled out to production soon. As such, the FireFox formatting is still wonky as the client site is validated against IE6 first, and is still being adjusted for more modern browsers. 
				</description>
				
				<category>Internet</category>				
				
				<category>Project Seven</category>				
				
				<category>CSS</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Sat, 05 Jan 2008 02:00:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/1/5/Creating-a-Dynamic-Slide-Show-Using-P7--Coldfusion</guid>
				
			</item>
			
			<item>
				<title>Beware Maintaining Balances continued....</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/12/18/Beware-Maintaining-Balances-continued</link>
				<description>
				
				A few weeks ago I discussed the issue between Coldfusion&apos;s ability to separate sessions among different types of  browsers and sessions. Well, with further testing, the same scenario can also occur with CLIENT variables. The issue being that a user on a single computer, using two different types of browsers, IE and FF, or FF, and Opera... will be given two different session IDs. Maintaining and relying client balance in session IDs will not sync the balance between the two sessions.

If the balance is stored in a client variable as well, the same scenario can occur. While it may not be an issue of the browser per se, I have run into situations where the client ID between two different types of browsers did not match. Any any activity on one did not get reflected to the other.  So Beware..... 
				</description>
				
				<category>Internet</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Tue, 18 Dec 2007 14:59:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/12/18/Beware-Maintaining-Balances-continued</guid>
				
			</item>
			
			<item>
				<title>Beware maintaining Customer Balance Information in Coldfusion&apos;s Traditional Sessions</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/10/24/Beware-maintaining-Customer-Balance-Information-in-Coldfusions-Traditional-Sessions</link>
				<description>
				
				If you are working with logged in users, Coldfusion has an excellent method of maintaining client information in session variables.  Typically, However, beware of session independence between different types of browsers when using traditional ColdFusion session variables (CFID &amp; CFSESSION). When a session variable is updated in one browser, it is not automatically in other browsers. While not a big deal if the variable doesn&apos;t change much, such as the user&apos;s email or name, or even ID number. 

On the other hand, if the variable  contains information that would be &lt;strong&gt;business critical or updated frequently&lt;/strong&gt;, such as account balances, or time logged, using CF &apos;vanilla&apos; session variables (where the session ID are determined by CF administrator) may not be the proper place to store the information to be relied upon.

If a user uses two computers both logged in at the same time, or two different user log in with the same account information simultaneously, we already realize that frequently updated information may lag and not reflect actual values due to activity in the different sessions updating the session variables without regard to the other session.  This same phenomena occurs  [More]
				</description>
				
				<category>Internet</category>				
				
				<category>Adobe</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<category>Databases</category>				
				
				<pubDate>Wed, 24 Oct 2007 09:54:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/10/24/Beware-maintaining-Customer-Balance-Information-in-Coldfusions-Traditional-Sessions</guid>
				
			</item>
			
			<item>
				<title>AOL Nightmares?</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/10/2/AOL-Nightmares</link>
				<description>
				
				October 2007: More and more I am receving phone calls... Seems most of these users are using AOL to email their attachments, photos, etc and the are not coming through. Nope, they are not in my junk filter. It appears as if AOL, in addition a history to blocking emails TO AOL users is also blocking outgoing emails, especially those with attachments. Duh, we&apos;ve all known that for some time. But what can we DO about it?

Quit using AOL. Period. Nada. End of Discussion. This is an issue that is so prevalent, that HHWD is considering no longer accepting the use of AOL emais from clients or use on projects. 

So, to the AOL lovers out there, Here is my question to consider:
&quot;At what point is your business WORTH using a service that 1) Monitors your activity for their purposes (Read their EULA, then check out &lt;a href=&apos;http://www.castlecops.com/article6636.html&apos;&gt;CastleCops info on it&lt;/a&gt;)
2) Determines which of your emails THEY allow to come to you
(and which of your emails GO OUT to others)
3) Uses AOL.com instead of your own business&apos;s name in every single communication you send out 
????? 
				</description>
				
				<category>Internet</category>				
				
				<category>browsers</category>				
				
				<pubDate>Tue, 02 Oct 2007 11:03:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/10/2/AOL-Nightmares</guid>
				
			</item>
			
			<item>
				<title>Getting CFMX Custom CFC to Run on goDaddy</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/8/3/Getting-CFMX-Custom-CFC-to-Run-on-goDaddy</link>
				<description>
				
				I have a client who wanted to keep their current goDaddy hosting for a site redesign project. The site was updated in CFMX7 and used CFC cfobjects throughout. After the site was completed, we realized that goDaddy&apos;s shared hosting disables the function of any customized CFObjects.

However, goDaddy does not seem to restrict CFINVOKE. A quick search of all &apos;cfobject&apos; or &apos;Createobject&apos; tags throughout the site was done. All the createobjects and cfobjects were removed, and all related cfc functions calls were updated to CFINVOKE commands.

And voila-- it works. You can see the site here: &lt;a href=&apos;http:erllc.us&apos;&gt;ERLLC&lt;/a&gt; 
				</description>
				
				<category>browsers</category>				
				
				<pubDate>Fri, 03 Aug 2007 08:04:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/8/3/Getting-CFMX-Custom-CFC-to-Run-on-goDaddy</guid>
				
			</item>
			</channel></rss>