<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GO ON CLICK!</title>
	<atom:link href="http://www.goonclick.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goonclick.com</link>
	<description>There is always a smarter way.</description>
	<lastBuildDate>Sun, 25 Apr 2010 20:53:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to retrieve Email account&#8217;s password from psa database on Linux Plesk server?</title>
		<link>http://www.goonclick.com/how-to-retrieve-email-accounts-password-on-linux-plesk-server/</link>
		<comments>http://www.goonclick.com/how-to-retrieve-email-accounts-password-on-linux-plesk-server/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 21:10:36 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Linux Plesk Servers]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=152</guid>
		<description><![CDATA[Hi friends, it’s so simple to retrieve email account&#8217;s password for a particular account on the plesk server. You should have root access to your Linux Plesk server. Below are the steps to retrieve Plesk control panel password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk)]]></description>
			<content:encoded><![CDATA[<p>Hi friends, it’s so simple to retrieve email account&#8217;s password for a particular account on the plesk server. You should have root access to your Linux Plesk server. Below are the steps to retrieve Plesk control panel password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk) database. You will need root access OR should have an access to mysql database and privileges to fire select query on tables in psa database.<br />
<span id="more-152"></span><br />
1. Login to server through SSH.<br />
2. Now login to mysql using command below.</p>
<p>[root@tom ~]# mysql -uadmin -p</p>
<p>Above command will ask for the password. You should enter plesk root password.</p>
<p>3. Then you will be able to login to mysql on the server. And see the mysql prompt.</p>
<p>4. Now change the database to psa using command below.</p>
<p>mysql&gt; use psa<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&gt;</p>
<p>5. Now use query below to retrieve the email account&#8217;s password for the particular account. You should know the domain name and replace &#8216;DomainName.com&#8217; in the following query with exact domain name.</p>
<p>SELECT accounts.id, mail.mail_name, accounts.password, domains.name, domains.id, mail.dom_id, mail.account_id<br />
FROM domains, mail, accounts<br />
Where domains.id = mail.dom_id<br />
and mail.account_id = accounts.id<br />
and domains.name = &#8216;DomainName.com&#8217;;</p>
<p>6. That&#8217;s it. Here you are having the email accounts along with the passwords.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-to-retrieve-email-accounts-password-on-linux-plesk-server','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-to-retrieve-email-accounts-password-on-linux-plesk-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to retrieve FTP user name and passwords on Linux Plesk server?</title>
		<link>http://www.goonclick.com/how-to-retrieve-ftp-user-name-and-passwords-on-linux-plesk-server/</link>
		<comments>http://www.goonclick.com/how-to-retrieve-ftp-user-name-and-passwords-on-linux-plesk-server/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 20:25:47 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Linux Plesk Servers]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=149</guid>
		<description><![CDATA[Hi friends, It&#8217;s so simple to retrieve FTP passwords with user name from psa (plesk) database. You should have root access to your Linux Plesk server. Below are the steps to retrieve FTP password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk) database. You will need]]></description>
			<content:encoded><![CDATA[<p>Hi friends, It&#8217;s so simple to retrieve FTP passwords with user name from psa (plesk) database. You should have root access to your Linux Plesk server. Below are the steps to retrieve FTP password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk) database. You will need root access OR should have an access to mysql database and privileges to fire select query on tables in psa database.</p>
<p><span id="more-149"></span></p>
<p>1. Login to server through SSH.<br />
2. Now login to mysql using command below.</p>
<p>[root@tom ~]# mysql -uadmin -p</p>
<p>Above command will ask for the password. You should enter plesk root password.</p>
<p>3. Then you will be able to login to mysql on the server. And see the mysql prompt.</p>
<p>4. Now change the database to psa using command below.</p>
<p>mysql&gt; use psa<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&gt;</p>
<p>5. Now use the sql query below to retrieve FTP user name and password for perticular domain. Make sure that you should change &#8216;DomainName.com&#8217; with the exact domain name for which you want to retireve FTP password.</p>
<p>SELECT login AS FTP_USER,password AS FTP_PASS,home AS DOMAIN_ROOT,accounts.id,sys_users.account_id<br />
FROM accounts, sys_users<br />
WHERE accounts.id=sys_users.account_id<br />
AND home=&#8217;/var/www/vhosts/DomainName.com&#8217;;</p>
<p>6. That&#8217;s it you are having list of FTP user names and passwords for a domain.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-to-retrieve-ftp-user-name-and-passwords-on-linux-plesk-server','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-to-retrieve-ftp-user-name-and-passwords-on-linux-plesk-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to retrieve Plesk control panel password for domain on Linux Plesk server?</title>
		<link>http://www.goonclick.com/how-to-retrieve-plesk-control-panel-password-for-domain-on-linux-plesk-server/</link>
		<comments>http://www.goonclick.com/how-to-retrieve-plesk-control-panel-password-for-domain-on-linux-plesk-server/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 20:16:41 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Linux Plesk Servers]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=146</guid>
		<description><![CDATA[Hi friends, it’s so simple to retrieve plesk password for a particular account on the plesk server. You should have root access to your Linux Plesk server. Below are the steps to retrieve Plesk control panel password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk) database.]]></description>
			<content:encoded><![CDATA[<p>Hi friends, it’s so simple to retrieve plesk password for a particular account on the plesk server. You should have root access to your Linux Plesk server. Below are the steps to retrieve Plesk control panel password on Linux Plesk server. Note that we are retrieving database user name and password from psa (plesk) database. You will need root access OR should have an access to mysql database and privileges to fire select query on tables in psa database.<br />
<span id="more-146"></span><br />
1. Login to server through SSH.<br />
2. Now login to mysql using command below.</p>
<p>[root@tom ~]# mysql -uadmin -p</p>
<p>Above command will ask for the password. You should enter plesk root password.</p>
<p>3. Then you will be able to login to mysql on the server. And see the mysql prompt.</p>
<p>4. Now change the database to psa using command below.</p>
<p>mysql&gt; use psa<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&gt;</p>
<p>5. Now use query below to retrieve the Plesk control panel password for the particular account. You should know the domain name and replace &#8216;DomainName.com&#8217; in the following query with exact domain name.</p>
<p>SELECT name as DOMAIN_NAME, password AS PASSWORD<br />
FROM accounts, dom_level_usrs, domains<br />
WHERE accounts.id=dom_level_usrs.account_id<br />
AND dom_level_usrs.dom_id=domains.id and domains.name= &#8216;DomainName.com&#8217;;</p>
<p>6. That&#8217;s it. Here you are having the password for the plesk control panel.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-to-retrieve-plesk-control-panel-password-for-domain-on-linux-plesk-server','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-to-retrieve-plesk-control-panel-password-for-domain-on-linux-plesk-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to retrieve mysql database passwords on Linux Plesk server?</title>
		<link>http://www.goonclick.com/how-to-retrieve-mysql-database-passwords-on-linux-plesk-server/</link>
		<comments>http://www.goonclick.com/how-to-retrieve-mysql-database-passwords-on-linux-plesk-server/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 20:01:02 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Linux Plesk Servers]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=139</guid>
		<description><![CDATA[It is possible to retrieve database password from Linux Plesk server. Below are the steps to retrieve database password from SSH. Note that we are retrieving database user name and password from psa (plesk) database. You will need root access OR should have an access to mysql database and privileges to fire select query on]]></description>
			<content:encoded><![CDATA[<p>It is possible to retrieve database password from Linux Plesk server. Below are the steps to retrieve database password from SSH. Note that we are retrieving database user name and password from psa (plesk) database. You will need root access OR should have an access to mysql database and privileges to fire select query on tables in psa database.</p>
<p><span id="more-139"></span>1. Login to server through SSH.<br />
2. Now login to mysql using command below.</p>
<p>[root@tom ~]# mysql -uadmin -p</p>
<p>Above command will ask for the password. You should enter plesk root password.</p>
<p>3. Then you will be able to login to mysql on the server. And see the mysql prompt.</p>
<p>4. Now change the database to psa using command below.</p>
<p>mysql&gt; use psa<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&gt;</p>
<p>5. Now use the query below to retrieve mysql database password for a particular domain. Make sure that you should change &#8216;DomainName.com&#8217; by exact domain name for which you want to retrieve database password.</p>
<p>SELECT domains.name AS DOMAIN_NAME, data_bases.name AS DATABASE_NAME, db_users.login, accounts.password<br />
FROM data_bases, db_users, domains, accounts<br />
WHERE data_bases.dom_id = domains.id<br />
AND db_users.db_id = data_bases.id<br />
AND db_users.account_id = accounts.id<br />
AND domains.name=&#8217;DomainName.com&#8217;<br />
ORDER BY domain_name;</p>
<p>6. That&#8217;s it. Here you will find a list of databases used for the domain along with the passwords.</p>
<p>You can retrieve database passwords for all the domains using query below.</p>
<p>SELECT domains.name AS domain_name, data_bases.name AS database_name, db_users.login, accounts.password<br />
FROM data_bases, db_users, domains, accounts<br />
WHERE data_bases.dom_id = domains.id<br />
AND db_users.db_id = data_bases.id<br />
AND db_users.account_id = accounts.id and<br />
ORDER BY domain_name;</p>
<p>This will list all the domains along with databases and passwords.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-to-retrieve-mysql-database-passwords-on-linux-plesk-server','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-to-retrieve-mysql-database-passwords-on-linux-plesk-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>404 custom error page using .htaccess</title>
		<link>http://www.goonclick.com/404-custom-error-page-using-htaccess/</link>
		<comments>http://www.goonclick.com/404-custom-error-page-using-htaccess/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 18:18:24 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[.htaccess]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=129</guid>
		<description><![CDATA[Most of the time you may get error message as below on your site and you may know the reason why the message is, Not Found The requested document was not found on this server. Web Server at yourdomain.com The error message comes when there is no such a page into your website. Suppose you]]></description>
			<content:encoded><![CDATA[<p>Most of the time you may get error message as below on your site and you may know the reason why the message is,</p>
<h1><strong>Not Found</strong></h1>
<p><strong> </strong><br />
The requested document was not found on this server.</p>
<p>Web Server at yourdomain.com</p>
<p><span id="more-129"></span>The error message comes when there is no such a page into your website. Suppose you are trying to browse www.yoursite.com/index.html and because of typing mistake you type www.yoursite.com/inddex.html (www.yoursite.com is correct but /index.html has spelling mistake) you will get above error message which is not look professional for your site.</p>
<p>You can avoid this error message just by creating two more very simple files.</p>
<p>1. .htaccess file and<br />
2. A file in which the exact message written.</p>
<p>Go through the steps below to create a custom 404 error page for your site.</p>
<p>1. Create a .htaccess file.<br />
2. Put code below into the file.</p>
<p>ErrorDocument 404 http://www.YourSite.com/error.html</p>
<p>3. In above code replace www.YourSite.com by your website name.<br />
4. Save the file.<br />
5. Now create second file which is .html file.<br />
6. And add the message into the file you want to show when there is no such a page.<br />
7. Save the file.</p>
<p>That’s it.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/404-custom-error-page-using-htaccess','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/404-custom-error-page-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I insert google map into my site?</title>
		<link>http://www.goonclick.com/how-do-i-insert-google-map-into-my-site/</link>
		<comments>http://www.goonclick.com/how-do-i-insert-google-map-into-my-site/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 22:24:33 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=111</guid>
		<description><![CDATA[On most of the site you will see google map added on some pages. How do they do it? Is it so hard? The answer of second question is &#8216;Absolutely not&#8217;. It is as simple as 1,2,3 as we are going to complete it in just 3 steps. Answer of first question is in description.]]></description>
			<content:encoded><![CDATA[<p>On most of the site you will see google map added on some pages. How do they do it? Is it so hard? The answer of second question is &#8216;Absolutely not&#8217;. It is as simple as 1,2,3 as we are going to complete it in just 3 steps. Answer of first question is in description. Adding gogle map will help you in many ways to show your business location so that your clients can contact you very easily and it is also ease for them to contact you. So, here we go to add google map into the site.</p>
<p><span id="more-111"></span></p>
<p>STEP 1. Sign up for google map.</p>
<p>To show google map on your website you will need to sign up for google map account. It&#8217;s a free account. To sign up for google account <a href="http://code.google.com/apis/maps/signup.html">click here</a> OR browse url below.</p>
<p><a href="http://code.google.com/apis/maps/signup.html">http://code.google.com/apis/maps/signup.html</a></p>
<p>Once you sign up google will provide you a key which is also called as API KEY. Copy the API KEY, you will need it for google map on your site.</p>
<p>STEP 2. Adding code into your page.</p>
<p>To show the Google map on your website you will also need some lines of code. Add code below into your webpage on which you want to show the Google map.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</p>
<p>&lt;title&gt;Google maps test&lt;/title&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;script src=&#8221;http://maps.google.com/maps?file=api&amp;v=1&amp;key=API_KEY_GOES_HERE&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div id=&#8221;map&#8221; style=&#8221;width: 800px; height: 600px&#8221;&gt;&lt;/div&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>//&lt;![CDATA[</p>
<p>var map = new GMap(document.getElementById("map"));</p>
<p>map.addControl(new GSmallMapControl());</p>
<p>map.centerAndZoom(new GPoint(-56.07421875, 4.258768357307995), 10);</p>
<p>//]]&gt;</p>
<p>&lt;/script&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>STEP 3. Placing API KEY at right place.</p>
<p>Now concentrate on line below which you will find in above code.</p>
<p>&lt;script src=&#8221;http://maps.google.com/maps?file=api&amp;v=1&amp;key=API_KEY_GOES_HERE&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>In above line you need to replace API_KEY_GOES_HERE by your API KEY.</p>
<p>Suppose your API key is : ABQIAAAAdW5FF-3mnH2PabckdidndinebadafZ3OQ6Co0DYOP9uT_TOXGdoXRxTOcUIUc_8ctaOAlslxxRheKIARyQ</p>
<p>The above code will be,</p>
<p>&lt;script src=&#8221;http://maps.google.com/maps?file=api&amp;v=1&amp;key=ABQIAAAAdW5FF-3mnH2PabckdidndinebadafZ3OQ6Co0DYOP9uT_TOXGdoXRxTOcUIUc_8ctaOAlslxxRheKIARyQ&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p><strong>NOTE:</strong> Above API KEY is just an imagination it&#8217;s not your API KEY. It will not work for any one as it is not in exist.</p>
<p>DONE <img src='http://www.goonclick.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Enjoy your Google map.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-do-i-insert-google-map-into-my-site','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-do-i-insert-google-map-into-my-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ERROR 2002: Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2)</title>
		<link>http://www.goonclick.com/error-2002-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysql-sock-2/</link>
		<comments>http://www.goonclick.com/error-2002-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysql-sock-2/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 06:52:41 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[MySql]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=106</guid>
		<description><![CDATA[The error &#8220;ERROR 2002: Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2)&#8221; comes when the mysqld service on the server is not running. Restart the mysql service using command below, service mysqld start OR service mysqld restart you will see something like below -bash-2.05b# service mysqld restart Stopping MySQL:                                            [FAILED] Starting MySQL:                                       ]]></description>
			<content:encoded><![CDATA[<p>The error &#8220;ERROR 2002: Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2)&#8221; comes when the mysqld service on the server is not running. Restart the mysql service using command below,</p>
<p><span id="more-106"></span></p>
<p>service mysqld start</p>
<p>OR</p>
<p>service mysqld restart</p>
<p>you will see something like below</p>
<p>-bash-2.05b# service mysqld restart<br />
Stopping MySQL:                                            [FAILED]<br />
Starting MySQL:                                                 [  OK  ]<br />
-bash-2.05b#</p>
<p>Now try to access mysql on the server using command below,</p>
<p>-bash-2.05b# mysql -u root -p<br />
Enter password:</p>
<p>You will be get connected to mysql.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/error-2002-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysql-sock-2','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/error-2002-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysql-sock-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sony Ericsson XPERIA X10 Look</title>
		<link>http://www.goonclick.com/sony-ericsson-xperia-x10-look/</link>
		<comments>http://www.goonclick.com/sony-ericsson-xperia-x10-look/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 18:32:39 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Mobiles]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=93</guid>
		<description><![CDATA[Sony Ericsson launching  XPERIA X10﻿ in India very soon. The price will be in between Rs. 35,000/- to Rs. 40,000/- Sony Ericsson Xperia X10 is based on Google Android mobile platform features large 4″ inch capacitive touchscreen and Qualcomm Snapdragon 1GHz Processor. The information I am witting is bit less but video below will explain]]></description>
			<content:encoded><![CDATA[<p><strong>Sony Ericsson launching  XPERIA X10﻿ in India</strong> very soon. The <strong>price</strong> will be in <strong>between Rs. 35,000/- to Rs. 40,000/-</strong></p>
<p><span id="more-93"></span><strong>Sony Ericsson Xperia X10</strong> is based on Google Android mobile platform features large 4″ inch capacitive touchscreen and Qualcomm Snapdragon 1GHz Processor. The information I am witting is bit less but video below will explain and show you lot about <strong>Sony Ericsson Xperia X10</strong>.</p>
<ul>
<li> Quad Band GSM</li>
<li> 3G/HSDPA</li>
<li> 4″ inch (800 x 480 pixels) full Touchscreen Display</li>
<li> Qualcomm Snapdragon Mobile Chipset</li>
<li> 8 Megapixel camera with AutoFocus, Smile Shutter, Face Detection, image stabilization and LED Flash</li>
<li> Wireless 802.11b/g</li>
<li> Bluetooth with A2DP</li>
<li> Assisted-GPS</li>
<li> Micro SD card slot</li>
<li> 3.5mm Headphone Jack</li>
</ul>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="580" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/m19Lu-JUW1Q&amp;hl=en_US&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="580" height="385" src="http://www.youtube.com/v/m19Lu-JUW1Q&amp;hl=en_US&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/sony-ericsson-xperia-x10-look','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/sony-ericsson-xperia-x10-look/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to install theme or template in joomla?</title>
		<link>http://www.goonclick.com/how-to-install-theme-or-template-in-joomla/</link>
		<comments>http://www.goonclick.com/how-to-install-theme-or-template-in-joomla/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 16:32:27 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=88</guid>
		<description><![CDATA[Look and feel of your website is very important to keep visitors on your website for bit more than they should be. If you are using Joomla cms it&#8217;s becomes very easy to install the template / theme any time. There are lots of templetes freely available on the internet. You can search free joomla]]></description>
			<content:encoded><![CDATA[<p>Look and feel of your website is very important to keep visitors on your website for bit more than they should be.</p>
<p>If you are using Joomla cms it&#8217;s becomes very easy to install the template / theme any time. There are lots of templetes freely available on the internet.<br />
You can search free joomla template on google and download the zip file of the template you like.</p>
<p><span id="more-88"></span><br />
Below are the steps to install the template for your joomla site.</p>
<p>1. Login to your joomla administrator section.<br />
2. Here in &#8216;Upload Package File&#8217; section Click on Extensions &gt;&gt; Install/Uninstall<br />
3. Here you will find a browse button in front of &#8216;Package File&#8217;. Click on button and select your template .zip file.<br />
4. Now click on Upload file &amp; install button.</p>
<p>You can install the theme by using &#8216;Install from Directory&#8217; option. To use this option you will need to upload file into your account first using FTP client software. Then need to select exact directory and your template .zip file name and then click on install button.</p>
<p>Also you can install the theme by using option &#8216;Install from URL&#8217;. Here you<br />
will need a url of your joomla template .zip file.<br />
Suppose your url is as below.</p>
<p>http://www.xyz.com/a/b/c/templete.zip</p>
<p>Enter the url in the box in front of &#8216;Install URL&#8217; and click on install button.</p>
<p>Step 2 is to enable the install template.<br />
Now click on Extensions &gt;&gt; Template Manager<br />
Click on radio button in front of your theme name.<br />
Now click on Default button which you will find at the top of the page. It is yellow in color having star shape.</p>
<p>That is all. Now enjoy your new joomla theme.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/how-to-install-theme-or-template-in-joomla','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/how-to-install-theme-or-template-in-joomla/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL Error : 1194 Table &#8216;phpbb_search_wordmatch&#8217; is marked as crashed and should be repaired</title>
		<link>http://www.goonclick.com/sql-error-1194-table-phpbb_search_wordmatch-is-marked-as-crashed-and-should-be-repaired/</link>
		<comments>http://www.goonclick.com/sql-error-1194-table-phpbb_search_wordmatch-is-marked-as-crashed-and-should-be-repaired/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 17:15:32 +0000</pubDate>
		<dc:creator>Prash</dc:creator>
				<category><![CDATA[MySql]]></category>

		<guid isPermaLink="false">http://www.goonclick.com/?p=78</guid>
		<description><![CDATA[The problem occures because of the table &#8216;phpbb_search_wordmatch&#8217; into the database is crashed. We need to repair the table &#8216;phpbb_search_wordmatch&#8217;. You may receive error message as below. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; SQL Error : 1194 Table &#8216;phpbb_search_wordmatch&#8217; is marked as crashed and should be repaired INSERT INTO phpbb_search_wordmatch (post_id, word_id, title_match) SELECT 43146, word_id, 0 FROM phpbb_search_wordlist WHERE]]></description>
			<content:encoded><![CDATA[<p>The problem occures because of the table &#8216;phpbb_search_wordmatch&#8217; into the database is crashed. We need to repair the table &#8216;phpbb_search_wordmatch&#8217;. You may receive error message as below.</p>
<p><span id="more-78"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
SQL Error : 1194 Table &#8216;phpbb_search_wordmatch&#8217; is marked as crashed and should be repaired</p>
<p>INSERT INTO phpbb_search_wordmatch (post_id, word_id, title_match) SELECT 43146, word_id, 0 FROM phpbb_search_wordlist WHERE word_text IN (&#8216;test&#8217;)</p>
<p>Line : 251<br />
File : functions_search.php<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>To fix the problem go to your phpmyadmin and execute the following query.</p>
<p>REPAIR TABLE phpbb_search_wordmatch;</p>
<p>This query repairs the table &#8216;phpbb_search_wordmatch&#8217; from the database and your forum will work fine.</p>
<p>You may receive similar error message for any table into the phpbb the solution is same. Ony the database name in the above query will be change. Suppose your table &#8216;phpbb_disallow&#8217; in the database crashed, the command will be as below,</p>
<p>REPAIR TABLE phpbb_disallow;</p>
<p>Find the difference between above two REPAIR TABLE commands. The change is only the table name.</p>
<div class="fb_wrap"><a class="fb_link" onclick="fbs_click('http://www.goonclick.com/sql-error-1194-table-phpbb_search_wordmatch-is-marked-as-crashed-and-should-be-repaired','');return false;" href="#">Send to Facebook</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.goonclick.com/sql-error-1194-table-phpbb_search_wordmatch-is-marked-as-crashed-and-should-be-repaired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
