<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sunware Technologies</title>
	<atom:link href="http://sunwaretech.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://sunwaretech.net</link>
	<description>Your web partner</description>
	<lastBuildDate>Tue, 12 Jun 2012 06:47:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>htaccess tutorial</title>
		<link>http://sunwaretech.net/htaccess-tutorial/</link>
		<comments>http://sunwaretech.net/htaccess-tutorial/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 06:31:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/?p=682</guid>
		<description><![CDATA[Summary In this tutorial you will find out about the .htaccess file and the power it has to improve your website. Creating a .htaccess File Alternative Index Files Custom Error Pages Stop a Directory Index From Being Shown Deny/Allow Certian IP Addresses Redirection Password Protection &#160; Creating a .htaccess File You can create a .htaccess [...]]]></description>
				<content:encoded><![CDATA[<div align="left">
<h2>Summary</h2>
</div>
<p>In this tutorial you will find out about the .htaccess file and the power it has to improve your website.</p>
<div>
<hr />
<ul>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#Creating%20A%20.htaccess%20File">Creating a .htaccess File </a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#index-files">Alternative Index Files</a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#error-pages">Custom Error Pages</a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#directory-index">Stop a Directory Index From Being Shown</a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#deny-ip">Deny/Allow Certian IP Addresses</a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#redirect">Redirection</a></li>
<li><a href="http://sunwaretech.net/htaccess-tutorial/#password-protect">Password Protection</a></li>
</ul>
<hr />
<p>&nbsp;</p>
</div>
<div align="left">
<h3><a name="Creating A .htaccess File"></a>Creating a .htaccess File</h3>
</div>
<p>You can create a .htaccess file on your local computer or on the server.</p>
<h4>On your computer:</h4>
<p><strong>Windows:</strong> Using Notepad save the file as .htaccess</p>
<p><strong>Mac OS X:</strong> Using TextEdit save the file as &#8220;.htaccess&#8221;<br />
Note: If you save the file as .htaccess if will be hidden and you will not be able to see it in the Finder.</p>
<p>Using your preferred FTP client upload the file to the server. The .htaccess file will need to be in folder where your site is located, typically the public_html folder.</p>
<h4>On the server</h4>
<ol>
<li>Login to your cPanel Account</li>
<li>Click the <strong>File Manager</strong> icon, located in the <strong>Files</strong> section.</li>
<li>From the File Manger popup choose <strong>&#8220;Choose Hidden Files (dotfiles).&#8221;</strong><br />
Note: If you do not see this popup you will need to click the <strong>&#8220;reset all interface settings&#8221;</strong> link at the bottom of the cPanel page.</li>
<li>From the File Manager popup choose the folder you would like to open, most often the <strong>&#8220;Web Root (public_html/www)&#8221;</strong></li>
<li>Click the <strong>Go</strong> button.<br />
Note: If you are in the File Manager already you can add <em>&amp;showhidden=1</em> to the end of the URL.</li>
<li>Click the <strong>New File</strong> icon to create a new file and name it .htaccess</li>
</ol>
<div align="left">
<h3><a name="index-files"></a>Alternative Index Files</h3>
</div>
<p>You may not always want to use index.htm or index.html as your index file for a directory, for example if you are using PHP files in your site, you may want index.php to be the index file for a directory. You are not limited to &#8216;index&#8217; files though. Using .htaccess you can set foofoo.blah to be your index file if you want to!</p>
<p>Alternate index files are entered in a list. The server will work from left to right, checking to see if each file exists, if none of them exist it will display a directory listing (unless, of course, you have turned this off).</p>
<p>&nbsp;</p>
<pre><code>DirectoryIndex index.php index.php3 messagebrd.pl index.html index.htm</code></pre>
<p>&nbsp;</p>
<div align="left">
<h3><a name="error-pages"></a>Custom Error Pages</h3>
</div>
<p>You can customize your own, personal error pages (for example when a file is not found) instead of using default error pages or not having an error page. This will make your site seem much more professional.</p>
<p>You can use custom error pages for any error as long as you know its number (like 404 for page not found) by adding the following to your .htaccess file:</p>
<pre><code>ErrorDocument errornumber /file.html</code></pre>
<p>For example if I had the file notfound.html in the root directory of my site and I wanted to use it for a 404 error I would use:</p>
<pre><code>ErrorDocument 404 /notfound.html</code></pre>
<p>If the error page is not in the root directory of your site, you can enter the path to the file:</p>
<pre><code>ErrorDocument 500 /errorpages/500.html</code></pre>
<p><code><code>These are some of the most common errors:</code></code></p>
<pre>401 - Authorization Required
400 - Bad request
403 - Forbidden
500 - Internal Server Error
404 - Wrong page</pre>
<div align="left">
<h3><a name="directory-index"></a>Stop a Directory Index From Being Shown</h3>
</div>
<p>Sometimes, for one reason or another, you will have no index file in your directory. This will, of course, mean that if someone types the directory name into their browser, a full listing of all the files in that directory will be shown. This could be a security risk for your site.</p>
<p>To prevent against this (without creating lots of new &#8216;index&#8217; files, you can enter a command into your .htaccess file to stop the directory list from being shown:</p>
<pre><code># disable directory browsing Options ExecCGI Includes IncludesNOEXEC SymLinksIfOwnerMatch -Indexes # enable directory browsing Options All +Indexes</code></pre>
<div align="left">
<h3><a name="deny-ip"></a>Deny/Allow Certian IP Addresses</h3>
</div>
<p>To only allow people with specific IP addresses to access your site (for example, only allowing people using a particular network to get into a certain directory) or you may want to ban certain IP addresses (for example, keeping disruptive members out of your message boards).This will only work if you know the IP addresses you would like to ban.</p>
<p>Please keep in mind that most ISP&#8217;s use dynamic IP addresses, so this is not always the best way to limit/grant access.</p>
<p>&nbsp;</p>
<h4>Block an IP Address</h4>
<pre><code>#Deny List order allow,deny deny from 123.123.123.123 #specify a specific address deny from 123.123.123.123/30 #specify a subnet range deny from 123.123.* #specify an IP address wildcard allow from all</code></pre>
<h4>Allow an IP address</h4>
<pre><code>#Allow List order allow,deny allow from 123.123.123.123 #specify a specific address allow from 123.123.123.123/30 #specify a subnet range allow from 123.123.* #specify an IP address wildcard deny from all </code></pre>
<p><code><code>Note: This will still allow scripts to use the files in the directory.</code></code></p>
<div align="left">
<h3><a name="redirect"></a>Redirection</h3>
</div>
<p>There is a tool in the cPanel that can create the Redirects for you.</p>
<h4>Redirect from a specific file to a new file</h4>
<p><strong>Example:</strong></p>
<pre><code>Redirect /redirect_from.html http://www.newsite.com/folder/redirect_to.html</code></pre>
<p>In the above example, a file in the root directory called redirect_example.html is redirected to the URL http://www.newsite.com/folder/redirect_example.html<br />
If the old file were in a subdirectory then you could use:</p>
<pre>/subdirectory/redirect_from.html</pre>
<h4>WildCard Redirect / Redirecting from one folder to a new folder</h4>
<pre><code>Redirect /redirect_from http://www.newsite.com/redirect_to</code></pre>
<p>Now any request to your site below /olddirectory will be redirected to the new site, with the extra information in the URL added on, for example if someone typed in:</p>
<pre>http://www.example.com/redirect_from/images/image.gif</pre>
<p>They would be redirected to:</p>
<pre>http://www.newsite.com/redirect_to/images/image.gif</pre>
<div align="left">
<h3><a name="password-protect"></a>Password Protection</h3>
</div>
<p>One of the many uses of the .htaccess is being able to reliably password protect directories on websites.</p>
<h4>The .htaccess File</h4>
<p>Adding password protection to a directory using .htaccess takes two stages. The first part is to add the appropriate lines to your .htaccess file in the directory you would like to protect. Everything below this directory will be password protected:</p>
<pre><code>AuthName "Section Name" AuthType Basic AuthUserFile /home/username/.htpasswds Require valid-user </code></pre>
<p>There are a few parts of this which you will need to change for your site. You should replace &#8220;Section Name&#8221; with the name of the part of the site you are protecting e.g. &#8220;Members Area&#8221;.</p>
<p>The /home/username/.htpasswds should be changed to reflect the full server path to the .htpasswds file. If you do not know what the full path to your webspace is, check your cPanel. Look on the left &#8220;stats&#8221; column of the cPanel.</p>
<h4>The .htpasswds File</h4>
<p>Password protecting a directory takes a little more work than any of the other .htaccess functions because you must also create a file to contain the usernames and passwords which are allowed to access the site. These should be placed in a file which (by default) should be called .htpasswd. This can be placed anywhere within you website (as the passwords are encrypted) but it is advisable to store it outside the web root (in your home directory) so that it is impossible to access it from the web.</p>
<h4>Entering Usernames And Passwords</h4>
<p>Once you have created your .htpasswd file (you can do this in a standard text editor) you must enter the usernames and passwords to access the site. They should be entered as follows:</p>
<pre><code>username:password</code></pre>
<p>Where the password is the encrypted format of the password. There is a good username/password service at the KxS site (http://www.kxs.net/support/htaccess_pw.html) which will allow you to enter the user name and password and will output it in the correct format.</p>
<p>For multiple users, just add extra lines to your .htpasswd file in the same format as the first.</p>
<h4>Accessing The Site</h4>
<p>When you try to access a site which has been protected by .htaccess your browser will pop up a standard username/password dialog box. Alternatively ou can send the username and password (unencrypted) in the URL as follows:</p>
<pre>http://username:password@www.website.com/directory/</pre>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/htaccess-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Common SEO Mistakes to Avoid</title>
		<link>http://sunwaretech.net/5-common-seo-mistakes-to-avoid/</link>
		<comments>http://sunwaretech.net/5-common-seo-mistakes-to-avoid/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 06:14:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO Tips]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/?p=648</guid>
		<description><![CDATA[Whether you&#8217;ve been optimizing your web pages for quite some time or are new to the strategy, everyone makes mistakes. While the bad news is that these mistakes can have a significant effect on your page ranking, the good news is, they&#8217;re reversible. Here are five SEO mistakes to avoid (And if you&#8217;ve already made [...]]]></description>
				<content:encoded><![CDATA[<p><img class="size-full wp-image-649 alignleft" style="margin: 10px;" title="top-5-seo-mistakes" src="http://sunwaretech.net/wp-content/uploads/2011/12/top-5-seo-mistakes.jpg" alt=" 5 Common SEO Mistakes to Avoid" width="240" height="120" />Whether you&#8217;ve been optimizing your web pages for quite some time or are new to the strategy, everyone makes mistakes. While the bad news is that these mistakes can have a significant effect on your page ranking, the good news is, they&#8217;re reversible. Here are five SEO mistakes to avoid (And if you&#8217;ve already made them, not to worry, you can make changes and move forward with your SEO strategy).</p>
<p><strong>SEO Mistake #1: Not using keywords correctly.</strong><br />
Many webmasters are concerned about being banned from the search engines for keyword spamming or stuffing so they limit the use of keywords on their web pages. As long as your content sounds natural and reads easily, the chances are you have not overused your keywords. Make sure your keywords are included in the first and last paragraphs, in your headings and in your title and meta tags.</p>
<p><strong>SEO Mistake #2: Trying to fool search engine spiders.</strong><br />
Search engines are a lot more sophisticated than most of us realize. They recognize &#8211; and penalize &#8211; hidden text, keyword spamming, and cloaking, which is showing different content to the search engine spiders than to your visitors. All of these practices only serve to hurt your page ranking and can in fact cause your website to be banned by the search engines, which means no one will find you &#8211; and no traffic means no profits.</p>
<p><strong>SEO Mistake #3: Using Flash</strong><br />
Flash is a great presentation tool and can be dramatic and effective if used sparingly. It&#8217;s particularly appropriate if you have a media related website and want to demonstrate your industry savvy. However for most website owners it&#8217;s just not necessary and can harm your page ranking. Search engine spiders cannot read content embedded in Flash files, which means they&#8217;re not recognized or indexed.</p>
<p><strong>SEO Mistake #4: Using Your Company Name (and Only Your Company Name) As a Title Tag</strong><br />
Unless you&#8217;re branding your company name, your company name shouldn&#8217;t be the only element in your title tag. Feel free to include it, however it&#8217;s also important to use your primary keyword for each webpage title tag. This is more useful for your customers and helps the search engines identify the various pages on your site.</p>
<p><strong>SEO Mistake #5: Using A Splash Page (Intro Page)</strong><br />
A splash page is a web page with a large graphic or company logo, and a link to enter the site. This is an ineffective strategy for a number of reasons:</p>
<p>* No keyword rich text on the page, nothing for the spiders to index.<br />
* Only one internal link on the page<br />
* These pages often have a redirect which often causes spiders to ignore them</p>
<p>If search engine optimization is important to your business, you may need to forgot the splash page. Your home page should be easy to navigate, content rich, and link visitors and spiders to other main web pages.<br />
In general, unless you&#8217;re trying to outsmart the search engines and using nefarious tactics, the majority of search engine mistakes are reversible. If you&#8217;ve committed a few of these mistakes, simply correcting them can increase your page ranking almost immediately. Take some time to evaluate your SEO strategy and eliminate these SEO mistakes.</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/5-common-seo-mistakes-to-avoid/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Very useful Google Search Tricks</title>
		<link>http://sunwaretech.net/very-useful-google-search-tricks/</link>
		<comments>http://sunwaretech.net/very-useful-google-search-tricks/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 12:47:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google Search Tricks]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/very-useful-google-search-tricks/</guid>
		<description><![CDATA[In addition to providing easy access to billions of web pages, Google has many special features to help you to find exactly what you&#8217;re looking for. Some of our most popular features are listed below. Weather &#8211; To see the weather for many U.S. and worldwide cities, type &#8220;weather&#8221; followed by the city and state, [...]]]></description>
				<content:encoded><![CDATA[<p>In addition to providing easy access to billions of web pages, Google has many special features to help you to find exactly what you&#8217;re looking for. Some of our most popular features are listed below.</p>
<p><strong>Weather</strong> &#8211; To see the weather for many U.S. and worldwide cities, type &#8220;weather&#8221; followed by the city and state, U.S. zip code, or city and country. Search e.g. <em>weather San Francisco, CA</em></p>
<p><strong>Stock Quotes</strong> &#8211; To see current market data for a given company or fund, type the ticker symbol into the search box. On the results page, you can click the link to see more data from Google Finance. Search e.g. <em>CSCO</em></p>
<p><strong>Time</strong> &#8211; To see the time in many cities around the world, type in &#8220;time&#8221; and the name of the city. Search e.g. <em>time London</em></p>
<p><strong>Sports Scores</strong> &#8211; To see scores and schedules for sports teams type the team name or league name into the search box. This is enabled for many leagues including the National Basketball Association, National Football League, National Hockey League, and Major League Baseball. Search e.g. <em>san francisco 49ers</em></p>
<p><strong>Calculator</strong> &#8211; To use Google&#8217;s built-in calculator function, simply enter the calculation you&#8217;d like done into the search box. Search e.g. <em>5*9+(sqrt 10)^3=</em></p>
<p><strong>Book Search</strong> &#8211; If you&#8217;re looking for results from Google Book Search, you can enter the name of the author or book title into the search box. Then, click on &#8220;Books&#8221; from the left-hand navigation to view book content. You can click through on the record to view more detailed info about that author or title. Search e.g. <em>Henry Wadsworth Longfellow</em></p>
<p><strong>Unit Conversion</strong> &#8211; You can use Google to convert between many different units of measurement of height, weight, and volume among many others. Just enter your desired conversion into the search box and we&#8217;ll do the rest. Search e.g. <em>10.5 cm in inches</em></p>
<p><strong>Public Data</strong> &#8211; To see trends for population and unemployment rates of U.S. states and counties, type &#8220;population&#8221; or &#8220;unemployment rate&#8221; followed by a state or county. You can click through to a page that lets you compare different locations. Search e.g. <em>population FL</em></p>
<p><strong>People Profiles</strong> &#8211; If you&#8217;re looking for someone you just met or a long-lost friend, enter the name of that person plus some identifying words about him or her to see a list of people with that name. Search e.g. <em>jon wiley</em></p>
<p><strong>Synonym Search</strong> &#8211; If you want to search not only for your search term but also for its synonyms, place the tilde sign (~) immediately in front of your search term. Search e.g. <em>~fast food</em></p>
<p><strong>Dictionary Definitions</strong> &#8211; To see a definition for a word or phrase, simply type the word &#8220;define&#8221; then a space, then the word(s) you want defined. To see a list of different definitions from various online sources, you can type &#8220;define:&#8221; followed by a word or phrase. Note that the results will define the entire phrase. Search e.g. <em>Define philosophy</em></p>
<p><strong>Spell Checker</strong> &#8211; Google&#8217;s spell checking software automatically checks whether your query uses the most common spelling of a given word. If it thinks you&#8217;re likely to generate better results with an alternative spelling, it will ask &#8220;Did you mean: (more common spelling)?&#8221;. Click the suggested spelling to launch a Google search for that term. Search e.g. <em>expolsion</em></p>
<p><strong>Local Search</strong> &#8211; If you&#8217;re looking for a store, restaurant, or other local business you can search for the category of business and the location and we&#8217;ll return results right on the page, along with a map, reviews, and contact information. Search e.g. <em>Italian food 02138</em></p>
<p><strong>Movie Showtimes</strong> &#8211; To find reviews and showtimes for movies playing near you, type &#8220;movies&#8221; or the name of a current film into the Google search box. If you&#8217;ve already saved your location on a previous search, the top search result will display showtimes for nearby theaters for the movie you&#8217;ve chosen. Search e.g. <em>movies 94705</em></p>
<p><strong>Currency Conversion</strong> &#8211; To use our built-in currency converter, simply enter the conversion you&#8217;d like done into the Google search box and we&#8217;ll provide your answer directly on the results page. Search e.g. <em>150 GBP in USD</em></p>
<p><strong>Maps</strong> &#8211; Looking for a map? Type in the name or U.S. zip code of a location and the word &#8220;map&#8221; and we&#8217;ll return a map of that location. Clicking on the map will take you to a larger version on Google Maps. Search e.g. <em>Seattle map</em></p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/very-useful-google-search-tricks/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Show custom message to user from google or any other site</title>
		<link>http://sunwaretech.net/show-custom-message-to-user-from-google-or-any-other-site/</link>
		<comments>http://sunwaretech.net/show-custom-message-to-user-from-google-or-any-other-site/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 12:14:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Help]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/show-custom-message-to-user-from-google-or-any-other-site/</guid>
		<description><![CDATA[Welcome your users with a custom message when they come from a special site. This way, you&#8217;ll have a more interactive &#38; personal site. Surely your user will like it &#38; you can make your site more user friendly like give you a digg when they came from Digg.com or display some related links of [...]]]></description>
				<content:encoded><![CDATA[<p>Welcome your users with a custom message when they come from a special site. This way, you&#8217;ll have a more interactive &amp; personal site. Surely your user will like it &amp; you can make your site more user friendly like give you a digg when they came from Digg.com or display some related links of your site , if they come from Google.</p>
<p>// Get the server HTTP Referer<br />
$referral = $_SERVER['HTTP_REFERER'];</p>
<p>// All to lowercase<br />
$referral = strtolower($referral);</p>
<p>// Only get the referral website<br />
preg_match(&#8220;/^(http:\/\/)?([^\/]+)/i&#8221;, $referral, $result);<br />
$referral = $result[2];</p>
<p>// Remove subdomain from the Referer<br />
$referral = explode (&#8220;.&#8221;, $referral);<br />
$i = count($referral);<br />
$referral = $referral[$i-2] . &#8220;.&#8221; . $referral[$i-1];</p>
<p>// Remove www. from the Referer<br />
if (substr ($referral, 0, 4) == &#8220;www.&#8221;)<br />
{<br />
$referral = substr (&#8220;$referral&#8221;, 4);<br />
}</p>
<p>if ($referral == &#8220;google.com&#8221;)<br />
{<br />
echo &#8220;Hey! You just came from google by searching $_GET['q'].&#8221;;<br />
}</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/show-custom-message-to-user-from-google-or-any-other-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Random Number String &amp; Password generator function</title>
		<link>http://sunwaretech.net/random-number-string-password-generator-function/</link>
		<comments>http://sunwaretech.net/random-number-string-password-generator-function/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 11:48:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Help]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/random-number-string-password-generator-function/</guid>
		<description><![CDATA[Random Number String generator function function r($len){ $keyset = &#8220;abcdefghijklmnopqrstuvwxyz0123456789&#8243;; $randkey = &#8220;&#8221;; for ($i=0; $i&#60;$len; $i++) { $randkey = $randkey . $keyset[mt_rand(0, strlen($keyset)-1)]; } return $randkey; } Strong Password generator function function generatePassword($length=9, $strength=0) { $vowels = &#8216;aeuy&#8217;; $consonants = &#8216;bdghjmnpqrstvz&#8217;; if ($strength &#38; 1) { $consonants .= &#8216;BDGHJLMNPQRSTVWXZ&#8217;; } if ($strength &#38; 2) [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Random Number String generator function</strong></p>
<p>function r($len){<br />
$keyset = &#8220;abcdefghijklmnopqrstuvwxyz0123456789&#8243;;<br />
$randkey = &#8220;&#8221;;<br />
for ($i=0; $i&lt;$len; $i++)<br />
{<br />
$randkey = $randkey . $keyset[mt_rand(0, strlen($keyset)-1)];<br />
}<br />
return $randkey;<br />
}</p>
<p><strong>Strong Password generator function</strong></p>
<p>function generatePassword($length=9, $strength=0) {<br />
$vowels = &#8216;aeuy&#8217;;<br />
$consonants = &#8216;bdghjmnpqrstvz&#8217;;<br />
if ($strength &amp; 1) {<br />
$consonants .= &#8216;BDGHJLMNPQRSTVWXZ&#8217;;<br />
}<br />
if ($strength &amp; 2) {<br />
$vowels .= &#8220;AEUY&#8221;;<br />
}<br />
if ($strength &amp; 4) {<br />
$consonants .= &#8217;23456789&#8242;;<br />
}<br />
if ($strength &amp; 8) {<br />
$consonants .= <a rel="nofollow" target="_blank" href="mailto:'@#$%'">&#8216;@#$%&#8217;</a>;<br />
}</p>
<p>$password = &#8221;;<br />
$alt = time() % 2;<br />
for ($i = 0; $i &lt; $length; $i++) {<br />
if ($alt == 1) {<br />
$password .= $consonants[(rand() % strlen($consonants))];<br />
$alt = 0;<br />
} else {<br />
$password .= $vowels[(rand() % strlen($vowels))];<br />
$alt = 1;<br />
}<br />
}<br />
return $password;<br />
}</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/random-number-string-password-generator-function/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Display page execution time in PHP</title>
		<link>http://sunwaretech.net/display-page-execution-time-in-php/</link>
		<comments>http://sunwaretech.net/display-page-execution-time-in-php/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 11:41:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Help]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/display-page-execution-time-in-php/</guid>
		<description><![CDATA[Use this tiny code to check the execution time of your script. &#60;?php // Write this line at the top of script $start = (float) array_sum(explode(&#8216; &#8216;,microtime())); /* your code here */ // Write these lines at the bottom of script $end = (float) array_sum(explode(&#8216; &#8216;,microtime())); echo sprintf(&#8220;%.4f&#8221;, ($end-$start)); ?&#62; If you want to increase [...]]]></description>
				<content:encoded><![CDATA[<p>Use this tiny code to check the execution time of your script.</p>
<p>&lt;?php<br />
// Write this line at the top of script<br />
$start = (float) array_sum(explode(&#8216; &#8216;,microtime()));</p>
<p>/*<br />
your code here<br />
*/</p>
<p>// Write these lines at the bottom of script<br />
$end = (float) array_sum(explode(&#8216; &#8216;,microtime()));<br />
echo sprintf(&#8220;%.4f&#8221;, ($end-$start));<br />
?&gt;</p>
<p>If you want to increase the execution time limit then use these:</p>
<p>1. set_time_limit(int $seconds)</p>
<p>(Note &#8211; will not work in Safe Mode)</p>
<p>2. ini_set(&#8216;max_execution_time&#8217;, 300); //300 seconds = 5 minutes</p>
<p>(Note &#8211; ini_set will not work in Safe Mode)</p>
<p>3. Via .htaccess</p>
<p>php_value max_execution_time 90</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/display-page-execution-time-in-php/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to hide HTTP_REFERER value from landing page</title>
		<link>http://sunwaretech.net/how-to-hide-http_referer-value-from-landing-page/</link>
		<comments>http://sunwaretech.net/how-to-hide-http_referer-value-from-landing-page/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 09:31:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/how-to-hide-http_referer-value-from-landing-page/</guid>
		<description><![CDATA[Sometimes we have to hide referer value to landing page. This is also called Link Masking or Link cloaking. Suppose we have Page A &#38; a page B. Page A contains a link to page B. When we click on the link Page B has knowledge that from where user is coming. But if want [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://sunwaretech.net/wp-content/uploads/2011/11/affiliate-link-cloak-hide.jpg" alt="Affiliate-Link-Cloak-hide" width="90" height="90" align="left" /></p>
<p>Sometimes we have to hide referer value to landing page. This is also called Link Masking or Link cloaking. Suppose we have Page A &amp; a page B. Page A contains a link to page B. When we click on the link Page B has knowledge that from where user is coming. But if want to hide the url of Page A, then? This subject is very important in affiliate marketing.</p>
<p>Below were experiment to tackle conceal/blank referrer with output in different browsers.</p>
<p>If you are not a programmer then referer.us &amp; spoofurl.com save your life.</p>
<p>Summary: There is no magic bullet, but using a combination of methods you can achieve the desired results. When using Opera, Chrome or Safari with Javascript disabled I have not found a way to properly blank the referrer while doing automatic redirection. Basicaly we are hiding the value of HTTP_REFERER.</p>
<p><strong>Tested Running Windows XP</strong></p>
<p>Browsers Tested<br />
Internet Explorer 8.0.7600<br />
Firefox 3.6.6<br />
Opera 10.60 Build 3445<br />
Google Chrome<br />
Safari 5.33.16.0</p>
<p>Manually click a link &lt;a href=http://www.examplesite.com/pageB.html&gt; Link&lt;/a&gt;</p>
<p>IE: shows<br />
FF: shows<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Meta refresh &lt;meta http-equiv=&#8221;refresh&#8221; content=0;url=&#8221;http://www.examplesite.com/pageB.html&#8221;&gt;</p>
<p>IE: blank<br />
FF: blank<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Slow meta refresh &lt;meta http-equiv=&#8221;refresh&#8221; content=&#8221;5; URL=http://www.examplesite.com/pageB.html&#8221;&gt;</p>
<p>IE: blank<br />
FF: blank<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>DMR – Double Meta Refresh<br />
Page 1 – &lt;meta http-equiv=&#8221;refresh&#8221; content=0;url=&#8221;http://www.examplesite.com/pageB.html&#8221;&gt;<br />
Page 2 &#8211; &lt;meta http-equiv=&#8221;refresh&#8221; content=0;url=&#8221;http://www.examplesite.com/pageB.html&#8221;&gt;</p>
<p>IE: blank<br />
FF: blank<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>PHP Header Replace<br />
header(&#8216;Location: http://www.examplesite.com/pageB.html<a rel="nofollow" target="_blank" href="http://neta1o.com/ref.php'">&#8216;</a>);</p>
<p>IE: blank/shows*<br />
FF: blank/shows*<br />
O: blank/shows*<br />
C: blank/shows*<br />
S: blank/shows*</p>
<p>*Warning, only works if direct navigation to redirect page (page2.php) otherwise shows page that linked to redirect page (page1.php). Basically it takes on the exact referrer of the page referred to it. So if the page that referred to it is blank it’ll pass blank, if the page referred to it had a referrer it’ll preserve that referrer.</p>
<p>Javascript Location Replace<br />
&lt;head&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;&lt;!&#8211;<br />
location.replace(&#8220;http://www.examplesite.com/pageB.html&#8221;)<br />
//&#8211;&gt;<br />
&lt;/script&gt;<br />
&lt;/head&gt;</p>
<p>IE: blank<br />
FF: shows<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Javascript Automatic Form Submit<br />
&lt;head&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form name=&#8221;myform&#8221; action=&#8221;http://www.examplesite.com/pageB.html&#8221; method=&#8221;get&#8221;&gt;&lt;/form&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;&lt;!&#8211;<br />
document.myform.submit()<br />
//&#8211;&gt;<br />
&lt;/script&gt;</p>
<p>IE: shows<br />
FF: shows<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Javascript Automatic Link Click<br />
&lt;body onload=&#8221;javascript:document.links[0].click();&#8221;&gt;<br />
&lt;a href=&#8221;http://www.examplesite.com/pageB.html&#8221;&gt;&lt;/a&gt;</p>
<p>IE: shows<br />
FF: doesn’t work<br />
O: doesn’t work<br />
C: doesn’t work<br />
S: doesn’t work</p>
<p>Javascript Window Location Redirect<br />
&lt;script type=&#8221;text/javascript&#8221;&gt; window.location = &#8220;http://www.examplesite.com/pageB.html&#8221; &lt;/script&gt;</p>
<p>IE: blank<br />
FF: shows<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Site in iFrame<br />
&lt;iframe src =&#8221;http://www.examplesite.com/pageB.html&#8221; width=&#8221;100%&#8221; height=”100% frameborder=0 scrolling=”0” &gt;<br />
&lt;p&gt;Your browser does not support iframes.&lt;/p&gt;<br />
&lt;/iframe&gt;</p>
<p>IE: shows<br />
FF: shows<br />
O: shows<br />
C: shows<br />
S: shows</p>
<p>Anonym.to<br />
http://anonym.to/?http://www.examplesite.com/page<a rel="nofollow" target="_blank" href="http://anonym.to/?http://neta1o.com/ref.php"><span style="color: black;">B.html</span></a></p>
<p>IE: blank<br />
FF: blank<br />
O: shows referrer<br />
C: shows referrer<br />
S: shows referrer</p>
<p>Referer.us<br />
http://referer.us/http://www.examplesite.com/page<a rel="nofollow" target="_blank" href="http://referer.us/http://neta1o.com/ref.php"><span style="color: black;">B.html</span></a></p>
<p>IE: blank<br />
FF: blank<br />
O: blank<br />
C: blank<br />
S: blank</p>
<p>Javascript Parent Location<br />
&lt;iframe src=&#8221;javascript:parent.location=&#8217;http://www.examplesite.com/pageB.html&#8217;&#8221; style=&#8221;visibility:hidden&#8221;&gt;&lt;/iframe&gt;</p>
<p>IE: blank<br />
FF: shows<br />
O: blank<br />
C: blank<br />
S: blank</p>
<p>iFrame Parent Post<br />
&lt;script&gt;<br />
function go(){<br />
window.frames[0].document.body.innerHTML=&#8217;&lt;form target=&#8221;_parent&#8221; action=&#8221;http://www.examplesite.com/pageB.html&#8221;&gt;&lt;/form&gt;&#8217;;<br />
window.frames[0].document.forms[0].submit()<br />
}<br />
&lt;/script&gt;<br />
&lt;iframe onload=&#8221;window.setTimeout(&#8216;go()&#8217;, 99)&#8221; src=&#8221;about:blank&#8221; style=&#8221;visibility:hidden&#8221;&gt;&lt;/iframe&gt;</p>
<p>IE: blank<br />
FF: blank<br />
O: blank<br />
C: blank<br />
S: blank</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/how-to-hide-http_referer-value-from-landing-page/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Gmail&#8217;s brand new look &#8211; What&#8217;s new</title>
		<link>http://sunwaretech.net/gmails-brand-new-look-whats-new/</link>
		<comments>http://sunwaretech.net/gmails-brand-new-look-whats-new/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 07:23:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/gmails-brand-new-look-whats-new/</guid>
		<description><![CDATA[Google has luanched new look &#38; enhanced functionality to Gmail. You will automatically get upgraded to the new look soon. If you don&#8217;t want to wait, you can switch to it today by logging into Gmail and clicking Switch to the new look. You can check the new look by clicking a link in bottom [...]]]></description>
				<content:encoded><![CDATA[<p>Google has luanched new look &amp; enhanced functionality to Gmail. You will automatically get upgraded to the new look soon. If you don&#8217;t want to wait, you can switch to it today by logging into Gmail and clicking Switch to the new look. You can check the new look by clicking a link in bottom right of your Gmail panel. Old look can be restored in Settings button.</p>
<p><strong>According to Gmail Team</strong><br />
&#8220;The way people use and experience the web is evolving, and our goal is to give you a more seamless and consistent online experience &#8212; one that works no matter which Google product you&#8217;re using or what device you&#8217;re using it on. The new Google experience that we&#8217;re working toward is founded on three key design principles &#8211; Focus, Elasticity, Effortlessness.&#8221;</p>
<p><strong>1. Cleaner, more modern</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_new.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /><br />
From improved conversations to more customization and updated themes, Gmail is now cleaner and more modern.</p>
<p><strong>2. New themes</strong></p>
<p><strong><img src="https://mail.google.com/mail/help/intl/en/images/newlook_themes.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /></strong><br />
There are many Gmail themes to choose from, but few of them are actually usable. Gmail added 5 new themes: Basic Black, Basic White, Tree Tops, Marker and Android.<br />
Even if you&#8217;re not an Android fan or you don&#8217;t have an Android phone, you should really try the Android theme. It&#8217;s simple, stylish and you can still read your messages.</p>
<p><strong>3. Improved conversation view</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_conversation.png" alt="" width="300" border="0" hspace="10" vspace="10" /></p>
<p>Conversations have been redesigned to bring the content of your messages to the forefront, and profile pictures make it easier to see who you&#8217;re talking with at a glance.</p>
<p><strong>4. Customizable in new ways</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_customize.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /></p>
<p>You can now choose how many messages are on your screen at a time by choosing from three different display densities: Comfortable, Cozy and Compact.</p>
<p><strong>5. More control</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_control.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /><br />
And you also have more control over the size of your chat window. Just drag it to the desired size</p>
<p><strong>6. Search and filters made simple</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_search.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /><br />
The new search box makes it easy to customize your search and find exactly what you&#8217;re looking for. You can also create a filter right from the same place.</p>
<p><strong>7. Switch to Contacts and Tasks</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_switch.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /><br />
There is a new way to easily swap between Mail, Contacts, and Tasks.</p>
<p><strong>8. A new toolbar</strong></p>
<p><img src="https://mail.google.com/mail/help/intl/en/images/newlook_icons.png" alt="" width="300" align="top" border="0" hspace="10" vspace="10" /><br />
The new toolbar is always visible and only shows you the buttons you need when you need them.</p>
<p><strong>Watch the video to get an overview of the improvements.</strong><br />
httpsv://www.youtube.com/watch?v=vfW5e6jVsMs</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/gmails-brand-new-look-whats-new/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Say Good Bye to Google Buzz!!!</title>
		<link>http://sunwaretech.net/say-good-bye-to-google-buzz/</link>
		<comments>http://sunwaretech.net/say-good-bye-to-google-buzz/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 06:39:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/say-good-bye-to-google-buzz/</guid>
		<description><![CDATA[Google is now alerting Gmail users about the impending retirement of its Buzz service. The notification in a yellow box reads, &#8220;Google Buzz is going away, but your posts are yours to keep&#8221; and directs users to a page that provides further information on how users can port their Google Buzz data. Google had, about [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://sunwaretech.net/wp-content/uploads/2011/11/google-buzz-class-action-suit.jpg" alt="google-buzz-class-action-suit" width="225" height="162" align="left" /></p>
<p>Google is now alerting Gmail users about the impending retirement of its Buzz service. The notification in a yellow box reads, &#8220;Google Buzz is going away, but your posts are yours to keep&#8221; and directs users to a page that provides further information on how users can port their Google Buzz data.<br />
Google had, about two weeks ago, announced that it is shutting down the controversial social networking product. The shut-down comes as part of Google&#8217;s housecleaning effort announced in early September, in which the company said it will shut down a number of products and merging others into existing products as features.<br />
In about two weeks from now, users will no longer be able to create any new posts on Google Buzz. While the Google Buzz content created/shared by users will remain on their Google Profiles, they also have the option to download their Buzz data via Google Takeout, a Google service that allows users to download a copy of thewir data stored within Google products.</p>
<p>&#8220;Changing the world takes focus on the future, and honesty about the past. We learned a lot from products like Buzz, and are putting that learning to work every day in our vision for products like Google+,&#8221; said Google in a blog post.<br />
Google Buzz, a social networking and messaging tool integrated into Gmail service, has been widely criticised for privacy concerns and held back the search giant from expanding its businesses to the social networking space. After Buzz, Google launched Google+ in June, which has been receiving a good response and passed the 40 million user mark, the company&#8217;s chief executive officer Larry Page said.</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/say-good-bye-to-google-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find &amp; Replace String in MySQL</title>
		<link>http://sunwaretech.net/how-to-find-replace-string-in-mysql/</link>
		<comments>http://sunwaretech.net/how-to-find-replace-string-in-mysql/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 05:25:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://sunwaretech.net/how-to-find-replace-string-in-mysql/</guid>
		<description><![CDATA[To find a string in a certain field and replace it with another string: update [table_name] set [field_name] = replace([field_name],&#8217;[string_to_find]&#8216;,&#8217;[string_to_replace]&#8216;); like update user set name = replace(name,&#8217;Dr.&#8217;,'Mr.&#8217;); If you like the post &#038; want to get more then Subscribe our blog posts. Subscribe SunwareTech.net RSS Feed &#8226; Facebook &#8226; Twitter &#8226; Email]]></description>
				<content:encoded><![CDATA[<p>To find a string in a certain field and replace it with another string:</p>
<p>update [table_name] set [field_name] = replace([field_name],&#8217;[string_to_find]&#8216;,&#8217;[string_to_replace]&#8216;);</p>
<p>like update <em>user</em> set <em>name</em> = replace(<em>name</em>,&#8217;Dr.&#8217;,'Mr.&#8217;);</p>
<p><div><iframe src="http://www.facebook.com/plugins/like.php?
href=http%3A%2F%2Fwww.facebook.com%2Fsunwaretech&amp;layout
=standard&amp;show_faces=false&amp;width=450&amp;action=like&a
mp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:450px; height:35px;" 
allowTransparency="true"></iframe></div>
<p><span style="color:#a00000">If you like the post & want to get more 
then Subscribe our blog posts. Subscribe SunwareTech.net</span> 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/feed.png" border="0"> <a rel="nofollow" 
target="_blank" 
href="http://feeds.feedburner.com/sunwaretech"><b>RSS Feed</b></a> 
&bull; 
<img align="absmiddle" src="http://sunwaretech.net/wp-
content/uploads/2011/02/facebook.png" border="0"> <a 
href="http://facebook.com/sunwaretech" rel="nofollow" target="_blank">
<b>Facebook</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/twitter.png" 
border="0"> <a href="http://twitter.com/sunware" rel="nofollow" 
target="_blank"><b>Twitter</b></a> &bull; <img align="absmiddle" 
src="http://sunwaretech.net/wp-content/uploads/2011/02/email.png" 
border="0"> <a href="#" 
onclick="window.open('http://feedburner.google.com/fb/a/mailverify?
uri=sunwaretech', 'popupwindow', 
'scrollbars=yes,width=550,height=520');return true"><b>Email</b></a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://sunwaretech.net/how-to-find-replace-string-in-mysql/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
