<?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/" version="2.0">

<channel>
	<title>DevArticles.In</title>
	
	<link>http://www.devarticles.in</link>
	<description>Tips, Tricks, References and Bookmarks</description>
	<lastBuildDate>Mon, 14 May 2012 11:47:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/devarticles/Ekof" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="devarticles/ekof" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">devarticles/Ekof</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Hiding page title only on product pages of WP-ecommerce plugin while showing in others</title>
		<link>http://www.devarticles.in/wordpress/hiding-page-title-only-on-product-pages-of-wp-ecommerce-plugin-while-showing-in-others/</link>
		<comments>http://www.devarticles.in/wordpress/hiding-page-title-only-on-product-pages-of-wp-ecommerce-plugin-while-showing-in-others/#comments</comments>
		<pubDate>Sat, 05 May 2012 10:47:28 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ecommerce templates]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[wordpress tips & tricks]]></category>
		<category><![CDATA[wp-ecommerce]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1895</guid>
		<description><![CDATA[Here&#8217;s a small tip on how to hide (not display) page titles of WP-ecommerce product pages while showing normal pages titles as usual. In fact i wanted to not display titles, i.e. 1. Products Page and 2. Product Details page. First i tried get_post_type() to get the post type on page.php template file. Although both [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/cakephp/an-alternate-to-paginator-counter-showing-page-in-cakephp-pagination/' rel='bookmark' title='An alternate to paginator counter showing page in cakephp'>An alternate to paginator counter showing page in cakephp</a> <small>An ordinary yet useful piece of hack to the way...</small></li>
<li><a href='http://www.devarticles.in/wordpress/getting-current-page-url-and-title-for-social-network-sharing-in-wordpress/' rel='bookmark' title='Getting current page url and title for social network sharing in WordPress'>Getting current page url and title for social network sharing in WordPress</a> <small>Today i added a few social network sharing buttons i.e....</small></li>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a small tip on how to hide (not display) page titles of WP-ecommerce product pages while showing normal pages titles as usual. In fact i wanted to not display titles, i.e. 1. Products Page and 2. Product Details page.<span id="more-1895"></span></p>
<p>First i tried get_post_type() to get the post type on page.php template file. Although both of above mentioned pages used the same template.php file to render the products content it would show <strong>page</strong> when i printed <strong>get_post_type()</strong>. Perhaps something to do with the short tag [productspage] which i used in the page post. Anyways combination of two statements (shown below) did the trick for me.</p>
<pre class="brush:php">&lt;?php
if(get_post_type()!="wpsc-product" &amp;&amp; !is_products_page()) { ?&gt;
&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
&lt;?php
}
?&gt;</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fwordpress%2Fhiding-page-title-only-on-product-pages-of-wp-ecommerce-plugin-while-showing-in-others%2F&amp;title=Hiding%20page%20title%20only%20on%20product%20pages%20of%20WP-ecommerce%20plugin%20while%20showing%20in%20others" id="wpa2a_2"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/cakephp/an-alternate-to-paginator-counter-showing-page-in-cakephp-pagination/' rel='bookmark' title='An alternate to paginator counter showing page in cakephp'>An alternate to paginator counter showing page in cakephp</a> <small>An ordinary yet useful piece of hack to the way...</small></li>
<li><a href='http://www.devarticles.in/wordpress/getting-current-page-url-and-title-for-social-network-sharing-in-wordpress/' rel='bookmark' title='Getting current page url and title for social network sharing in WordPress'>Getting current page url and title for social network sharing in WordPress</a> <small>Today i added a few social network sharing buttons i.e....</small></li>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/_-ljbxLgI4lXVj16wu8wwD9nRlQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/_-ljbxLgI4lXVj16wu8wwD9nRlQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_-ljbxLgI4lXVj16wu8wwD9nRlQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/_-ljbxLgI4lXVj16wu8wwD9nRlQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/wordpress/hiding-page-title-only-on-product-pages-of-wp-ecommerce-plugin-while-showing-in-others/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working on ANZ-egate payment method for WP-Commerce</title>
		<link>http://www.devarticles.in/miscelleneous/working-on-anz-egate-payment-method-for-wp-commerce/</link>
		<comments>http://www.devarticles.in/miscelleneous/working-on-anz-egate-payment-method-for-wp-commerce/#comments</comments>
		<pubDate>Fri, 04 May 2012 08:47:22 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Miscelleneous]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1889</guid>
		<description><![CDATA[Working on ANZ-egate payment method for WP-E-commerce plugin at the moment and doing final testing. I hope it will be ready to be shared soon. Thanks. Helpful resources: http://getshopped.org/resources/docs/get-involved/writing-a-new-payment-gateway/ Looking at Paypal Express Checkout and Google Checkout merchant class Current status: Under Testing. Possibly Related posts: An example of Google Checkout Integration in CakePHP NOTE: [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/cakephp/an-example-of-google-checkout-integration-in-cakephp/' rel='bookmark' title='An example of Google Checkout Integration in CakePHP'>An example of Google Checkout Integration in CakePHP</a> <small>NOTE: You will have to make changes into the component...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/creating-rss-feed-dynamically-and-merging-it-with-another-rss-feed/' rel='bookmark' title='Creating rss feed dynamically and merging it with another rss feed'>Creating rss feed dynamically and merging it with another rss feed</a> <small>Recently i generated a rss feed from business listings for...</small></li>
<li><a href='http://www.devarticles.in/php/formatting-date-in-a-php-smarty-template/' rel='bookmark' title='Formatting date in a php smarty template'>Formatting date in a php smarty template</a> <small>The date string can be formatted in a smarty template...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Working on ANZ-egate payment method for WP-E-commerce plugin at the moment and doing final testing. I hope it will be ready to be shared soon. Thanks.</p>
<p>Helpful resources:</p>
<ul>
<li><a href="http://getshopped.org/resources/docs/get-involved/writing-a-new-payment-gateway/">http://getshopped.org/resources/docs/get-involved/writing-a-new-payment-gateway/</a></li>
<li>Looking at Paypal Express Checkout and Google Checkout merchant class</li>
</ul>
<p>Current status: Under Testing.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fmiscelleneous%2Fworking-on-anz-egate-payment-method-for-wp-commerce%2F&amp;title=Working%20on%20ANZ-egate%20payment%20method%20for%20WP-Commerce" id="wpa2a_4"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/cakephp/an-example-of-google-checkout-integration-in-cakephp/' rel='bookmark' title='An example of Google Checkout Integration in CakePHP'>An example of Google Checkout Integration in CakePHP</a> <small>NOTE: You will have to make changes into the component...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/creating-rss-feed-dynamically-and-merging-it-with-another-rss-feed/' rel='bookmark' title='Creating rss feed dynamically and merging it with another rss feed'>Creating rss feed dynamically and merging it with another rss feed</a> <small>Recently i generated a rss feed from business listings for...</small></li>
<li><a href='http://www.devarticles.in/php/formatting-date-in-a-php-smarty-template/' rel='bookmark' title='Formatting date in a php smarty template'>Formatting date in a php smarty template</a> <small>The date string can be formatted in a smarty template...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/r_EqLsNUahgVtAe5dOnFeZEU1Ig/0/da"><img src="http://feedads.g.doubleclick.net/~a/r_EqLsNUahgVtAe5dOnFeZEU1Ig/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/r_EqLsNUahgVtAe5dOnFeZEU1Ig/1/da"><img src="http://feedads.g.doubleclick.net/~a/r_EqLsNUahgVtAe5dOnFeZEU1Ig/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/miscelleneous/working-on-anz-egate-payment-method-for-wp-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broken jEdit FTP plugin fix after upgrading Ubuntu release</title>
		<link>http://www.devarticles.in/linux/broken-jedit-ftp-plugin-fix-after-upgrading-ubuntu-release/</link>
		<comments>http://www.devarticles.in/linux/broken-jedit-ftp-plugin-fix-after-upgrading-ubuntu-release/#comments</comments>
		<pubDate>Fri, 04 May 2012 08:34:09 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[jEdit]]></category>
		<category><![CDATA[jEdit tips & tricks]]></category>
		<category><![CDATA[Linux Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1886</guid>
		<description><![CDATA[Just a note: After upgrading my Ubuntu machine to latest Ubuntu 12.04 LTS version my preferred code editor started to have issues. I opened it as normal and it showed me 3 FTP connection windows at once and after closing these windows when i tried to launch a FTP profile from bookmarks it didn&#8217;t work and kept [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/linux/keyboard-shortcuts-to-switch-among-split-views-or-window-panes-in-jedit/' rel='bookmark' title='Keyboard shortcuts to switch among split views in jEdit'>Keyboard shortcuts to switch among split views in jEdit</a> <small>Here&#8217;s the keyboard shortcuts to navigate or switch among split...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/keyword-shortcuts-to-working-files-or-buffers-in-jedit/' rel='bookmark' title='Keyword shortcuts to working files or buffers in jEdit'>Keyword shortcuts to working files or buffers in jEdit</a> <small>Hint: By buffers in jEdit it means working files (area),...</small></li>
<li><a href='http://www.devarticles.in/linux/how-to-install-adobe-air-application-installer-in-ubuntu/' rel='bookmark' title='How to install Adobe AIR application installer in Ubuntu'>How to install Adobe AIR application installer in Ubuntu</a> <small>I just installed Adobe AIR in my Ubuntu system and...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just a note:</p>
<p>After upgrading my Ubuntu machine to latest <em>Ubuntu 12.04</em> LTS version my preferred code editor started to have issues. I opened it as normal and it showed me 3 FTP connection windows at once and after closing these windows when i tried to launch a FTP profile from bookmarks it didn&#8217;t work and kept saying the &#8220;Already running command error&#8221;. I thought i needed to re-install the jEdit (the upgrade actually re-stalled the latest release of jEdit while upgrading) and tried a re-install but it did not fix anything. Then i removed the FTP plugin of jEdit and re-installed it and hurray, it works!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Flinux%2Fbroken-jedit-ftp-plugin-fix-after-upgrading-ubuntu-release%2F&amp;title=Broken%20jEdit%20FTP%20plugin%20fix%20after%20upgrading%20Ubuntu%20release" id="wpa2a_6"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/linux/keyboard-shortcuts-to-switch-among-split-views-or-window-panes-in-jedit/' rel='bookmark' title='Keyboard shortcuts to switch among split views in jEdit'>Keyboard shortcuts to switch among split views in jEdit</a> <small>Here&#8217;s the keyboard shortcuts to navigate or switch among split...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/keyword-shortcuts-to-working-files-or-buffers-in-jedit/' rel='bookmark' title='Keyword shortcuts to working files or buffers in jEdit'>Keyword shortcuts to working files or buffers in jEdit</a> <small>Hint: By buffers in jEdit it means working files (area),...</small></li>
<li><a href='http://www.devarticles.in/linux/how-to-install-adobe-air-application-installer-in-ubuntu/' rel='bookmark' title='How to install Adobe AIR application installer in Ubuntu'>How to install Adobe AIR application installer in Ubuntu</a> <small>I just installed Adobe AIR in my Ubuntu system and...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/18tH3si5pm_mYKRVZfsiRgd1NP4/0/da"><img src="http://feedads.g.doubleclick.net/~a/18tH3si5pm_mYKRVZfsiRgd1NP4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/18tH3si5pm_mYKRVZfsiRgd1NP4/1/da"><img src="http://feedads.g.doubleclick.net/~a/18tH3si5pm_mYKRVZfsiRgd1NP4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/linux/broken-jedit-ftp-plugin-fix-after-upgrading-ubuntu-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing WordPress asking FTP connection in localhost running on XAMPP in Ubuntu</title>
		<link>http://www.devarticles.in/wordpress/fixing-wordpress-asking-ftp-connection-in-localhost-running-on-xampp-in-ubuntu/</link>
		<comments>http://www.devarticles.in/wordpress/fixing-wordpress-asking-ftp-connection-in-localhost-running-on-xampp-in-ubuntu/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 12:17:26 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress tips & tricks]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1868</guid>
		<description><![CDATA[Recently i had this issue. I would go to wordpress admin plugins page and try to delete a plugin. It would ask me for FTP connection details. I tried different combinations but it didn&#8217;t work. In fact i don&#8217;t know anything about FTP connection details on my local machine yet but i was able to [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
<li><a href='http://www.devarticles.in/wordpress/how-to-remove-html-margin-top-28px-important-from-wordpress-header/' rel='bookmark' title='How to remove html { margin-top: 28px !important; } from wordpress header'>How to remove html { margin-top: 28px !important; } from wordpress header</a> <small>To remove html { margin-top: 28px !important; } from wordpress...</small></li>
<li><a href='http://www.devarticles.in/windows/creating-new-virtual-host-in-windows/' rel='bookmark' title='Creating new virtual host in Windows'>Creating new virtual host in Windows</a> <small>Step by step guide to create virtual host on Windows...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Recently i had this issue. I would go to wordpress admin plugins page and try to delete a plugin. It would ask me for FTP connection details. I tried different combinations but it didn&#8217;t work. In fact i don&#8217;t know anything about FTP connection details on my local machine yet but i was able to fix this one with the help of some kind guys over the internet.<span id="more-1868"></span></p>
<p>This issue popped up due to the difference between user and group names of users owning wordpress files and user browsing the webpage over localhost. To check the owner and group name of files i would do  <code>ls -s</code> which would list username and group of file owners. In my case it was arvind:arvind. Here&#8217;s an example row below:</p>
<p><code style="color:white;background:black;height:15px;">-rwxrwxrwx 1 <span style="color:yellow">arvind arvind</span>  3266 2011-04-17 14:05 xmlrpc.php</code></p>
<p>Here&#8217;s how i fixed it. I did <code>gedit /opt/lampp/etc/httpd.conf</code> in the console to open httpd.conf file in gedit. Next, i looked in this file for:</p>
<pre>User nobody
Group nogroup</pre>
<p>and changed it to:</p>
<pre>User arvind
Group arvind</pre>
<p>and saved the file.</p>
<p>After restarting xampp (by running /opt/lampp/lampp restart) i visited my wordpress admin section once again and tried to delete a plugin. It worked straight way.</p>
<p>I hope it helps someone.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fwordpress%2Ffixing-wordpress-asking-ftp-connection-in-localhost-running-on-xampp-in-ubuntu%2F&amp;title=Fixing%20WordPress%20asking%20FTP%20connection%20in%20localhost%20running%20on%20XAMPP%20in%20Ubuntu" id="wpa2a_8"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
<li><a href='http://www.devarticles.in/wordpress/how-to-remove-html-margin-top-28px-important-from-wordpress-header/' rel='bookmark' title='How to remove html { margin-top: 28px !important; } from wordpress header'>How to remove html { margin-top: 28px !important; } from wordpress header</a> <small>To remove html { margin-top: 28px !important; } from wordpress...</small></li>
<li><a href='http://www.devarticles.in/windows/creating-new-virtual-host-in-windows/' rel='bookmark' title='Creating new virtual host in Windows'>Creating new virtual host in Windows</a> <small>Step by step guide to create virtual host on Windows...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/CNp-FkDK_16VSYGUuGetflx-4B0/0/da"><img src="http://feedads.g.doubleclick.net/~a/CNp-FkDK_16VSYGUuGetflx-4B0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CNp-FkDK_16VSYGUuGetflx-4B0/1/da"><img src="http://feedads.g.doubleclick.net/~a/CNp-FkDK_16VSYGUuGetflx-4B0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/wordpress/fixing-wordpress-asking-ftp-connection-in-localhost-running-on-xampp-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving close, maximize, minimize icons to top right of a window in Ubuntu 11.10</title>
		<link>http://www.devarticles.in/linux/moving-close-maximize-minimize-icons-to-top-right-of-a-window-in-ubuntu-11-10/</link>
		<comments>http://www.devarticles.in/linux/moving-close-maximize-minimize-icons-to-top-right-of-a-window-in-ubuntu-11-10/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 14:26:37 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[maximize]]></category>
		<category><![CDATA[minimize]]></category>
		<category><![CDATA[top right]]></category>
		<category><![CDATA[Ubuntu 11.10]]></category>
		<category><![CDATA[Ubuntu Tips & Tricks]]></category>
		<category><![CDATA[window buttons]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1863</guid>
		<description><![CDATA[Just a tip on how to move close, maximize and minimize icons to top right of a window in Ubuntu 11.10. Press Alt + F2 to open Dashboard Home (you may need to press Fn or similar keys in some laptops ; it does in mine of Dell) Enter gconf-editor in Search area and press [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/windows/windows-keyboard-shortcuts-hot-keys/' rel='bookmark' title='Windows keyboard shortcuts (hot keys)'>Windows keyboard shortcuts (hot keys)</a> <small>This post lists keyboard shortcuts that you can use with...</small></li>
<li><a href='http://www.devarticles.in/linux/creating-new-virtual-hosts-in-ubuntulinux/' rel='bookmark' title='Creating new virtual hosts in Ubuntu/Linux'>Creating new virtual hosts in Ubuntu/Linux</a> <small>In KUbuntu i wanted to make virtual host localhost.example.com working...</small></li>
<li><a href='http://www.devarticles.in/windows/show-hidden-files-and-folders-not-working-in-windows-xp/' rel='bookmark' title='Show hidden files and folders not working in window xp?'>Show hidden files and folders not working in window xp?</a> <small>I tried to enable &#8220;show hidden files and folder&#8221; option...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just a tip on how to move <strong>close</strong>, <strong>maximize</strong> and <strong>minimize</strong> icons to top right of a window in Ubuntu 11.10.<span id="more-1863"></span></p>
<ul>
<li>Press <em>Alt + F2</em> to open Dashboard Home (you may need to press Fn or similar keys in some laptops ; it does in mine of Dell)</li>
<li>Enter <em>gconf-editor</em> in Search area and press enter. It should open the <em>Configuration Editor</em> window.</li>
<li>Go and open <em>apps > metacity > general</em>.</li>
<li>Double click <em>button_layout</em> to edit its Value</li>
<li>Enter <em>:minimize,maximize,close</em> in the Value field and save with Ok.</li>
</ul>
<p>System windows will have those buttons to the top right of them now.</p>
<p><em>(Courtesy of some internet fellows)</em></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Flinux%2Fmoving-close-maximize-minimize-icons-to-top-right-of-a-window-in-ubuntu-11-10%2F&amp;title=Moving%20close%2C%20maximize%2C%20minimize%20icons%20to%20top%20right%20of%20a%20window%20in%20Ubuntu%2011.10" id="wpa2a_10"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/windows/windows-keyboard-shortcuts-hot-keys/' rel='bookmark' title='Windows keyboard shortcuts (hot keys)'>Windows keyboard shortcuts (hot keys)</a> <small>This post lists keyboard shortcuts that you can use with...</small></li>
<li><a href='http://www.devarticles.in/linux/creating-new-virtual-hosts-in-ubuntulinux/' rel='bookmark' title='Creating new virtual hosts in Ubuntu/Linux'>Creating new virtual hosts in Ubuntu/Linux</a> <small>In KUbuntu i wanted to make virtual host localhost.example.com working...</small></li>
<li><a href='http://www.devarticles.in/windows/show-hidden-files-and-folders-not-working-in-windows-xp/' rel='bookmark' title='Show hidden files and folders not working in window xp?'>Show hidden files and folders not working in window xp?</a> <small>I tried to enable &#8220;show hidden files and folder&#8221; option...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/9gOd30huGXTkqh_fM3p9bs_M1Ws/0/da"><img src="http://feedads.g.doubleclick.net/~a/9gOd30huGXTkqh_fM3p9bs_M1Ws/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9gOd30huGXTkqh_fM3p9bs_M1Ws/1/da"><img src="http://feedads.g.doubleclick.net/~a/9gOd30huGXTkqh_fM3p9bs_M1Ws/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/linux/moving-close-maximize-minimize-icons-to-top-right-of-a-window-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tip on saving doc or docx files in LibreOffice</title>
		<link>http://www.devarticles.in/linux/a-tip-on-saving-doc-or-docx-files-in-libreoffice/</link>
		<comments>http://www.devarticles.in/linux/a-tip-on-saving-doc-or-docx-files-in-libreoffice/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 14:14:30 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[LibreOffice]]></category>
		<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[saving as doc file in libreoffice]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1860</guid>
		<description><![CDATA[What i did i created a new .doc file through &#8220;Create New Document&#8221; that generally appears listed on pop up menu when one right clicks inside a folder area in Ubuntu. The file was created ok. Then i opened it in LibreOffice Writter, created a few lines and &#8220;bulletted&#8221; paragraphs with formattings, saved and closed [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/miscelleneous/fixing-empty-characters-with-grayed-background-in-libreoffice-document-content/' rel='bookmark' title='Fixing &#8220;empty characters with grayed background&#8221; in LibreOffice document content'>Fixing &#8220;empty characters with grayed background&#8221; in LibreOffice document content</a> <small>I copied one of my email&#8217;s content into a LibreOffice...</small></li>
<li><a href='http://www.devarticles.in/windows/a-possible-fix-for-file-saving-permission-issues-on-windows/' rel='bookmark' title='A possible fix for file saving permission issues on Windows'>A possible fix for file saving permission issues on Windows</a> <small>You might face permission problems while editing and saving some...</small></li>
<li><a href='http://www.devarticles.in/linux/how-to-open-multiple-instances-of-gedit/' rel='bookmark' title='How to open multiple instances of gedit'>How to open multiple instances of gedit</a> <small>In general, gedit opens new files in the same window...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What i did i created a new .doc file through &#8220;Create New Document&#8221; that generally appears listed on pop up menu when one right clicks inside a folder area in Ubuntu. The file was created ok. Then i opened it in LibreOffice Writter, created a few lines and &#8220;bulletted&#8221; paragraphs with formattings, saved and closed the file.<span id="more-1860"></span> Next time when i opened it, all formatting was gone! It was little bit disappointing as i had created a good amount of formatting in it which was lost. Anyways i found that if i create a file in LibreOffice Writter in Ubuntu this way it is still treated as a simple text file and not a .doc file. What all i had to do was to do a &#8220;Save As&#8221; from &#8220;File&#8221; menu in LibreOffice and select &#8220;Microsoft Word 97/2000/xp/2003(.doc)&#8221; for &#8220;FileType&#8221; option in &#8220;Save As&#8221; screen. Just a tip for someone new in Ubuntu like me.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Flinux%2Fa-tip-on-saving-doc-or-docx-files-in-libreoffice%2F&amp;title=A%20tip%20on%20saving%20doc%20or%20docx%20files%20in%20LibreOffice" id="wpa2a_12"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/miscelleneous/fixing-empty-characters-with-grayed-background-in-libreoffice-document-content/' rel='bookmark' title='Fixing &#8220;empty characters with grayed background&#8221; in LibreOffice document content'>Fixing &#8220;empty characters with grayed background&#8221; in LibreOffice document content</a> <small>I copied one of my email&#8217;s content into a LibreOffice...</small></li>
<li><a href='http://www.devarticles.in/windows/a-possible-fix-for-file-saving-permission-issues-on-windows/' rel='bookmark' title='A possible fix for file saving permission issues on Windows'>A possible fix for file saving permission issues on Windows</a> <small>You might face permission problems while editing and saving some...</small></li>
<li><a href='http://www.devarticles.in/linux/how-to-open-multiple-instances-of-gedit/' rel='bookmark' title='How to open multiple instances of gedit'>How to open multiple instances of gedit</a> <small>In general, gedit opens new files in the same window...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/STj_ZZil9tVSAuwRvNuNkMR0j2Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/STj_ZZil9tVSAuwRvNuNkMR0j2Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/STj_ZZil9tVSAuwRvNuNkMR0j2Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/STj_ZZil9tVSAuwRvNuNkMR0j2Y/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/linux/a-tip-on-saving-doc-or-docx-files-in-libreoffice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.</title>
		<link>http://www.devarticles.in/wordpress/plugins/a-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc/</link>
		<comments>http://www.devarticles.in/wordpress/plugins/a-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 15:31:02 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1855</guid>
		<description><![CDATA[Description: This plugin provides a way to delete duplicate users by ID, user_login or user_email. An user-base cleaning script! In a case, thousands of users are entered by tempring with the basic wp_user table structure.. where ID was converted to just int field with no PRIMARY KEY or INDEX associated, date field (user_registered) was converted [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/mysql/how-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id/' rel='bookmark' title='How to delete duplicate MySQL records with duplicate field value (as ID)'>How to delete duplicate MySQL records with duplicate field value (as ID)</a> <small>For some reason i had duplicate entries in my WP...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/svn-checkout-wordpress-plugin-files/' rel='bookmark' title='SVN checkout wordpress plugin files'>SVN checkout wordpress plugin files</a> <small>Today i was looking for an effective word press plugin...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/adding-explorer-file-browser-plugin-to-notepad-plus-plus/' rel='bookmark' title='Adding (Explorer &#8211; file browser) plugin to Notepad++'>Adding (Explorer &#8211; file browser) plugin to Notepad++</a> <small>Once i decided to give Notepad++ a serious try as...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Description: This plugin provides a way to delete duplicate users by ID, user_login or user_email.</p>
<p>An user-base cleaning script! In a case, thousands of users are entered by tempring with the basic wp_user table structure.. where ID was converted to just int field with no PRIMARY KEY or INDEX associated, date field (user_registered) was converted to decimal and user_email field was changed to accept only 20 characters (varchar 20) .. etc.. and thus thousands of records were entered through a script with duplicate email addresses, user_logins and even with duplicate IDs!</p>
<p>Note: At the moment, this script takes care of ID, user_login and user_email fields only. One can easily extend it to check other fields as well.</p>
<p>You can download this plugin by visiting the plugin hosted page at wordpress.org here, <a href="http://wordpress.org/extend/plugins/duplicate-user/" title="Wordpress plugin to delete duplicate users" target="_blank">http://wordpress.org/extend/plugins/duplicate-user/</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fwordpress%2Fplugins%2Fa-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc%2F&amp;title=A%20WordPress%20plugin%20to%20delete%20duplicate%20users%20by%20ID%2C%20user_login%20or%20user_email%20etc." id="wpa2a_14"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/mysql/how-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id/' rel='bookmark' title='How to delete duplicate MySQL records with duplicate field value (as ID)'>How to delete duplicate MySQL records with duplicate field value (as ID)</a> <small>For some reason i had duplicate entries in my WP...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/svn-checkout-wordpress-plugin-files/' rel='bookmark' title='SVN checkout wordpress plugin files'>SVN checkout wordpress plugin files</a> <small>Today i was looking for an effective word press plugin...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/adding-explorer-file-browser-plugin-to-notepad-plus-plus/' rel='bookmark' title='Adding (Explorer &#8211; file browser) plugin to Notepad++'>Adding (Explorer &#8211; file browser) plugin to Notepad++</a> <small>Once i decided to give Notepad++ a serious try as...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/KGGa37Fc-woEnJMsAHYyrZM4iZs/0/da"><img src="http://feedads.g.doubleclick.net/~a/KGGa37Fc-woEnJMsAHYyrZM4iZs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KGGa37Fc-woEnJMsAHYyrZM4iZs/1/da"><img src="http://feedads.g.doubleclick.net/~a/KGGa37Fc-woEnJMsAHYyrZM4iZs/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/wordpress/plugins/a-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete duplicate MySQL records with duplicate field value (as ID)</title>
		<link>http://www.devarticles.in/mysql/how-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id/</link>
		<comments>http://www.devarticles.in/mysql/how-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 10:40:42 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[delete duplicate IDs]]></category>
		<category><![CDATA[delete duplicated records]]></category>
		<category><![CDATA[mysql tips & tricks]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1841</guid>
		<description><![CDATA[For some reason i had duplicate entries in my WP database. The ID field in wp_users table was tempered with and was changed to Non Auto-Increment to insert records on the will. I deleted all ID=null records manually and then tried to change it to AUTO INCREMENT but it came up with Duplicate Entry error [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/wordpress/plugins/a-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc/' rel='bookmark' title='A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.'>A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.</a> <small>Description: This plugin provides a way to delete duplicate users...</small></li>
<li><a href='http://www.devarticles.in/cakephp/sql-dump-file-for-cakedc-comments-plugin-for-cakephp/' rel='bookmark' title='SQL dump file for CakeDC comments plugin for CakePHP'>SQL dump file for CakeDC comments plugin for CakePHP</a> <small>If they (CakeDC people) don&#8217;t have complaint of any kind...</small></li>
<li><a href='http://www.devarticles.in/mysql/a-few-notes-on-joining-a-mysql-table-to-itself-to-get-unique-combination-of-field-data/' rel='bookmark' title='A few notes on joining a MySQL table to itself to get unique combination of field data'>A few notes on joining a MySQL table to itself to get unique combination of field data</a> <small>Just a few notes on joining a MySQL table to...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For some reason i had duplicate entries in my WP database. The ID field in wp_users table was tempered with and was changed to Non Auto-Increment to insert records on the will. I deleted all ID=null records manually and then tried to change it to AUTO INCREMENT but it came up with Duplicate Entry error and then i found that it had duplicated/multiple entries with same IDs as well. Here&#8217;s the remedy i had to apply in order to delete those duplicate entries and change  ID field to AUTO INCREMENT once again.<span id="more-1841"></span></p>
<p>(Note: Backup you wp_users table to avoid any mis-happening.)</p>
<p><code>CREATE TABLE<br />
bad_temp(`ID` bigint(20) unsigned NOT NULL,<br />
  `user_login` varchar(60) NOT NULL DEFAULT '',<br />
  `user_pass` varchar(64) NOT NULL DEFAULT '',<br />
  `user_nicename` varchar(50) NOT NULL DEFAULT '',<br />
  `user_email` varchar(100) NOT NULL DEFAULT '',<br />
  `user_url` varchar(100) NOT NULL DEFAULT '',<br />
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',<br />
  `user_activation_key` varchar(60) NOT NULL DEFAULT '',<br />
  `user_status` int(11) NOT NULL DEFAULT '0',<br />
  `display_name` varchar(250) NOT NULL DEFAULT '');</p>
<p>INSERT INTO bad_temp(`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) SELECT DISTINCT `ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name` FROM `wp_users`;</p>
<p>DELETE FROM `wp_users`;</p>
<p>INSERT INTO `wp_users`(`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) SELECT `ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name` FROM bad_temp;</p>
<p>DROP TABLE bad_temp;<br />
</code></p>
<p>I hope that helps someone.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fmysql%2Fhow-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id%2F&amp;title=How%20to%20delete%20duplicate%20MySQL%20records%20with%20duplicate%20field%20value%20%28as%20ID%29" id="wpa2a_16"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/wordpress/plugins/a-wordpress-plugin-to-delete-duplicate-users-by-id-user_login-or-user_email-etc/' rel='bookmark' title='A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.'>A WordPress plugin to delete duplicate users by ID, user_login or user_email etc.</a> <small>Description: This plugin provides a way to delete duplicate users...</small></li>
<li><a href='http://www.devarticles.in/cakephp/sql-dump-file-for-cakedc-comments-plugin-for-cakephp/' rel='bookmark' title='SQL dump file for CakeDC comments plugin for CakePHP'>SQL dump file for CakeDC comments plugin for CakePHP</a> <small>If they (CakeDC people) don&#8217;t have complaint of any kind...</small></li>
<li><a href='http://www.devarticles.in/mysql/a-few-notes-on-joining-a-mysql-table-to-itself-to-get-unique-combination-of-field-data/' rel='bookmark' title='A few notes on joining a MySQL table to itself to get unique combination of field data'>A few notes on joining a MySQL table to itself to get unique combination of field data</a> <small>Just a few notes on joining a MySQL table to...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/dGnLPcH2w9SiEg_odRC98ZwuQ8w/0/da"><img src="http://feedads.g.doubleclick.net/~a/dGnLPcH2w9SiEg_odRC98ZwuQ8w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dGnLPcH2w9SiEg_odRC98ZwuQ8w/1/da"><img src="http://feedads.g.doubleclick.net/~a/dGnLPcH2w9SiEg_odRC98ZwuQ8w/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/mysql/how-to-delete-duplicate-mysql-records-with-duplicate-field-value-as-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix to Windows 7 Error “No such interface supported”</title>
		<link>http://www.devarticles.in/windows/fix-to-windows-7-error-no-such-interface-supported/</link>
		<comments>http://www.devarticles.in/windows/fix-to-windows-7-error-no-such-interface-supported/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 06:40:26 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[No such interface supported]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1837</guid>
		<description><![CDATA[Yesterday i tried to install Internet Explorer 7 standalone version which eventually failed and didn&#8217;t work at all. Additionally it caused my Windows 7 Ultimate to produce &#8220;No such interface supported&#8221; and similar nasty errors when i clicked on main taskbar icons and desktop icons like My Computer. Also Control Panel and other administrator screen [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/windows/apachewamp-slow-on-windows-7/' rel='bookmark' title='Apache/WAMP slow on Windows 7'>Apache/WAMP slow on Windows 7</a> <small>After i had installed WAMP on Windows 7 the loading...</small></li>
<li><a href='http://www.devarticles.in/windows/how-to-create-a-keyboard-shortcut-to-open-an-application-program-in-windows-7/' rel='bookmark' title='How to create a keyboard shortcut to open an application / program in Windows 7'>How to create a keyboard shortcut to open an application / program in Windows 7</a> <small>Following step by step instructions to create a keyboard shortcut...</small></li>
<li><a href='http://www.devarticles.in/windows/tips-on-fixing-ie8-developer-tools-not-working-issue-in-windows/' rel='bookmark' title='Tips on fixing &#8220;IE8 Developer Tools not working&#8221; issue in Windows'>Tips on fixing &#8220;IE8 Developer Tools not working&#8221; issue in Windows</a> <small>If you discovered that the &#8220;Developer Tool&#8221; in your IE8...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yesterday i tried to install Internet Explorer 7 standalone version which eventually failed and didn&#8217;t work at all. Additionally it caused my Windows 7 Ultimate to produce &#8220;No such interface supported&#8221; and similar nasty errors when i clicked on main taskbar icons and desktop icons like My Computer.<span id="more-1837"></span> Also Control Panel and other administrator screen broke and refuse to show anything in them. I was worried a lot when i saw that there was no restore point earlier to just today morning. I thought i had to re-install windows or at least had to run Windows repair utility but <a href="http://forums.techarena.in/operating-systems/1277700.htm">this form post</a> saved my day. What i had to do was to run</p>
<p><code>RegSvr32 actxprxy.dll</code></p>
<p>in the command prompt and everything was working just fine once again. Thanks to nice fellow Wynn for suggesting the work around in <a href="http://forums.techarena.in/operating-systems/1277700.htm">this form post</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fwindows%2Ffix-to-windows-7-error-no-such-interface-supported%2F&amp;title=Fix%20to%20Windows%207%20Error%20%E2%80%9CNo%20such%20interface%20supported%E2%80%9D" id="wpa2a_18"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/windows/apachewamp-slow-on-windows-7/' rel='bookmark' title='Apache/WAMP slow on Windows 7'>Apache/WAMP slow on Windows 7</a> <small>After i had installed WAMP on Windows 7 the loading...</small></li>
<li><a href='http://www.devarticles.in/windows/how-to-create-a-keyboard-shortcut-to-open-an-application-program-in-windows-7/' rel='bookmark' title='How to create a keyboard shortcut to open an application / program in Windows 7'>How to create a keyboard shortcut to open an application / program in Windows 7</a> <small>Following step by step instructions to create a keyboard shortcut...</small></li>
<li><a href='http://www.devarticles.in/windows/tips-on-fixing-ie8-developer-tools-not-working-issue-in-windows/' rel='bookmark' title='Tips on fixing &#8220;IE8 Developer Tools not working&#8221; issue in Windows'>Tips on fixing &#8220;IE8 Developer Tools not working&#8221; issue in Windows</a> <small>If you discovered that the &#8220;Developer Tool&#8221; in your IE8...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/1_yVY_ZyyA74gK7i9Uo8AXwioM0/0/da"><img src="http://feedads.g.doubleclick.net/~a/1_yVY_ZyyA74gK7i9Uo8AXwioM0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1_yVY_ZyyA74gK7i9Uo8AXwioM0/1/da"><img src="http://feedads.g.doubleclick.net/~a/1_yVY_ZyyA74gK7i9Uo8AXwioM0/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/windows/fix-to-windows-7-error-no-such-interface-supported/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to edit or download .htaccess from cpanel file manager where it is hidden</title>
		<link>http://www.devarticles.in/miscelleneous/how-to-edit-or-download-htaccess-from-cpanel-file-manager-where-it-is-hidden/</link>
		<comments>http://www.devarticles.in/miscelleneous/how-to-edit-or-download-htaccess-from-cpanel-file-manager-where-it-is-hidden/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 07:42:47 +0000</pubDate>
		<dc:creator>Arvind K.</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Miscelleneous]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[hidden]]></category>

		<guid isPermaLink="false">http://www.devarticles.in/?p=1830</guid>
		<description><![CDATA[In my cpanel (dont know the version number) it didn&#8217;t show .htaccess file and hid it by default. If it happens and as a lazy person like me you dont want to do ftp like things to get the htaccess appeared on you,  just click on a visible file and open it in cpanel editor. [...]
Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/miscelleneous/resume-download-of-part-extension-file-in-firefox/' rel='bookmark' title='Resume download of PART extension file in Firefox'>Resume download of PART extension file in Firefox</a> <small>In some cases, when a large file had been downloaded...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/wordpress-custom-permalinks-and-404-error/' rel='bookmark' title='WordPress custom permalinks and 404 error'>WordPress custom permalinks and 404 error</a> <small>Today morning i found that urls to postings of this...</small></li>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In my cpanel (dont know the version number) it didn&#8217;t show .htaccess file and hid it by default. If it happens and as a lazy person like me you dont want to do ftp like things to get the htaccess appeared on you,  just click on a visible file and open it in cpanel editor. It will give you the url something like below.<span id="more-1830"></span></p>
<p>http://www.mysitedomain.com:2082/frontend/x3/filemanager/editit.html?file=index.php&#038;fileop=&#038;dir=%2Fhome%2Flose5%2Fpublic_html&#038;dirop=&#038;charset=&#038;file_charset=utf-8&#038;baseurl=&#038;basedir=</p>
<p>Just replace the <strong>index.php</strong> in above url with <strong>.htaccess</strong> and press enter. <strong>.htaccess</strong> code should be there in your file editor which you can use to create new file from it or sort of things..</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.devarticles.in%2Fmiscelleneous%2Fhow-to-edit-or-download-htaccess-from-cpanel-file-manager-where-it-is-hidden%2F&amp;title=How%20to%20edit%20or%20download%20.htaccess%20from%20cpanel%20file%20manager%20where%20it%20is%20hidden" id="wpa2a_20"><img src="http://www.devarticles.in/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>Possibly Related posts:<ol>
<li><a href='http://www.devarticles.in/miscelleneous/resume-download-of-part-extension-file-in-firefox/' rel='bookmark' title='Resume download of PART extension file in Firefox'>Resume download of PART extension file in Firefox</a> <small>In some cases, when a large file had been downloaded...</small></li>
<li><a href='http://www.devarticles.in/miscelleneous/wordpress-custom-permalinks-and-404-error/' rel='bookmark' title='WordPress custom permalinks and 404 error'>WordPress custom permalinks and 404 error</a> <small>Today morning i found that urls to postings of this...</small></li>
<li><a href='http://www.devarticles.in/wordpress/template-drop-down-list-missing-in-edit-page-in-wordpress/' rel='bookmark' title='Template drop down list missing in edit page in wordpress'>Template drop down list missing in edit page in wordpress</a> <small>Last night i installed a new theme to this blog...</small></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/3jrNb16g6xGv3v12C1aqFV9rVa4/0/da"><img src="http://feedads.g.doubleclick.net/~a/3jrNb16g6xGv3v12C1aqFV9rVa4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3jrNb16g6xGv3v12C1aqFV9rVa4/1/da"><img src="http://feedads.g.doubleclick.net/~a/3jrNb16g6xGv3v12C1aqFV9rVa4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.devarticles.in/miscelleneous/how-to-edit-or-download-htaccess-from-cpanel-file-manager-where-it-is-hidden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

