<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.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:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WebTechTuts</title>
	
	<link>http://webtechtuts.com</link>
	<description>WebTechTuts is a site by web developers aimed at web developers and designers offering articles on technologies, skills and techniques to improve how you design and build websites. We cover HTML, CSS, Javascript, PHP, Photoshop, MySql, Oracle, and TeraData</description>
	<lastBuildDate>Mon, 30 Apr 2012 08:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Webtechtuts" /><feedburner:info uri="webtechtuts" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Getting Started With MongoDB</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/_TcIcfhpxRQ/</link>
		<comments>http://webtechtuts.com/2011/12/06/getting-started-with-mongodb/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 17:07:10 +0000</pubDate>
		<dc:creator>Deepak Airy</dc:creator>
				<category><![CDATA[MongoDB]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1096</guid>
		<description><![CDATA[MongoDB is a document-oriented database. The main reason for not choosing relational model is said to be able to make scaling out easier. MongoDB has retain the most useful features of relational databases, such as secondary indexes, range queries, sorting etc. ]]></description>
			<content:encoded><![CDATA[<p align="JUSTIFY">MongoDB is a document-oriented database. The main reason for not choosing relational model is said to be able to make scaling out easier. MongoDB has retain the most useful features of relational databases, such as secondary indexes, range queries, sorting etc. and has added some more features such as built-in support for MapReduced-style aggregation and geospatial indexes.</p>
<p align="JUSTIFY">Performance is the major goal for MongoDB. MongoDB attempts to keep many features from relational systems, but it is not intended to do everything that a relational dababase does.</p>
<p align="JUSTIFY">MongoDB uses BSON(Binary JSON) format to store data. This is same as JSON or JavaScript object literal.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">{“name”:”MongoDB”}.</div></td></tr></tbody></table></div>
<p align="JUSTIFY">An entry like this is known as document in MongoDB.</p>
<p align="JUSTIFY">Now before we dive deeper into documents, collection and database lets us first install MongoDB. Its very simple and we will be done with in just 5 mins.</p>
<p align="JUSTIFY">We just have to download the MongoDB from <strong> http://www.mongodb.org/downloads</strong> based on the operating system we are using. One thing to know here is a 32-bit builds are limited to around 2GB of data, there is no such restriction with 64-bit builds.</p>
<p align="JUSTIFY"><strong>For Windows</strong></p>
<ol>
<li>Download the DB.</li>
<li>Unzip it and save it in <span style="color: #000080;"><span style="text-decoration: underline;"><a>c:/</a></span></span>. I have saved it <span style="color: #000080;"><span style="text-decoration: underline;"><a>c:/</a></span></span> you can save it any place of your liking. And I have also changed the name of the folder to mongodir.</li>
<li>Create a folder data/db in <span style="color: #000080;"><span style="text-decoration: underline;"><a>c:/</a></span></span>. This is the default directory where MongoDB stores data. But MongoDB doesn&#8217;t create it , so we will have to. We can choose any place and name for this too but for that we will to start MongoDB server with an –dbpath option which tell MongoDB the path for storing and fetching data. For now we will go with the default location.</li>
</ol>
<p align="JUSTIFY"><strong>For Linux</strong></p>
<p align="JUSTIFY">Same goes for linux too. The only difference is instead of <span style="color: #000080;"><span style="text-decoration: underline;"><a>c:/</a></span></span> we will use root directory.</p>
<p align="JUSTIFY">That&#8217;s it we are done with installation.</p>
<p align="JUSTIFY">Now as we have MongoDB with us lets do some exploring. First start the MongoDB server, for that open the command promt and go to c:/mongodir/bin and execute mongod.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">cd /mongodir/bin/<br />
mongod</div></td></tr></tbody></table></div>
<p align="JUSTIFY">If all goes well we will something like</p>
<p align="JUSTIFY"><a href="http://webtechtuts.com/wp-content/uploads/2011/12/mongod.jpg"><img class="alignnone size-full wp-image-1097" title="mongod" src="http://webtechtuts.com/wp-content/uploads/2011/12/mongod.jpg" alt="" width="600" height="332" /></a></p>
<p align="JUSTIFY">See the last two line they tell us that MongoDB is listening to us through two ports</p>
<p align="JUSTIFY">for command prompt :- 27017<br />
for web :- 28017</p>
<p align="JUSTIFY">To check if its telling the truth you can put the <strong>&#8220;localhost:28018&#8243;</strong> in the address bar if you see something like the image below its telling the truth.</p>
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/12/webmongo.jpg"><img class="alignnone size-full wp-image-1099" title="webmongo" src="http://webtechtuts.com/wp-content/uploads/2011/12/webmongo.jpg" alt="" width="600" height="337" /></a></p>
<p align="JUSTIFY">Server has started and working fine. Now to start actual work open another command prompt and enter the following.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">cd /mongodir/bin/<br />
mongo</div></td></tr></tbody></table></div>
<p align="JUSTIFY">this will give you the MongoDB console. This is javascript based console and can run any thing that is javascript.</p>
<p align="JUSTIFY"><a href="http://webtechtuts.com/wp-content/uploads/2011/12/mongo.jpg"><img class="alignnone size-full wp-image-1100" title="mongo" src="http://webtechtuts.com/wp-content/uploads/2011/12/mongo.jpg" alt="" width="456" height="261" /></a></p>
<p align="JUSTIFY">Now if you open c:/data/db/ folder[we created it for MongoDB to store all our data here. If you forgot than check the installation step 3 again.] you will see only one file &#8220;mongod.lock&#8221;.</p>
<p align="JUSTIFY"><a href="http://webtechtuts.com/wp-content/uploads/2011/12/mongodbdatadirempty.jpg"><img class="alignnone size-full wp-image-1101" title="mongodbdatadirempty" src="http://webtechtuts.com/wp-content/uploads/2011/12/mongodbdatadirempty.jpg" alt="" width="600" height="244" /></a></p>
<p align="JUSTIFY">We will discuss this file in next blog. My point here is on console MongoDB displays &#8220;Connecting to test&#8221;, but there is no such file created in our default data folder. <strong>why?</strong></p>
<p align="JUSTIFY">This is because MongoDB wants to connect to a database whenever user open the client and by default it always connects to “test” database. But if its not present it will not create one, it will just assign the database name “test” to the variable “db” that is used to reffer to the current database in MongoDB.</p>
<p align="JUSTIFY">If we write db and press enter on console it will show the current db that is “test”.</p>
<p align="JUSTIFY">Now in MongoDB a database and a collection[some what same as tables in relational database] gets created when we insert some data in them. That is with insert commands.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">db.contacts.insert({'name':'joy', 'email':'joy@ymail.com','phone':'123456789'})</div></td></tr></tbody></table></div>
<p align="JUSTIFY">when we execute this a database named “test” and a collection named “contacts”will get created.</p>
<p align="JUSTIFY">Go to <a>c:/data/db/</a>, now you will see two more files “test.0” and “test.ns”.</p>
<p align="JUSTIFY"><a href="http://webtechtuts.com/wp-content/uploads/2011/12/mongodbdatadir.jpg"><img class="alignnone size-full wp-image-1102" title="mongodbdatadir" src="http://webtechtuts.com/wp-content/uploads/2011/12/mongodbdatadir.jpg" alt="" width="600" height="244" /></a></p>
<p align="JUSTIFY">Every database is stored in its own .0 and .ns files. Now these files will store all the details and data related to the respective database. If you look at the size of the files its quite large for the data we just have entered, this is just to deal with the space problem that can occurs while doing some admin task or some queries that require extra space.</p>
<p align="JUSTIFY">That&#8217;s all for the day. We will dig deeper into the CRUD operations in MongoDB in my next blog.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/tb33POxdS8qcgr_r30cdoiJAKMA/0/da"><img src="http://feedads.g.doubleclick.net/~a/tb33POxdS8qcgr_r30cdoiJAKMA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tb33POxdS8qcgr_r30cdoiJAKMA/1/da"><img src="http://feedads.g.doubleclick.net/~a/tb33POxdS8qcgr_r30cdoiJAKMA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/_TcIcfhpxRQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/12/06/getting-started-with-mongodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/12/06/getting-started-with-mongodb/</feedburner:origLink></item>
		<item>
		<title>HTC unveils its first Mango handset</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/tMg7yR97mgM/</link>
		<comments>http://webtechtuts.com/2011/10/12/htc-unveils-its-first-mango-handset/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 17:48:45 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[HTC first mango smartphone]]></category>
		<category><![CDATA[HTC first Windows Phone OS 7.5]]></category>
		<category><![CDATA[HTC Radar]]></category>
		<category><![CDATA[HTC Radar price]]></category>
		<category><![CDATA[HTC Radar specification]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1064</guid>
		<description><![CDATA[HTC unveiled its first Windows Phone OS 7.5 (codenamed 'Mango') powered smartphone the HTC Radar in the Indian mobile market on Tuesday. Powered by a 1GHz processor, the phone has an internal storage space of 8GB and has 512MB of RAM.]]></description>
			<content:encoded><![CDATA[<p>HTC unveiled its first Windows Phone OS 7.5 (codenamed &#8216;Mango&#8217;) powered smartphone the HTC Radar in the Indian mobile market on Tuesday. Powered by a 1GHz processor, the phone has an internal storage space of 8GB and has 512MB of RAM.</p>
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/10/htc-radar-mango-smartphone.jpg"><img src="http://webtechtuts.com/wp-content/uploads/2011/10/htc-radar-mango-smartphone.jpg" alt="HTC First Mango SmartPhone" title="htc-radar-mango-smartphone" width="630" height="420" class="aligncenter size-full wp-image-1065" /></a></p>
<p>Priced at Rs 25,490, the phone has a 3.8-inch touchscreen with 480&#215;800 resolution. It sports a 5 megapixel rear camera with f/2.2 aperture lens and a front VGA camera. With 28mm wide-angle lens, it allows users to capture more of the scene, while the panoramic feature lets users create dramatic pictures of skylines and landscapes.</p>
<p>HTC Radar make the user interface more interactive with the new &#8216;People Hub&#8217; from Windows Phone. The People Hub keeps users updated with their friends&#8217; latest news and also shows all communication history with each person, as well as their recent social network updates and photos. </p>
<p>HTC&#8217;s another Mango powered phone &#8211; HTC Titan, which is already available in the global market, is expected to hit the Indian market by the end of this year, said Faisal Siddiqui, country manager, HTC India.</p>
<p>The Acer Allegro, another &#8216;Mango&#8217; powered phone, was also unveiled at the Windows Phone OS event at New Delhi. However, the company has not yet announced its price. When asked about the price, Ravi Desai, head &#8211; telecom, Acer India said, &#8220;It will be within the bracket of Rs 18,000-20,000.&#8221; </p>

<p><a href="http://feedads.g.doubleclick.net/~a/q_pOzDev_NrSqjp6ionhyzBl49U/0/da"><img src="http://feedads.g.doubleclick.net/~a/q_pOzDev_NrSqjp6ionhyzBl49U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/q_pOzDev_NrSqjp6ionhyzBl49U/1/da"><img src="http://feedads.g.doubleclick.net/~a/q_pOzDev_NrSqjp6ionhyzBl49U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/tMg7yR97mgM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/10/12/htc-unveils-its-first-mango-handset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/10/12/htc-unveils-its-first-mango-handset/</feedburner:origLink></item>
		<item>
		<title>How To Reset Password in Ubuntu?</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/2LaoA6EwMhE/</link>
		<comments>http://webtechtuts.com/2011/10/10/how-to-reset-password-in-ubuntu/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 07:51:25 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[reset password in ubuntu]]></category>
		<category><![CDATA[reset root password in ubuntu]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1058</guid>
		<description><![CDATA[If you just installed Ubuntu and forgot what password you selected during the installation process or you have too many passwords in your life and can't keep track of them all. ]]></description>
			<content:encoded><![CDATA[<p>If you just installed Ubuntu and forgot what password you selected during the installation process or you have too many passwords in your life and can&#8217;t keep track of them all.</p>
<p>This small tutorial will help you to reset your password.</p>
<ol>
<li>
First you have to reboot your system in recovery mode. If you have a single boot then hold down shift key during the boot-up. In dual boot you get the menu to select the boot option from the menu.
</li>
<li>
After you select recovery mode and wait for all the boot-up processes to finish, you&#8217;ll be presented with a few options. In this case, you want the Drop to root shell prompt option so press the Down arrow to get to that option, and then press Enter to select it.</p>
<p>The root account is the ultimate administrator and can do anything to the Ubuntu installation (including erase it), so please be careful with what commands you enter in the root terminal.</p>
<p>Once you&#8217;re at the root shell prompt, if you have forgotten your username as well, type
</li>
<li>
To reset password type</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># passwd username</span></div></td></tr></tbody></table></div>
<p>You&#8217;ll then be prompted for a new password.Just type the password and hit Enter when you&#8217;re done. You&#8217;ll be prompted to retype the password. Do so and hit Enter again.
</li>
<li>
Now Your Password is reset.Type exit to return to the recovery mode</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># exit</span></div></td></tr></tbody></table></div>
<p>In recovery mode select resume normal boot.
</li>

<p><a href="http://feedads.g.doubleclick.net/~a/3WfCuW5T8ADH9C3wmmIsaWC-ZqY/0/da"><img src="http://feedads.g.doubleclick.net/~a/3WfCuW5T8ADH9C3wmmIsaWC-ZqY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3WfCuW5T8ADH9C3wmmIsaWC-ZqY/1/da"><img src="http://feedads.g.doubleclick.net/~a/3WfCuW5T8ADH9C3wmmIsaWC-ZqY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/2LaoA6EwMhE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/10/10/how-to-reset-password-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/10/10/how-to-reset-password-in-ubuntu/</feedburner:origLink></item>
		<item>
		<title>Reset MySQL root Pasword – Ubuntu 11.04</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/Er_wmUVD7g4/</link>
		<comments>http://webtechtuts.com/2011/10/08/reset-mysql-root-pasword-ubuntu-11-04/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 11:06:54 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[reset mysql root password]]></category>
		<category><![CDATA[reset mysql root password linux]]></category>
		<category><![CDATA[reset mysql root password ubuntu]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1053</guid>
		<description><![CDATA[If you forgot your mysql root password and you want to recover this here are the steps to Set / change / reset the password.
]]></description>
			<content:encoded><![CDATA[<p>If you forgot your mysql root password and you want to recover this here are the steps to Set / change / reset the password.</p>
<ol>
<li> First stop your mysql
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># sudo /etc/init.d/mysql stop</span></div></td></tr></tbody></table></div>
</li>
<li> Start Mysqld Configuration
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># sudo mysqld --skip-grant-tables &amp;</span></div></td></tr></tbody></table></div>
</li>
<li> Login to mysql as root
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># mysql -u root mysql</span></div></td></tr></tbody></table></div>
</li>
<li>
4.Replace YOURNEWPASSWORD with your new password!</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">mysql<span style="color: #000000; font-weight: bold;">&gt;</span> UPDATE user SET <span style="color: #007800;">Password</span>=PASSWORD<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">'YOURPASSWORD'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> WHERE <span style="color: #007800;">User</span>=<span style="color: #ff0000;">'root'</span>; FLUSH PRIVILEGES; <span style="color: #7a0874; font-weight: bold;">exit</span>;<br />
Query OK, <span style="color: #000000;">3</span> rows affected <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.00</span> sec<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
Rows matched: <span style="color: #000000;">3</span> &nbsp;Changed: <span style="color: #000000;">3</span> &nbsp;Warnings: <span style="color: #000000;">0</span><br />
<br />
Query OK, <span style="color: #000000;">0</span> rows affected <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.00</span> sec<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #000000; font-weight: bold;">&lt;/</span>li<span style="color: #000000; font-weight: bold;">&gt;</span><br />
<span style="color: #000000; font-weight: bold;">&lt;</span>li<span style="color: #000000; font-weight: bold;">&gt;</span><br />
<span style="color: #000000;">5</span>. Now Start Your Mysql.<br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #c20cb9; font-weight: bold;">cc</span> <span style="color: #007800;">lang</span>=<span style="color: #ff0000;">&quot;bash&quot;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
<span style="color: #666666; font-style: italic;"># /etc/init.d/mysql start</span></div></td></tr></tbody></table></div>
</li>
<li>
6. Try to connect with new password with root user.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># mysql -uroot -p</span><br />
Enter password: <br />
Welcome to the MySQL monitor. &nbsp;Commands end with ; or \g.<br />
Your MySQL connection <span style="color: #c20cb9; font-weight: bold;">id</span> is <span style="color: #000000;">35</span><br />
Server version: 5.1.54-1ubuntu4 <span style="color: #7a0874; font-weight: bold;">&#40;</span>Ubuntu<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<br />
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2000</span>, <span style="color: #000000;">2010</span>, Oracle and<span style="color: #000000; font-weight: bold;">/</span>or its affiliates. All rights reserved.<br />
This software comes with ABSOLUTELY NO WARRANTY. This is <span style="color: #c20cb9; font-weight: bold;">free</span> software,<br />
and you are welcome to modify and redistribute it under the GPL v2 license<br />
<br />
Type <span style="color: #ff0000;">'help;'</span> or <span style="color: #ff0000;">'\h'</span> <span style="color: #000000; font-weight: bold;">for</span> help. Type <span style="color: #ff0000;">'\c'</span> to <span style="color: #c20cb9; font-weight: bold;">clear</span> the current input statement.<br />
<br />
mysql<span style="color: #000000; font-weight: bold;">&gt;</span> show databases;<br />
+--------------------+<br />
<span style="color: #000000; font-weight: bold;">|</span> Database &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">|</span><br />
+--------------------+<br />
<span style="color: #000000; font-weight: bold;">|</span> information_schema <span style="color: #000000; font-weight: bold;">|</span><br />
<span style="color: #000000; font-weight: bold;">|</span> mysql &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">|</span><br />
+--------------------+<br />
<span style="color: #000000;">2</span> rows <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">set</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">0.00</span> sec<span style="color: #7a0874; font-weight: bold;">&#41;</span></div></td></tr></tbody></table></div>
</li>
</ol>

<p><a href="http://feedads.g.doubleclick.net/~a/2dN0s3db8KwxfwhPktxgnQDKhmw/0/da"><img src="http://feedads.g.doubleclick.net/~a/2dN0s3db8KwxfwhPktxgnQDKhmw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2dN0s3db8KwxfwhPktxgnQDKhmw/1/da"><img src="http://feedads.g.doubleclick.net/~a/2dN0s3db8KwxfwhPktxgnQDKhmw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/Er_wmUVD7g4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/10/08/reset-mysql-root-pasword-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/10/08/reset-mysql-root-pasword-ubuntu-11-04/</feedburner:origLink></item>
		<item>
		<title>Convert 2D videos to 3D with YouTube</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/7bxGirwMsAU/</link>
		<comments>http://webtechtuts.com/2011/09/30/convert-2d-videos-to-3d-with-youtube/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 15:23:56 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[2D videos to 3D with YouTube]]></category>
		<category><![CDATA[Convert 2D videos to 3D with YouTube]]></category>
		<category><![CDATA[youtube 2d to 3d convert]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1031</guid>
		<description><![CDATA[The world's largest video sharing service (Youtube) now allows users to convert 2D videos into 3D with a single click.]]></description>
			<content:encoded><![CDATA[<p>September seems to be the month where many of Internet&#8217;s biggest services are rolling out improvements and tools. After Facebook, Google Plus and Twitter&#8217;s turn to add some new frills and functionality, it&#8217;s now YouTube&#8217;s turn.</p>
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/09/2d-to-3d.jpg"><img src="http://webtechtuts.com/wp-content/uploads/2011/09/2d-to-3d.jpg" alt="Convert 2D to 3D" title="2d-to-3d" width="300" height="233" class="aligncenter size-full wp-image-1050" border=0/></a></p>
<p>In a bid to foster the creation of video content, YouTube has introduced three new features to empower YouTubers and to facilitate video content creation.</p>
<p>The world&#8217;s largest video sharing service now allows users to convert 2D videos into 3D with a single click. However, it has currently introduced it in a beta stage. Users don&#8217;t need to go through a long journey to create 3D videos which requires them to set up two cameras, combine the footage from each, and use special software to make the effect look just right. </p>
<p>&#8220;We are launching 2D to 3D conversion. Once people have uploaded their 2D videos to YouTube, they can convert them to 3D with the click of a button. Converted videos will be viewable by everyone in 3D,&#8221; said the company in a blog post. Users can find this feature by selecting &#8220;Edit Info&#8221;, then &#8220;3D Video&#8221; on a video they have uploaded to YouTube. But experiencing the 3D effect will need the aid of special glasses.</p>
<p>YouTube is also allowing all &#8220;verified users in good standing&#8221; to upload long-form videos, that are longer than the current limit of 15 minutes for most users. To help people get those longer videos online, YouTube has also launched &#8216;resumable uploads&#8217;, which ensures that users will able to continue their uploads from the point from where the upload failed due to connectivity faults or any other reason.</p>
<p>YouTube has also added two additional video creation platforms &#8211; Vlix and Magisto &#8211; to help its users make better videos. Vlix lets users add effects to their videos and text to the video introduction and closing, while Magisto takes their unedited video and automatically edits it into short, fun clips.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/pecpAocN3EQb5bNXp2i7Zh8NRSI/0/da"><img src="http://feedads.g.doubleclick.net/~a/pecpAocN3EQb5bNXp2i7Zh8NRSI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pecpAocN3EQb5bNXp2i7Zh8NRSI/1/da"><img src="http://feedads.g.doubleclick.net/~a/pecpAocN3EQb5bNXp2i7Zh8NRSI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/7bxGirwMsAU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/30/convert-2d-videos-to-3d-with-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/30/convert-2d-videos-to-3d-with-youtube/</feedburner:origLink></item>
		<item>
		<title>Get Google+ Publicly Shared Profile information</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/bgVMhIjJlHs/</link>
		<comments>http://webtechtuts.com/2011/09/29/get_google_plus_profile_info/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 12:12:10 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[get Google+ public profile information using API]]></category>
		<category><![CDATA[get Google+ user profile information]]></category>
		<category><![CDATA[Google+ profile information uding API]]></category>
		<category><![CDATA[Google+ profile information using php]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1043</guid>
		<description><![CDATA[How to get the profile information which are shared publicly on Google+ using PHP and Google+ API? For that you first need Google API Key.]]></description>
			<content:encoded><![CDATA[<p>How to get the profile information which are shared publicly on Google+ using PHP and Google+ API? For that you first need Google API Key.</p>
<ol>
<li> Please open <a href="https://code.google.com/apis/console" target="_blank" title="Google API Key Console">Google API Key Console.</a></li>
<li> Generate an API key on the <a href="https://code.google.com/apis/console#:access" title="Google API Key Access Panel">API Access pane</a>.
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/09/google_api_key_generate.jpeg"><img src="http://webtechtuts.com/wp-content/uploads/2011/09/google_api_key_generate.jpeg" alt="Google API Key Access Panel" title="google_api_key_generate" width="597" height="414" class="aligncenter size-full wp-image-1044" border=0/></a>
</li>
<li> After Getting API Key you can get publicly shared profile information on Google+ using below HTTP Request as shown in the example. Please replace the <em>yourAPIKey</em> with the key you have generated.
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #000088;">$strUrl</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;https://www.googleapis.com/plus/v1/people/112063946124358686266?key=yourAPIKey&quot;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> fetchURLPageData<span style="color: #009900;">&#40;</span><span style="color: #000088;">$strUrl</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<a href="http://www.php.net/print_r"><span style="color: #990000;">print_r</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/get_object_vars"><span style="color: #990000;">get_object_vars</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/json_decode"><span style="color: #990000;">json_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">function</span> fetchURLPageData<span style="color: #009900;">&#40;</span><span style="color: #000088;">$vURL</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$cu</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_init"><span style="color: #990000;">curl_init</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span><span style="color: #000088;">$vURL</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #339933;">,</span>CURLOPT_CONNECTTIMEOUT<span style="color: #339933;">,</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #339933;">,</span> CURLOPT_USERAGENT<span style="color: #339933;">,</span> <span style="color: #0000ff;">'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13)'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #339933;">,</span> CURLOPT_HEADER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// set to 0 to eliminate header info from response</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$res</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_exec"><span style="color: #990000;">curl_exec</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cu</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$res</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:550px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><a href="http://www.php.net/array"><span style="color: #990000;">Array</span></a><br />
<span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>kind<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> plus<span style="color: #666666; font-style: italic;">#person<br />
</span> &nbsp; &nbsp;<span style="color: #009900;">&#91;</span>id<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">112063946124358686266</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>displayName<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> Tom Anderson<br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>gender<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> male<br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>aboutMe<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> I might be your friend<span style="color: #339933;">.</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>url<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//plus.google.com/112063946124358686266</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>image<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>url<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//lh5.googleusercontent.com/-IKJaEaE8GgY/AAAAAAAAAAI/AAAAAAAAAao/PNoLYQ0f3sw/photo.jpg</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>urls<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> <a href="http://www.php.net/array"><span style="color: #990000;">Array</span></a><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>value<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.twitter.com/myspacetom</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>value<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.facebook.com/myspacetom</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>value<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//about.me/myspacetom</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>value<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//plus.google.com/112063946124358686266</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>type<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> profile<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>value<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.googleapis.com/plus/v1/people/112063946124358686266</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>type<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> json<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #009900;">&#91;</span>organizations<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> <a href="http://www.php.net/array"><span style="color: #990000;">Array</span></a><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>name<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> University of California at Berkeley<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>type<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> school<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>name<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> University of California at Los Angeles<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>type<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> school<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> stdClass Object<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>name<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> MySpace<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>title<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> former President<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>type<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=&gt;</span> work<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#41;</span><br />
<br />
<span style="color: #009900;">&#41;</span></div></td></tr></tbody></table></div>
</li>
<li> Similarly, you can get a list of someone&#8217;s most recent public posts by using the below HTTP Request.
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.googleapis.com/plus/v1/people/112063946124358686266/activities/public?key=yourAPIKey</span></div></td></tr></tbody></table></div>
</li>

<p><a href="http://feedads.g.doubleclick.net/~a/ApEfnyrSJfKhxvxymNHZGConBoM/0/da"><img src="http://feedads.g.doubleclick.net/~a/ApEfnyrSJfKhxvxymNHZGConBoM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ApEfnyrSJfKhxvxymNHZGConBoM/1/da"><img src="http://feedads.g.doubleclick.net/~a/ApEfnyrSJfKhxvxymNHZGConBoM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/bgVMhIjJlHs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/29/get_google_plus_profile_info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/29/get_google_plus_profile_info/</feedburner:origLink></item>
		<item>
		<title>Install LAMP (Linux-Apache-MySQL-PHP) Server on Fedora 13</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/d4sv-ZZAFyk/</link>
		<comments>http://webtechtuts.com/2011/09/23/install-lamp-server-on-fedora/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 08:47:28 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[install lamp on Fedora]]></category>
		<category><![CDATA[install lamp on Fedora 13]]></category>
		<category><![CDATA[LAMP installation on fedora]]></category>
		<category><![CDATA[LAMP installation on fedora 13]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1037</guid>
		<description><![CDATA[This article provides you step-by-step instructions for installing a full-featured LAMP stack on a Fedora 13 system. In this guide, you will be instructed on setting up Apache, MySQL, and PHP.]]></description>
			<content:encoded><![CDATA[<p>If you have Fedora 13 on installed on your machine and you want to install LAMP server, then follow simple three steps shown below. This guide provides step-by-step instructions for installing a full-featured LAMP stack on a Fedora 13 system. In this guide, you will be instructed on setting up Apache, MySQL, and PHP </p>
<ul>
<li>Install and Configure the Apache Web Server</li>
<li>Install and Configure MySQL Database Server</li>
<li>Installing and Configuring PHP</li>
</ul>
<p>But first of all check wheather yum is install on your machine or not. To check this use below command.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> &nbsp;<span style="color: #c20cb9; font-weight: bold;">which</span> yum<br />
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>yum</div></td></tr></tbody></table></div>
<p>Please read this article, <a href="http://webtechtuts.com/2011/09/23/yum-installation-on-fedora/" target="_blank" title="Yum installation on Fedora">Yum installation on Fedora</a> .</p>
<h3>Install and Configure the Apache Web Server</h3>
<p>The Apache Web Server is a very popular choice for serving web pages. While many alternatives have appeared in the last few years, Apache remains a powerful option that we recommend for most uses.</p>
<p>Make sure your system is up to date by issuing the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> yum update</div></td></tr></tbody></table></div>
<p>To install the current version of the Apache web server (in the 2.x series) use the following commands:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> yum <span style="color: #c20cb9; font-weight: bold;">install</span> httpd<br />
shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>chkconfig <span style="color: #660033;">--levels</span> <span style="color: #000000;">235</span> httpd on</div></td></tr></tbody></table></div>
<p>The main configuration directives for Apache are contained in the httpd.conf file, which is located at /etc/httpd/conf/httpd.conf. We advise you to make a backup of this file into your home directory, like so:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>httpd<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>httpd.conf ~<span style="color: #000000; font-weight: bold;">/</span>httpd.conf.backup</div></td></tr></tbody></table></div>
<p>By default, all files ending in the .conf extension in /etc/httpd/conf.d/ are treated as configuration files, and we recommend placing your non-standard configuration options in files in these directories. Regardless of how you choose to organize your configuration files, making regular backups of known working states is highly recommended.</p>
<p>Now we&#8217;ll configure virtual hosting so that we can host multiple domains (or subdomains) with the server. These websites can be controlled by different users, or by a single user, as you prefer.</p>
<p>Before we get started, we suggest that you combine all configuration on virtual hosting into a single file called vhost.conf located in the /etc/httpd/conf.d/ directory. Open this file in your favorite text editor, and we&#8217;ll begin by setting up virtual hosting.<br />
Configure Virtual Hosting</p>
<p>There are different ways to set up virtual hosts, however we recommend the method below.</p>
<p>By default, Apache listens on all IP addresses available to it. We must configure it to listen only on addresses we specify. Even if you only have one IP, it is still a good idea to tell Apache what IP address to listen on in case you decide to add more.</p>
<p>Begin by adding the following line to the virtual hosting configuration file:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:550px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">File excerpt:/etc/httpd/conf.d/vhost.conf<br />
<br />
NameVirtualHost 0.0.0.0:80<br />
<br />
Be sure to replace 13.34.56.78 with your own IP address.<br />
Configure Virtual Hosts<br />
<br />
Now we will create virtual host entries for each site that we need to host with this server. Here are two examples for sites at &quot;example.com&quot; and &quot;example.org&quot;.<br />
<br />
File excerpt:/etc/httpd/conf.d/vhost.conf<br />
<br />
&lt;VirtualHost 0.0.0.0:80&gt;<br />
&nbsp; &nbsp; &nbsp;ServerAdmin webmaster@example.com<br />
&nbsp; &nbsp; &nbsp;ServerName example.com<br />
&nbsp; &nbsp; &nbsp;ServerAlias www.example.com<br />
&nbsp; &nbsp; &nbsp;DocumentRoot /srv/www/example.com/public_html/<br />
&nbsp; &nbsp; &nbsp;ErrorLog /srv/www/example.com/logs/error.log<br />
&nbsp; &nbsp; &nbsp;CustomLog /srv/www/example.com/logs/access.log combined<br />
&lt;/VirtualHost&gt;<br />
<br />
&lt;VirtualHost 0.0.0.0:80&gt;<br />
&nbsp; &nbsp; &nbsp;ServerAdmin webmaster@example.org<br />
&nbsp; &nbsp; &nbsp;ServerName example.org<br />
&nbsp; &nbsp; &nbsp;ServerAlias www.example.org<br />
&nbsp; &nbsp; &nbsp;DocumentRoot /srv/www/example.org/public_html/<br />
&nbsp; &nbsp; &nbsp;ErrorLog /srv/www/example.org/logs/error.log<br />
&nbsp; &nbsp; &nbsp;CustomLog /srv/www/example.org/logs/access.log combined<br />
&lt;/VirtualHost&gt;</div></td></tr></tbody></table></div>
<p>Notes regarding this example configuration:</p>
<p>    All of the files for the sites that you host will be located in directories that exist underneath /srv/www. You can symbolically link these directories into other locations if you need them to exist in other places.<br />
    ErrorLog and CustomLog entries are suggested for more fine-grained logging, but are not required. If they are defined (as shown above), the logs directories must be created before you restart Apache.</p>
<p>Before you can use the above configuration, you&#8217;ll need to create the specified directories. For the above configuration, you can do this with the following commands:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>srv<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>example.com<span style="color: #000000; font-weight: bold;">/</span>public_html<br />
shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>srv<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>example.com<span style="color: #000000; font-weight: bold;">/</span>logs<br />
<br />
shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>srv<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>example.org<span style="color: #000000; font-weight: bold;">/</span>public_html<br />
shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>srv<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>example.org<span style="color: #000000; font-weight: bold;">/</span>logs<br />
<br />
After you<span style="color: #ff0000;">'ve set up your virtual hosts, issue the following command to run Apache for the first time:<br />
[cc lang=&quot;bash&quot;]<br />
shell&gt; service httpd start</span></div></td></tr></tbody></table></div>
<p>Assuming that you have configured the DNS for your domain to point to your Linode&#8217;s IP address, virtual hosting for your domain should now work. Remember that you can create as many virtual hosts with Apache as you need.</p>
<p>Any time you change an option in your vhost.conf file, or any other Apache configuration remember to reload the configuration with the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> service httpd reload</div></td></tr></tbody></table></div>
<h3>Install and Configure MySQL Database Server</h3>
<p>MySQL is a relational database management system (RDBMS) and is a popular component in contemporary web development tool chains. It is used to store data for many popular applications, including WordPress and Drupal.<br />
Install MySQL</p>
<p>The first step is to install the mysql-server package, which is accomplished by the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span>yum <span style="color: #c20cb9; font-weight: bold;">install</span> mysql-server</div></td></tr></tbody></table></div>
<p>If you want to run MySQL by default when the system boots, which is a typical setup, execute the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>chkconfig <span style="color: #660033;">--levels</span> <span style="color: #000000;">235</span> mysqld on</div></td></tr></tbody></table></div>
<p>Use the chkconfig command to setup runlevels as needed.</p>
<p>Now you can start the mysql daemon (mysqld) with the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> service mysqld start</div></td></tr></tbody></table></div>
<p>MySQL should be ready to configure and run. While you shouldn&#8217;t need to change the configuration file, note that it is located at /etc/my.cnf for future reference.<br />
Configure MySQL and Set Up MySQL databases</p>
<p>After installing MySQL, it&#8217;s recommended that you run mysql_secure_installation, a program that helps secure MySQL. While running mysql_secure_installation, you will be presented with the opportunity to change the MySQL root password, remove anonymous user accounts, disable root logins outside of localhost, and remove test databases. It is recommended that you answer yes to these options. If you are prompted to reload the privilege tables, select yes. Run the following command to execute the program:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span><br />
mysql_secure_installation</div></td></tr></tbody></table></div>
<p>Next, we&#8217;ll create a database and grant your users permissions to use databases. First, log in to MySQL:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> mysql <span style="color: #660033;">-u</span> root <span style="color: #660033;">-p</span></div></td></tr></tbody></table></div>
<p>Enter MySQL&#8217;s root password, and you&#8217;ll be presented with a prompt where you can issue SQL statements to interact with the database.</p>
<p>To create a database and grant your users permissions on it, issue the following command. The semi-colons (; characters) at the end of the lines are crucial for ending the commands. Your command should look like this:</p>
<p>create database test;</p>
<p>grant all on test.* to &#8216;foreman&#8217; identified by &#8217;5t1ck&#8217;;</p>
<p>In the example above, test is the name of the database, foreman is the username, and 5t1ck password. Note that database user names and passwords are only used by scripts connecting to the database, and that database user account names need not (and perhaps should not) represent actual user accounts on the system.</p>
<p>With that completed, you&#8217;ve successfully configured MySQL and you may now pass these database credentials on to your users. To exit the MySQL database administration utility issue the following command:</p>
<p>quit</p>
<p>With Apache and MySQL installed you are now ready to move on to installing PHP to provide scripting support for your web pages.</p>
<h3>Installing and Configuring PHP</h3>
<p>PHP makes it possible to produce dynamic and interactive pages using your own scripts and popular web development frameworks. Furthermore, many popular web applications like WordPress are written in PHP. If you want to be able to develop your websites using PHP, you must first install it.</p>
<p>Fedora includes packages for installing PHP from the terminal. Issue the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> yum <span style="color: #c20cb9; font-weight: bold;">install</span> php php-pear</div></td></tr></tbody></table></div>
<p>Once PHP5 is installed, we&#8217;ll need to tune the configuration file located in /etc/php.ini to enable more descriptive errors, logging, and better performance. These modifications provide a good starting point if you&#8217;re unfamiliar with PHP configuration.</p>
<p>Make sure that the following values are set, and relevant lines are uncommented (comments are lines beginning with a semi-colon (; character)):</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">File excerpt:/etc/php.ini<br />
<br />
error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR<br />
display_errors = Off<br />
log_errors = On<br />
error_log = /var/log/php.log<br />
max_execution_time = 300<br />
memory_limit = 64M<br />
register_globals = Off</div></td></tr></tbody></table></div>
<p>If you need support for MySQL in PHP, then you must install the php5-mysql package with the following command:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> yum <span style="color: #c20cb9; font-weight: bold;">install</span> php-mysql</div></td></tr></tbody></table></div>
<p>You can test PHP by creating a file with the following contents under your &#8220;public_html&#8221; directory:</p>
<p>File:/srv/www/example.com/public_html/test.php</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <br />
<span style="color: #b1b100;">echo</span> <a href="http://www.php.net/phpinfo"><span style="color: #990000;">phpinfo</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>When you view this page in your browser, you should be presented with detailed PHP configuration information.<br />
Restart Apache</p>
<p>Finally, restart Apache to make sure everything is loaded correctly:</p>
<p>service httpd restart</p>

<p><a href="http://feedads.g.doubleclick.net/~a/st877G4z6wLBuhTLnE0VbnKK9Zk/0/da"><img src="http://feedads.g.doubleclick.net/~a/st877G4z6wLBuhTLnE0VbnKK9Zk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/st877G4z6wLBuhTLnE0VbnKK9Zk/1/da"><img src="http://feedads.g.doubleclick.net/~a/st877G4z6wLBuhTLnE0VbnKK9Zk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/d4sv-ZZAFyk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/23/install-lamp-server-on-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/23/install-lamp-server-on-fedora/</feedburner:origLink></item>
		<item>
		<title>Yum installation on Fedora 13</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/QHdPZXkd8hE/</link>
		<comments>http://webtechtuts.com/2011/09/23/yum-installation-on-fedora/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 07:57:10 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[yum installation]]></category>
		<category><![CDATA[yum installation on fedora]]></category>
		<category><![CDATA[yum installation on fedora 13]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1034</guid>
		<description><![CDATA[If you have Fedora on your machine and you want install yum on your fedora machine then use below steps to install it.
]]></description>
			<content:encoded><![CDATA[<p>If you have Fedora on your machine and you want install yum on your fedora machine then use below steps to install it.</p>
<p>1. Login as root and go to your root directory.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> ~</div></td></tr></tbody></table></div>
<p>2. Now create a directory called yum (or you can call it whatever you want)</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> yum</div></td></tr></tbody></table></div>
<p>3. Now change the directory to directory you just created.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> yum</div></td></tr></tbody></table></div>
<p>4. please download the yum version of your choice, in my case, i downloaded the version 3.2.2 for my Fedora 13</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>yum.baseurl.org<span style="color: #000000; font-weight: bold;">/</span>download<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">3.2</span><span style="color: #000000; font-weight: bold;">/</span>yum-3.2.4.tar.gz</div></td></tr></tbody></table></div>
<p>5. Untar the package using tar command with necessary option.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf yum-3.2.4.tar.gz</div></td></tr></tbody></table></div>
<p>6. Change the directory to the directory you untar.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> yum-3.2.4</div></td></tr></tbody></table></div>
<p>7. Use below command to install the yum</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> .<span style="color: #000000; font-weight: bold;">/</span>configure</div></td></tr></tbody></table></div>
<p>then use make command</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">make</span></div></td></tr></tbody></table></div>
<p>make install</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">shell<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></td></tr></tbody></table></div>

<p><a href="http://feedads.g.doubleclick.net/~a/X5lZTkY55AWyTZwpx2pZ_TH1Crc/0/da"><img src="http://feedads.g.doubleclick.net/~a/X5lZTkY55AWyTZwpx2pZ_TH1Crc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/X5lZTkY55AWyTZwpx2pZ_TH1Crc/1/da"><img src="http://feedads.g.doubleclick.net/~a/X5lZTkY55AWyTZwpx2pZ_TH1Crc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/QHdPZXkd8hE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/23/yum-installation-on-fedora/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/23/yum-installation-on-fedora/</feedburner:origLink></item>
		<item>
		<title>Facebook – all your news on one place</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/OSltlBbmg4c/</link>
		<comments>http://webtechtuts.com/2011/09/21/facebook-all-your-news-on-one-place/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 07:49:56 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[facebook - all news on one place]]></category>
		<category><![CDATA[facebook news feed change]]></category>
		<category><![CDATA[facebook ticker]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1019</guid>
		<description><![CDATA[All of your news is now in one place with the most interesting stories featured at the top. If you haven’t visited Facebook for a while.]]></description>
			<content:encoded><![CDATA[<p>Facebook come with the new look or features : All your news is now on one place.</p>
<p>All of your news is now in one place with the most interesting stories featured at the top. If you haven’t visited Facebook for a while, the first things you’ll see are top photos and status updates posted while you’ve been away. They’re marked with an easy-to-spot blue corner.</p>
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/09/fb_all_news_at_one_place.jpeg"><img src="http://webtechtuts.com/wp-content/uploads/2011/09/fb_all_news_at_one_place.jpeg" alt="Facebook All Your News on one place" title="fb_all_news_at_one_place" width="600" height="454" class="aligncenter size-full wp-image-1020" border=0/></a></p>
<p>If you check Facebook more frequently, you’ll see the most recent stories first. Photos will also be bigger and easier to enjoy while you’re scrolling through.</p>
<ul>
<li>You can see top stories at the top since you last checked news feed. </li>
<li>Each top stories are marked with a blue corner.</li>
<li>Recent stories are below, in order they were posted.</li>
</ul>
<h3>Ticker</h3>
<p>Ticker, on the right-hand side of your account, lets you see all your friends’ activity in real-time. When you hover over an item on ticker, you can see the full story and join the conversation as it happens. </p>
<p><a href="http://webtechtuts.com/wp-content/uploads/2011/09/fb_ticker.jpeg"><img src="http://webtechtuts.com/wp-content/uploads/2011/09/fb_ticker.jpeg" alt="Facebook Ticker" title="fb_ticker" width="600" height="541" class="aligncenter size-full wp-image-1021" border=0/></a></p>
<p>Ticker updates itself as as stories happen. This gives you a more complete picture of what your friends are doing, right now.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/GXbyO8vlEVzGmuTfQUrvShrXvUc/0/da"><img src="http://feedads.g.doubleclick.net/~a/GXbyO8vlEVzGmuTfQUrvShrXvUc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GXbyO8vlEVzGmuTfQUrvShrXvUc/1/da"><img src="http://feedads.g.doubleclick.net/~a/GXbyO8vlEVzGmuTfQUrvShrXvUc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/OSltlBbmg4c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/21/facebook-all-your-news-on-one-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/21/facebook-all-your-news-on-one-place/</feedburner:origLink></item>
		<item>
		<title>Motorola FIRE XT and Motorola FIRE launched in India</title>
		<link>http://feedproxy.google.com/~r/Webtechtuts/~3/APn0iLJhIC0/</link>
		<comments>http://webtechtuts.com/2011/09/14/motorola-fire-xt-and-motorola-fire-launched-in-india/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 16:16:33 +0000</pubDate>
		<dc:creator>Vijay Gupta</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Motorola FIRE]]></category>
		<category><![CDATA[Motorola FIRE Price]]></category>
		<category><![CDATA[Motorola FIRE Specification]]></category>
		<category><![CDATA[Motorola FIRE XT]]></category>
		<category><![CDATA[Motorola FIRE XT price]]></category>
		<category><![CDATA[Motorola FIRE XT specification]]></category>
		<category><![CDATA[Motorola new android phone]]></category>

		<guid isPermaLink="false">http://webtechtuts.com/?p=1010</guid>
		<description><![CDATA[Motorola has launched their new Android phones, Motorola FIRE XT and Motorola FIRE in India. The Motorola FIRE XT has 3.5 inch touch screen display and the Motorola FIRE has QWERTY keyboard along with a 2.8 inch capacitive touch screen. ]]></description>
			<content:encoded><![CDATA[<p>In a bid to capture a large portion of the burgeoning Indian mobile market, Motorola Mobility has come up with two new Android powered smartphones &#8211; Motorola Fire XT and Motorola Fire. Both phones run Android 2.3 OS.<br />
<a href="http://webtechtuts.com/wp-content/uploads/2011/09/Motorola-FIRE-XT-and-Motorola-FIRE.jpg"><img src="http://webtechtuts.com/wp-content/uploads/2011/09/Motorola-FIRE-XT-and-Motorola-FIRE.jpg" alt="Motorola FIRE XT and Motorola FIRE launched in India" title="Motorola-FIRE-XT-and-Motorola-FIRE" width="574" height="501" class="aligncenter size-full wp-image-1011" border=0 /></a><br />
Featuring a 3.5-inch screen, the Motorola Fire XT sports a 5 megapixel auto-focus camera with built-in flash. The phone has an 800MHz processor, 1540mAh battery and 512MB of RAM. It is priced at Rs 13,890.</p>
<p>The lesser priced Motorola Fire is equipped with a 3 megapixel camera and has a 2.8-inch screen. Priced at Rs 9,990, it has a touch-screen display along with a full QWERTY keypad. Weighing 110g, its other features include 1420 mAh battery, 600 MHz processor, etc. </p>
<p>&#8220;With easy multitasking and contact management, faster and easier interactions, the Motorola FIRE XT and Motorola FIRE make for a great mobile experience at a great price for the young, fast-moving users who want everything from a top-quality smartphone,&#8221; said Rajan Chawla, Mobile Devices business country head-sales and operations, India and South West Asia, Motorola Mobility.</p>
<h3>Specifications of Motorola FIRE XT</h3>
<ul>
<li>3.5 inch (480 x 320 pixels) extra bright capacitive multi-touch display</li>
<li>11.95 mm thick and weighs 114 g</li>
<li>Android 2.3 (Gingerbread)</li>
<li>5MP auto focus camera with flash and front-facing VGA camera</li>
<li>800MHz CPU</li>
<li>3G, Wi-Fi b/g/n, Bluetooth and aGPS</li>
<li>3.5 mm audio jack and FM Radio RDS</li>
<li>512MB RAM, 512MB ROM that is expandable up to 32GB with MicroSD</li>
<li>1540mAh battery that offers up to 8 hours talk time and up to 28 days in standby in 3G</li>
</ul>
<h3>Specifications of Motorola FIRE</h3>
<ul>
<li>2.8 inch (320 x 240 pixels) capacitive multi-touch display and full QWERTY keypad</li>
<li>13.45mm thick and weighs 110g</li>
<li>Android 2.3 (Gingerbread)</li>
<li>3MP camera</li>
<li>3G, Wi-Fi b/g/n, Bluetooth and aGPS</li>
<li>3.5 mm audio jack and FM Radio RDS</li>
<li>256MB RAM, 512MB ROM that is expandable up to 32GB with MicroSD</li>
<li>1420mAh battery that offers up to 8 hours talk time and up to 27 days in standby in 3G</li>
</ul>
<p>Other common features include 2GB microSD card in box that is expandable up to 32GB, 3G3/WIFI4 enabled and supports 3G hotspot for connecting up to 5 devices, e-compass, proximity sensor, ambient light sensor, accelerometer, et al. </p>
<h3>Reference</h3>
<p><a href="http://ibnlive.in.com/news/motorola-rolls-out-new-android-phones-in-india/184092-11.html" target="_blank">IBN Live</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/hKPkgQLqap11a57P-eoM4k3DxKg/0/da"><img src="http://feedads.g.doubleclick.net/~a/hKPkgQLqap11a57P-eoM4k3DxKg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hKPkgQLqap11a57P-eoM4k3DxKg/1/da"><img src="http://feedads.g.doubleclick.net/~a/hKPkgQLqap11a57P-eoM4k3DxKg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Webtechtuts/~4/APn0iLJhIC0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://webtechtuts.com/2011/09/14/motorola-fire-xt-and-motorola-fire-launched-in-india/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://webtechtuts.com/2011/09/14/motorola-fire-xt-and-motorola-fire-launched-in-india/</feedburner:origLink></item>
	</channel>
</rss>

