<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" media="screen" href="http://feeds.zadrosolutions.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ZADRO Solutions</title>
	
	<link>http://www.zadrosolutions.com/blog</link>
	<description>Improving Your Technology</description>
	<pubDate>Mon, 24 May 2010 13:59:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.zadrosolutions.com/ZadroSolutions" /><feedburner:info uri="zadrosolutions" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:feedFlare href="http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://plusmo.com/res/graphics/fbplusmo.gif">Subscribe with Plusmo</feedburner:feedFlare><feedburner:feedFlare href="http://www.thefreedictionary.com/_/hp/AddRSS.aspx?http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://img.tfd.com/hp/addToTheFreeDictionary.gif">Subscribe with The Free Dictionary</feedburner:feedFlare><feedburner:feedFlare href="http://www.bitty.com/manual/?contenttype=rssfeed&amp;contentvalue=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://www.bitty.com/img/bittychicklet_91x17.gif">Subscribe with Bitty Browser</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><feedburner:feedFlare href="http://mix.excite.eu/add?feedurl=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://image.excite.co.uk/mix/addtomix.gif">Subscribe with Excite MIX</feedburner:feedFlare><feedburner:feedFlare href="http://www.webwag.com/wwgthis.php?url=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://www.webwag.com/images/wwgthis.gif">Subscribe with Webwag</feedburner:feedFlare><feedburner:feedFlare href="http://www.podcastready.com/oneclick_bookmark.php?url=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://www.podcastready.com/images/podcastready_button.gif">Subscribe with Podcast Ready</feedburner:feedFlare><feedburner:feedFlare href="http://www.wikio.com/subscribe?url=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://www.wikio.com/shared/img/add2wikio.gif">Subscribe with Wikio</feedburner:feedFlare><feedburner:feedFlare href="http://www.dailyrotation.com/index.php?feed=http%3A%2F%2Ffeeds.zadrosolutions.com%2FZadroSolutions" src="http://www.dailyrotation.com/rss-dr2.gif">Subscribe with Daily Rotation</feedburner:feedFlare><item>
		<title>Sending mail in PHP - avoid sending to junk folder</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/Xm8WUeOjB2Y/</link>
		<comments>http://www.zadrosolutions.com/blog/php/sending-mail-in-php-avoid-sending-to-junk-folder/#comments</comments>
		<pubDate>Mon, 24 May 2010 13:59:16 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=174</guid>
		<description><![CDATA[We all know that PHP is great for back-end development. However, some functions can be tricky to fine tune for the best web development possible. The mail() function has a high probability of sending mail to user&#8217;s &#8220;junk&#8221; or spam folders because the connection was not authenticated. To avoid that, use the following function below. [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that PHP is great for back-end development. However, some functions can be tricky to fine tune for the best <a href="http://www.zadrosolutions.com/web/development">web development</a> possible. The mail() function has a high probability of sending mail to user&#8217;s &#8220;junk&#8221; or spam folders because the connection was not authenticated. To avoid that, use the following function below. This assumes you have PEAR setup and working properly.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw1">require_once</span> <span class="st0">&quot;Mail.php&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2">&nbsp;<span class="re0">$from</span> = <span class="st0">&quot;Sandra Sender &lt;sender@example.com&gt;&quot;</span>; &nbsp;<span class="re0">$to</span> = <span class="st0">&quot;Ramona Recipient &lt;recipient@example.com&gt;&quot;</span>; &nbsp;<span class="re0">$subject</span> = <span class="st0">&quot;Hi!&quot;</span>; &nbsp;<span class="re0">$body</span> = <span class="st0">&quot;Hi,<span class="es0">\n</span><span class="es0">\n</span>How are you?&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="re0">$host</span> = <span class="st0">&quot;mail.example.com&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="re0">$username</span> = <span class="st0">&quot;smtp_username&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="re0">$password</span> = <span class="st0">&quot;smtp_password&quot;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="re0">$headers</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a> <span class="br0">&#40;</span><span class="st0">&#8216;From&#8217;</span> =&gt; <span class="re0">$from</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="st0">&#8216;To&#8217;</span> =&gt; <span class="re0">$to</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="st0">&#8216;Subject&#8217;</span> =&gt; <span class="re0">$subject</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="re0">$smtp</span> = <a href="http://www.php.net/mail"><span class="kw3">Mail</span></a>::<span class="me2">factory</span><span class="br0">&#40;</span><span class="st0">&#8217;smtp&#8217;</span>,</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;<a href="http://www.php.net/array"><span class="kw3">array</span></a> <span class="br0">&#40;</span><span class="st0">&#8216;host&#8217;</span> =&gt; <span class="re0">$host</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="st0">&#8216;auth&#8217;</span> =&gt; <span class="kw2">true</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="st0">&#8216;username&#8217;</span> =&gt; <span class="re0">$username</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="st0">&#8216;password&#8217;</span> =&gt; <span class="re0">$password</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2">&nbsp;<span class="re0">$mail</span> = <span class="re0">$smtp</span>-&gt;<span class="me1">send</span><span class="br0">&#40;</span><span class="re0">$to</span>, <span class="re0">$headers</span>, <span class="re0">$body</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span>PEAR::<span class="me2">isError</span><span class="br0">&#40;</span><span class="re0">$mail</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<a href="http://www.php.net/echo"><span class="kw3">echo</span></a><span class="br0">&#40;</span><span class="st0">&quot;&lt;p&gt;&quot;</span> . <span class="re0">$mail</span>-&gt;<span class="me1">getMessage</span><span class="br0">&#40;</span><span class="br0">&#41;</span> . <span class="st0">&quot;&lt;/p&gt;&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;<a href="http://www.php.net/echo"><span class="kw3">echo</span></a><span class="br0">&#40;</span><span class="st0">&quot;&lt;p&gt;Message successfully sent!&lt;/p&gt;&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/Xm8WUeOjB2Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/php/sending-mail-in-php-avoid-sending-to-junk-folder/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/php/sending-mail-in-php-avoid-sending-to-junk-folder/</feedburner:origLink></item>
		<item>
		<title>jQuery slideUp stops working in 1.3.2</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/TMdjGs0Rei8/</link>
		<comments>http://www.zadrosolutions.com/blog/ajax/jquery-slideup-stops-working-in-132/#comments</comments>
		<pubDate>Wed, 19 May 2010 22:14:50 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=165</guid>
		<description><![CDATA[After testing across a couple browsers and having some of them work. I figured there must be a bug in jquery. Turns out I was correct. Here&#8217;s the quick fix. Please make sure to backup your .js files before making any changes to them. Use these updates at your own risk. I will post the [...]]]></description>
			<content:encoded><![CDATA[<p>After testing across a couple browsers and having some of them work. I figured there must be a bug in jquery. Turns out I was correct. Here&#8217;s the quick fix. Please make sure to backup your .js files before making any changes to them. Use these updates at your own risk. I will post the related jquery references at the end of this post. Make sure to check which version of jquery you&#8217;re using first. Generally, there is the normal version and min version. I do not have the fix for the compact version listed.</p>
<p><strong>For the &#8220;normal&#8221; version:</strong></p>
<p>Find the code:<br />
return elem.offsetWidth === 0 || elem.offsetHeight === 0</p>
<p>Change to:<br />
return elem.offsetWidth === 0 &#038;&#038; elem.offsetHeight === 0</p>
<p><strong>For the &#8220;min&#8221; version:</strong></p>
<p>Find the code:<br />
return T.offsetWidth===0||T.offsetHeight===0</p>
<p>Change to:<br />
return T.offsetWidth===0&#038;&#038;T.offsetHeight===0</p>
<p>This is the ticket regarding the issue:<br />
<a href="http://dev.jquery.com/ticket/4374 ">http://dev.jquery.com/ticket/4374 </a></p>
<p>And here&#8217;s the fix for it:<br />
<a href="http://dev.jquery.com/changeset/6282 ">http://dev.jquery.com/changeset/6282 </a></p>
<p>That&#8217;s it!</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/TMdjGs0Rei8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/ajax/jquery-slideup-stops-working-in-132/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/ajax/jquery-slideup-stops-working-in-132/</feedburner:origLink></item>
		<item>
		<title>What is Social Media?</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/05epqtmSdEU/</link>
		<comments>http://www.zadrosolutions.com/blog/seo/what-is-social-media/#comments</comments>
		<pubDate>Wed, 05 May 2010 20:07:40 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[sem]]></category>

		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=157</guid>
		<description><![CDATA[I attended a conference yesterday where one of the topics was, &#8220;What is Social Media?&#8221;. I have to mention up front that all the audience members were business owners or representing their business. There was a panel of 4 &#8220;experts&#8221; that, quite honestly, didn&#8217;t do the topic justice. They completely left out the most important [...]]]></description>
			<content:encoded><![CDATA[<p>I attended a conference yesterday where one of the topics was, &#8220;What is Social Media?&#8221;. I have to mention up front that all the audience members were business owners or representing their business. There was a panel of 4 &#8220;experts&#8221; that, quite honestly, didn&#8217;t do the topic justice. They completely left out the most important part of social media when running a business. We will get to that in a little bit.</p>
<p>Their first question to the audience was to define social media. I thought this was an excellent way to open the segment. And, people in the audience rambled off all the buzzwords: Facebook, Twitter, YouTube, MySpace, and the rest. The second question was to define the <strong>use</strong> of social media. Almost the entire audience thought social media was nothing more than a &#8220;networking&#8221; tool!</p>
<p>Even worse, more people in the audience are networking via LinkedIn rather than Facebook. With 435 million subscribers on Facebook and only 65 million on LinkedIn&#8230;well, you do the math. One might argue that LinkedIn is more &#8220;professional&#8221; than Facebook. This might be a valid argument, but we still didn&#8217;t get to the <strong>1 and only point to social media</strong> for business.</p>
<p>Ok, I won&#8217;t keep you waiting any longer. The ONLY reason you should be leveraging Social Media in your business plan is to <strong>drive traffic to your website!</strong> Period. You can have a thousand friends following you on Twitter, but if you&#8217;re not directing them to useful information on your website, it&#8217;s all pointless. All the social media outlets should be used and treated like the rest of your marketing material. Actually, this is the new way to market. Print media has been dead for a while. TV ads are great for Coke and Pepsi, but most companies can&#8217;t compete at that level.</p>
<p>It doesn&#8217;t matter where the traffic is coming from. As long as your name is out there. The larger the reach, the more traffic you drive to your website. Simple, right? LinkedIn isn&#8217;t even in the top 20 when it comes to site ranking. For site ranking, check out <a href="http://www.alexa.com/topsites">Alexa</a>.</p>
<p>Once you leverage social media to drive traffic to your website with useful content, you will gain Page Rank on your website. Gaining page rank on your website means better results in Google, Yahoo, and Bing. Bottom line is that Social Media is a powerful tool to increase your <a href="http://www.zadrosolutions.com/web/seo-sem">SEO </a>efforts by driving traffic to your website. That&#8217;s it!</p>
<p>If you would like to setup a proactive plan to increase traffic to your website through proper <a href="http://www.zadrosolutions.com/web/seo-sem">Search Engine Optimization</a>, please click on <a href="http://www.zadrosolutions.com/contact">contact </a>and reach out. There is no obligation and the benefit could easily double your leads and call volume when done correctly. </p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/05epqtmSdEU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/seo/what-is-social-media/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/seo/what-is-social-media/</feedburner:origLink></item>
		<item>
		<title>noindex and nofollow explained</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/kXrI_fp63no/</link>
		<comments>http://www.zadrosolutions.com/blog/seo/noindex-and-nofollow-explained/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 16:16:01 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[nofollow]]></category>

		<category><![CDATA[noindex]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=150</guid>
		<description><![CDATA[There are a lot of people who throw around these search engine optimization terms as if they know what they&#8217;re talking about. I&#8217;m going to try and break it down in layman&#8217;s terms so that you can talk intelligently about them to others.
Also, you might have heard people mention &#8220;dofollow&#8217; links. I just want to [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of people who throw around these <a href="http://www.zadrosolutions.com/web/seo-sem">search engine optimization</a> terms as if they know what they&#8217;re talking about. I&#8217;m going to try and break it down in layman&#8217;s terms so that you can talk intelligently about them to others.</p>
<p>Also, you might have heard people mention &#8220;dofollow&#8217; links. I just want to make you aware that no such link exists in the source code. It is only a term to describe the opposite of a &#8220;nofollow&#8221; link. Ok, let&#8217;s get started&#8230;</p>
<p>I&#8217;m sure you&#8217;re more than aware that &#8220;robots&#8221; crawl websites. This is how the big dogs such as Google, Yahoo!, and Bing store or index your page in their database servers. There are a lot of other crawlers or spiders out there doing the same thing. They all act a little differently. Just know that &#8220;indexing&#8221; a page is nothing more than the search engine company adding it to their database. </p>
<p>The &#8220;nofollow&#8221; tag is used to disallow the page rank of linking site to affect your site. If you&#8217;re just getting your site off the ground, you probably wouldn&#8217;t want to &#8220;nofollow&#8221; any links in hopes to gain the page rank (PR) of the link. The robots don&#8217;t crawl what we humans see in the browser, but rather the source code behind the scenes. If you ever want to look at the &#8220;source&#8221; of a website, just right-click on the page and choose &#8220;view source code&#8221;. </p>
<p>Once you get into the source code, you will see a lot of stuff going on in there. For this topic, we are only concerned with the stuff between the &#8220;head&#8221; tags or on an anchor tag. Let&#8217;s start with the &#8220;head&#8221; tag.</p>
<p>In the &#8220;head&#8221; tag, you can apply the &#8220;noindex&#8221; and &#8220;nofollow&#8221; tag to the entire page like so:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&lt;meta name=<span class="st0">&quot;robot&quot;</span> <span class="kw1">content</span>=<span class="st0">&quot;noindex,nofollow&quot;</span>&gt;</div>
</li>
</ol>
</div>
<p>Doing this at the page level of your site is very dangerous to YOUR page. Once Google gets a &#8220;noindex&#8221; directive on a page/link, it will remove it from their servers. If you have a custom footer with links to your site, you are hurting all YOUR links! On the flip side, if you have a family photo album or private landing pages, this is a great idea to keep them private. Again, make sure you don&#8217;t have any links on the page that you WANT to be indexed. The &#8220;nofollow&#8221; attribute will not give any rank back to all the links on the page.</p>
<p>The other way to apply these attributes is in the link like so:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&lt;a href=<span class="st0">&quot;http://www.example.com/&quot;</span> rel=<span class="st0">&quot;nofollow&quot;</span>&gt;anchor text&lt;/a&gt;</div>
</li>
</ol>
</div>
<p>Just know that the &#8220;noindex&#8221; link can only be applied in the meta tag like in the first example. This second example is showing how to protect your page by not allow the specific link(s) to affect your rank. If you don&#8217;t use the &#8220;nofollow&#8221; attribute on links or pages, you will be passing your valuable rank to them. If they don&#8217;t reciprocate a link back to you, I would &#8220;nofollow&#8221; all links. Most blog sites will apply the &#8220;nofollow&#8221; attribute to all their comments.</p>
<p>Hope this helps in your quest to climb the ranks of SEO! </p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/kXrI_fp63no" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/seo/noindex-and-nofollow-explained/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/seo/noindex-and-nofollow-explained/</feedburner:origLink></item>
		<item>
		<title>Avaya IP Office 4.2 Direct Voicemail Transfer</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/DItF_8YyQjs/</link>
		<comments>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-ip-office-42-direct-voicemail-transfer/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 17:46:16 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[Avaya IP Office]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=145</guid>
		<description><![CDATA[Most clients want a &#8220;transfer to voicmail&#8221; button. I don&#8217;t know why Avaya doesn&#8217;t just make this a simple feature. Regardless, I could not get this to work. I&#8217;ve done it a 100 times, but still no luck. It seems that there might be something wrong with 4.2 and specifically build 4. More than likely, [...]]]></description>
			<content:encoded><![CDATA[<p>Most clients want a &#8220;transfer to voicmail&#8221; button. I don&#8217;t know why Avaya doesn&#8217;t just make this a simple feature. Regardless, I could not get this to work. I&#8217;ve done it a 100 times, but still no luck. It seems that there might be something wrong with 4.2 and specifically build 4. More than likely, your IP Office 406v2 already has build 5 ready to upgrade. You can check by:</p>
<p>File -> advanced -> upgrade</p>
<p>You will see any available builds. <strong>BUT WAIT: before you do the upgrade, make sure your phones are prepared for the firmware upgrade.</strong> Your phones, in my case usually a 5410, will get it&#8217;s directive from the NoUser profile. Simply go in this profile and add a new source number:</p>
<p>ALLOW_5410_UPGRADES</p>
<p>Now you can go back to the system upgrade in the first step above. After that is complete, you can add the short code:</p>
<p>Code: #XXX<br />
Feature: Voicemail Collect<br />
Tel Number: &#8220;#&#8221;N</p>
<p>That should do it.</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/DItF_8YyQjs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-ip-office-42-direct-voicemail-transfer/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-ip-office-42-direct-voicemail-transfer/</feedburner:origLink></item>
		<item>
		<title>Windows Command Line and Shortcuts</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/l3Ng6yrlg4U/</link>
		<comments>http://www.zadrosolutions.com/blog/computer/windows-command-line-and-shortcuts/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 22:11:33 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[windows shortcuts]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=141</guid>
		<description><![CDATA[Everyone can use a handy little cheat sheet for all the Windows shortcuts and command line references. The first part of this list are commands you can type directly into the &#8220;run&#8221; box of Windows XP. For Windows Vista and Windows 7, just click the circle start button and type in the part before the [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone can use a handy little cheat sheet for all the Windows shortcuts and command line references. The first part of this list are commands you can type directly into the &#8220;run&#8221; box of Windows XP. For Windows Vista and Windows 7, just click the circle start button and type in the part before the dash for quick access to that service. The second part of this list are useful Windows shortcuts that everyone can use daily. Hope this saves you some time when on Windows.</p>
<p>Calc - Calculator<br />
Cfgwiz32 - ISDN Configuration Wizard<br />
Charmap - Character Map<br />
Chkdisk - Repair damaged files<br />
Cleanmgr - Cleans up hard drives<br />
Clipbrd - Windows Clipboard viewer<br />
Cmd - Opens a new Command Window (cmd.exe)<br />
Control - Displays Control Panel<br />
Dcomcnfg - DCOM user security<br />
Debug - Assembly language programming tool<br />
Defrag - Defragmentation tool<br />
Drwatson - Records programs crash &#038; snapshots<br />
Dxdiag - DirectX Diagnostic Utility<br />
Explorer - Windows Explorer<br />
Fontview - Graphical font viewer<br />
Ftp - ftp.exe program<br />
Hostname - Returns Computer&#8217;s name<br />
Ipconfig - Displays IP configuration for all network adapters<br />
Jview - Microsoft Command-line Loader for Java classes<br />
MMC - Microsoft Management Console<br />
Msconfig - Configuration to edit startup files<br />
Msinfo32 - Microsoft System Information Utility<br />
Nbtstat - Displays stats and current connections using NetBios over TCP/IP<br />
Netstat - Displays all active network connections<br />
Nslookup- Returns your local DNS server<br />
Ping - Sends data to a specified host/IP<br />
Regedit - egistry Editor<br />
Regsvr32 - egister/de-register DLL/OCX/ActiveX<br />
Regwiz - Reistration wizard<br />
Sfc /scannow - Sytem File Checker<br />
Sndrec32 - Sound Recorder<br />
Sndvol32 - Volume control for soundcard<br />
Sysedit - Edit system startup files (config.sys, autoexec.bat, win.ini, etc.)<br />
Taskmgr - Task manager<br />
Telnet - Telnet program<br />
Tracert - Traces and displays all paths required to reach an internet host<br />
Winipcfg - Displays IP configuration<br />
certmgr.msc - Certificate Manager<br />
ciadv.msc - Indexing Service<br />
compmgmt.msc - Computer management<br />
devmgmt.msc - Device Manager<br />
dfrg.msc - Defragment<br />
diskmgmt.msc - Disk Management<br />
fsmgmt.msc - Folder Sharing Management<br />
eventvwr.msc - Event Viewer<br />
gpedit.msc - Group Policy -XP Pro only<br />
iis.msc - Internet Information Services<br />
lusrmgr.msc - Local Users and Groups<br />
mscorcfg.msc - Net configurations<br />
ntmsmgr.msc - Removable Storage<br />
perfmon.msc - Performance Manager<br />
secpol.msc - Local Security Policy<br />
services.msc - System Services<br />
wmimgmt.msc - Windows Management<br />
access.cpl - Accessibility Options<br />
hdwwiz.cpl - Add New Hardware Wizard<br />
appwiz.cpl - dd/Remove Programs<br />
timedate.cpl - Date and Time Properties<br />
desk.cpl - Display Properties<br />
inetcpl.cpl - Internet Properties<br />
joy.cpl - Joystick Properties<br />
main.cpl keboard - Keyboard Properties<br />
main.cpl - Mouse Properties<br />
ncpa.cpl - Network Connections<br />
ncpl.cpl - Network Properties<br />
telephon.cpl - Phone and Modem options<br />
powercfg.cpl - Power Management<br />
intl.cpl - Regional settings<br />
mmsys.cpl sounds - Sound Properties<br />
mmsys.cpl - Sounds and Audio Device Properties<br />
sysdm.cpl - System Properties<br />
nusrmgr.cpl - User settings<br />
firewall.cpl - Firewall Settings (sp2)<br />
wscui.cpl - Security Center (sp2) </p>
<p>%ALLUSERSPROFILE% - Open the All User&#8217;s Profile<br />
%HomeDrive% - Opens your home drive e.g. C:\<br />
%UserProfile% - Opens you User&#8217;s Profile<br />
%temp% Opens - temporary file Folder<br />
%systemroot% - Opens Windows folder </p>
<p>CTRL+C(Copy)<br />
CTRL+X (Cut)<br />
CTRL+Z (Undo)<br />
DELETE (Delete)<br />
SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)<br />
CTRL while dragging an item (Copy the selected item)<br />
CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)<br />
F2 key (Rename the selected item)<br />
CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)<br />
CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)<br />
CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)<br />
CTRL+SHIFT with any of the arrow keys (Highlight a block of text)<br />
CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)<br />
SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)<br />
CTRL+A (Select all)<br />
F3 key (Search for a file or a folder)<br />
ALT+ENTER (View the properties for the selected item)<br />
ALT+F4 (Close the active item, or quit the active program)<br />
ALT+ENTER (Display the properties of the selected object)<br />
ALT+SPACEBAR (Open the shortcut menu for the active window)<br />
CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)<br />
ALT+TAB (Switch between the open items)<br />
ALT+ESC (Cycle through items in the order that they had been opened)<br />
F6 key (Cycle through the screen elements in a window or on the desktop)<br />
F4 key (Display the Address bar list in My Computer or Windows Explorer)<br />
SHIFT+F10 (Display the shortcut menu for the selected item)<br />
ALT+SPACEBAR (Display the System menu for the active window)<br />
CTRL+ESC (Display the Start menu)<br />
ALT+Underlined letter in a menu name (Display the corresponding menu)<br />
Underlined letter in a command name on an open menu (Perform the corresponding command)<br />
F10 key (Activate the menu bar in the active program)<br />
RIGHT ARROW (Open the next menu to the right, or open a submenu)<br />
LEFT ARROW (Open the next menu to the left, or close a submenu)<br />
F5 key (Update the active window)<br />
BACKSPACE (View the folder one level up in My Computer or Windows Explorer)<br />
ESC (Cancel the current task)<br />
SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)<br />
CTRL+SHIFT+ESC (Open Task Manager </p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/l3Ng6yrlg4U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/computer/windows-command-line-and-shortcuts/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/computer/windows-command-line-and-shortcuts/</feedburner:origLink></item>
		<item>
		<title>Disable Windows Genuine Advantage for MS Office</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/EAndLHaUt7g/</link>
		<comments>http://www.zadrosolutions.com/blog/ms-office/disable-windows-genuine-advantage-for-ms-office/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:52:04 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[MS Office]]></category>

		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=133</guid>
		<description><![CDATA[You might come across some clients that have VALID volume license keys for office, but Windows is still flagging the Office application as not genuine. This could happen if the user might have installed a version in the past that wasn&#8217;t licensed properly. Here&#8217;s a solution to remove the message. Again, this is only to [...]]]></description>
			<content:encoded><![CDATA[<p>You might come across some clients that have VALID volume license keys for office, but Windows is still flagging the Office application as not genuine. This could happen if the user might have installed a version in the past that wasn&#8217;t licensed properly. Here&#8217;s a solution to remove the message. Again, this is only to be done if the VLK is VALID.</p>
<p>   1. Run Registry Editor (RegEdit.exe)<br />
   2. Highlight and select &#8220;my computer&#8221; on the left<br />
   3. Press Ctrl-F to open search box, and search for OGAAddin.connect registry key<br />
   4. Press F3 until you see LoadBehavior in the right side<br />
   5. In the right pane, right click on Load Behavior and select Modify<br />
   6. Change the value data from 3 to 0<br />
   7. Repeat steps 4-6 for each and every LoadBehavior found</p>
<p>Changes to the registry are at your OWN RISK.</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/EAndLHaUt7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/ms-office/disable-windows-genuine-advantage-for-ms-office/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/ms-office/disable-windows-genuine-advantage-for-ms-office/</feedburner:origLink></item>
		<item>
		<title>Avaya VM Pro Nights Fallback Different Greeting</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/REC0Il-5vcI/</link>
		<comments>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-vm-pro-nights-fallback-different-greeting/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 02:24:14 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[Avaya IP Office]]></category>

		<category><![CDATA[BlackBerry]]></category>

		<category><![CDATA[Avaya]]></category>

		<category><![CDATA[vm pro]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=129</guid>
		<description><![CDATA[You might need to have a greeting for the &#8220;main&#8221; route and one for the &#8220;nights&#8221; mode. VM Pro doesn&#8217;t really operate as you might intuitively think with the help documentation. You would think that the Night Fallback Group would go directly into that auto-attendant, but it doesn&#8217;t. So how do you do it?
First, you [...]]]></description>
			<content:encoded><![CDATA[<p>You might need to have a greeting for the &#8220;main&#8221; route and one for the &#8220;nights&#8221; mode. VM Pro doesn&#8217;t really operate as you might intuitively think with the help documentation. You would think that the Night Fallback Group would go directly into that auto-attendant, but it doesn&#8217;t. So how do you do it?</p>
<p>First, you need to create two groups. The first group can be called <strong>Main</strong> and the second will be <strong>Nights</strong>. Next, make a new short code *800 where Feature: <strong>VM Collect</strong> and Telephone Number: <strong>#Nights</strong>. You will also create a virtual user called <strong>NightUser</strong>. A virtual user is nothing more than a user with no extension. Make this virtual user unconditional forward to *800 (the new short code).</p>
<p>For the Main group:</p>
<p>1. Make sure queuing if off<br />
2. Make sure voicemail is on<br />
3. The ring mode should be collective<br />
4. Fallback for the night service will be the Nights group<br />
5. Add your users that should ring in the office</p>
<p>For the Nights group:</p>
<p>1. Make sure queuing is off<br />
2. Make sure vm is on<br />
3. Ring mode has to be sequential<br />
4. <none> for all fallback groups<br />
5. Add ONLY NightUser to this user list</p>
<p>Now, you can build 2 different auto-attendants. One for Main and one for Nights.</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/REC0Il-5vcI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-vm-pro-nights-fallback-different-greeting/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/avaya-ip-office/avaya-vm-pro-nights-fallback-different-greeting/</feedburner:origLink></item>
		<item>
		<title>Photoshop Rounded Corners</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/_N_7OX8Re1M/</link>
		<comments>http://www.zadrosolutions.com/blog/photoshop/photoshop-rounded-corners/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 04:58:57 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[Photoshop]]></category>

		<category><![CDATA[round corners]]></category>

		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=123</guid>
		<description><![CDATA[The latest buzz is web 2.0, and the web design is usually with lots of rounded corners. To achieve this effect is pretty simple. Open your image in Photoshop and let&#8217;s get started.
1. Create a new layer
2. Pick the rounded rectangle shape
3. Choose the &#8220;paths&#8221; and Set the radius to 7px

4. Draw a rectangle, but [...]]]></description>
			<content:encoded><![CDATA[<p>The latest buzz is <a href="http://www.zadrosolutions.com">web 2.0</a>, and the <a href="http://www.zadrosolutions.com/web/design">web design</a> is usually with lots of rounded corners. To achieve this effect is pretty simple. Open your image in Photoshop and let&#8217;s get started.</p>
<p>1. Create a new layer<br />
2. Pick the rounded rectangle shape<br />
3. Choose the &#8220;paths&#8221; and Set the radius to 7px<br />
<img src="http://www.zadrosolutions.com/examples/images/ps-round-corners.gif" alt="Rounded Corners" /><br />
4. Draw a rectangle, but don&#8217;t worry about getting it all the way into the corners<br />
5. Now, hit Ctrl+T and pull the shape into the corners<br />
6. Make the path a selection<br />
7. hit Ctrl+Shft+I to get the inverse<br />
8. Select your (unlocked) background layer and delete the corners!</p>
<p>Hope that helps save you some time and gets you the web 2.0 rounded corners effect.</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/_N_7OX8Re1M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/photoshop/photoshop-rounded-corners/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/photoshop/photoshop-rounded-corners/</feedburner:origLink></item>
		<item>
		<title>Facebook Options Greyed out on BlackBerry</title>
		<link>http://feeds.zadrosolutions.com/~r/ZadroSolutions/~3/HhcUVJwMZto/</link>
		<comments>http://www.zadrosolutions.com/blog/blackberry/facebook-options-greyed-out-on-blackberry/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:45:59 +0000</pubDate>
		<dc:creator>Dario Zadro</dc:creator>
		
		<category><![CDATA[BlackBerry]]></category>

		<category><![CDATA[bes]]></category>

		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.zadrosolutions.com/blog/?p=119</guid>
		<description><![CDATA[First, you need to have access to your BlackBerry Enterprise Server&#8230;or be friends with the IT department. This is a cool feature to have if you use Facebook like I do. All the pictures, phone numbers, and events will have access to your phone. If you don&#8217;t like what it does, you always have the [...]]]></description>
			<content:encoded><![CDATA[<p>First, you need to have access to your BlackBerry Enterprise Server&#8230;or be friends with the <a href="http://www.zadrosolutions.com/">IT department</a>. This is a cool feature to have if you use <a href="http://www.facebook.com/#!/pages/ZADRO-Solutions-Chicago-Computer-and-Web/177188565520">Facebook</a> like I do. All the pictures, phone numbers, and events will have access to your phone. If you don&#8217;t like what it does, you always have the option to turn it back off.</p>
<p>The directions are so spread out across multiple BlackBerry forums and BlackBerry&#8217;s actual website. I thought I would make one nice set of instructions here.</p>
<p>1. Grab the &#8220;Value Added&#8221; IT Policy <a href="http://www.blackberry.com/btsc/search.do?cmd=displayKC&#038;docType=kc&#038;externalId=KB15535">here</a>. At the bottom of the article is a link to a zip file that you will need to download the the BES server. Obviously, extract the contents.</p>
<p>2. Open BES Manager. On the left, highlight <strong>BlackBerry Domain</strong> then click <strong>Global </strong>tab. Next, along the right, expand <strong>Service Control and Customization</strong>. Click the <strong>Import IT Policy Definitions</strong> link. Navigate and find the XML document you extracted in #1 above.</p>
<p>3. Considering you only have 1 default IT Policy, it&#8217;s now time to modify it. While still on the <strong>Global</strong> tab in BES Manager, click <strong>Edit Properties</strong> in the tasks menu on the right. A new window will pop up. Now click <strong>IT Policy</strong> on the left and double-click <strong>IT Policies</strong> on the right. You will see your <strong>default</strong> policy listed, double-click it. Scroll down until you see <strong>RIM Value Added Applications</strong>. Find <strong>Disable organizer data access for social networking applications</strong> and set it to <strong>false</strong>.</p>
<p>4. For good measure, restart the Microsoft Exchange System Attendant service, which will also restart all the BB services.</p>
<p>Give your BB about 15 minutes and the <a href="http://www.facebook.com/#!/pages/ZADRO-Solutions-Chicago-Computer-and-Web/177188565520">Facebook</a> options will no longer be grey. Now you don&#8217;t have to remember calendar events or anyone&#8217;s birthday; your BlackBerry will do it for you! For corporate setup, click on <a href="http://www.zadrosolutions.com/">Chicago IT Consulting Company</a>.</p>
<img src="http://feeds.feedburner.com/~r/ZadroSolutions/~4/HhcUVJwMZto" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zadrosolutions.com/blog/blackberry/facebook-options-greyed-out-on-blackberry/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.zadrosolutions.com/blog/blackberry/facebook-options-greyed-out-on-blackberry/</feedburner:origLink></item>
	</channel>
</rss>
