<?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>NeoEGM.com &#187; Tech</title>
	<atom:link href="http://www.neoegm.com/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neoegm.com</link>
	<description>Knowledge is inside</description>
	<lastBuildDate>Thu, 22 Dec 2011 23:37:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Keil uVision Plugin: Matrix Keyboard</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/#comments</comments>
		<pubDate>Mon, 03 May 2010 04:53:36 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[8051]]></category>
		<category><![CDATA[AGSI]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[Matrix Keyboard]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[uVision]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1692</guid>
		<description><![CDATA[Update (2010-05-19): schematic updated to reflect real circuit. Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one. Internally, it responds to the following schematic: It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application: Usage First of [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/' rel='bookmark' title='How to install a Keil uVision peripheral plugin'>How to install a Keil uVision peripheral plugin</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><strong>Update (2010-05-19):</strong> schematic updated to reflect real circuit.</p>
<p>Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard.png" alt="" title="MatrixKeyboard_Keyboard" width="184" height="255" class="aligncenter size-full wp-image-1694" /></p>
<p><span id="more-1692"></span></p>
<p>Internally, it responds to the following schematic:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic.png" rel="lightbox[1692]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic-180x300.png" alt="" title="MatrixKeyboard_Schematic" width="180" height="300" class="aligncenter size-medium wp-image-1693" /></a></p>
<p>It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application:</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></p>
<h3>Usage</h3>
<p>First of all, you must install it on the Keil uVision and configure your project in order to use it while simulating. The plugin name, for the configuration, is <strong>MatrixKeyboard</strong>. You can follow <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/">this step by step guide</a>.</p>
<p>Then, you must copy the <strong>MatrixKeyboard.ini</strong> file to your project and modify it to satisfy your needs. For example, given the following pin definitions:</p>
<pre class="brush: cpp; title: ; notranslate">
sbit Keyboard_Scan_0 = P1^1;
sbit Keyboard_Scan_1 = P1^2;
sbit Keyboard_Scan_2 = P1^3;
sbit Keyboard_Scan_3 = P1^4;

sbit Keyboard_Return_0 = P1^5;
sbit Keyboard_Return_1 = P1^6;
sbit Keyboard_Return_2 = P1^7;
</pre>
<p>You could configure the INI file like this:</p>
<pre class="brush: plain; title: ; notranslate">
[Settings]

; All port addresses in hexadecimal
; Bits: 0-7

Scan0_Port_Address = 90
Scan0_Port_Bit = 1

Scan1_Port_Address = 90
Scan1_Port_Bit = 2

Scan2_Port_Address = 90
Scan2_Port_Bit = 3

Scan3_Port_Address = 90
Scan3_Port_Bit = 4

Return0_Port_Address = 90
Return0_Port_Bit = 5

Return1_Port_Address = 90
Return1_Port_Bit = 6

Return2_Port_Address = 90
Return2_Port_Bit = 7
</pre>
<p>If you don&#8217;t remember the port addresses, you can always check the header file corresponding to you microcontroller and look for a line like this:</p>
<pre class="brush: cpp; title: ; notranslate">
sfr P1 = 0x90;
</pre>
<p>Well, that&#8217;s all. You can now run your project in simulation mode and open the plugin via Peripherals->Matrix Keyboard.</p>
<p><a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">MatrixKeyboard is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p>Finally, the downloads:</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1.zip">MatrixKeyboard Plugin v1.1</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1_Source.zip">Download v1.1 Source Code</a></p>
</div>
<p>The source code proyect is done in Visual Studio 2008, but it can be easily adapted for other versions.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="matrix keyboard">matrix keyboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="teclado matricial">teclado matricial</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="KEIL UVISION">KEIL UVISION</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="keil plugins">keil plugins</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="diapasón de la guitarra">diapasón de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="matricial keyboard">matricial keyboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="uvision plugin">uvision plugin</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="notas del diapason">notas del diapason</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="guitar notes on the fret">guitar notes on the fret</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="windows 95 games">windows 95 games</a></li>
</ul>
<div class="shr-publisher-1692"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/' rel='bookmark' title='How to install a Keil uVision peripheral plugin'>How to install a Keil uVision peripheral plugin</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install a Keil uVision peripheral plugin</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:55:40 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Step by Step]]></category>
		<category><![CDATA[uVision]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1704</guid>
		<description><![CDATA[The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps. 1- First, copy the files corresponding to the C51 directory of the Keil&#8217;s installation. Assuming you have installed the application in C:\Keil, then the destination directory would be C:\Keil\C51. Commonly, you just copy [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/' rel='bookmark' title='Keil uVision Plugin: Matrix Keyboard'>Keil uVision Plugin: Matrix Keyboard</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></a></p>
<p>The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps.</p>
<p><span id="more-1704"></span></p>
<p>1- First, copy the files corresponding to the <strong>C51</strong> directory of the Keil&#8217;s installation.</p>
<p>Assuming you have installed the application in C:\Keil, then the destination directory would be <strong>C:\Keil\C51</strong>.</p>
<p>Commonly, you just copy there the plugin DLL.</p>
<p>2- Copy the additional files to be used to the <strong>UV3</strong> or <strong>UV4</strong> directory, depending on whether you are using uVision 3 o uVision 4.</p>
<p>These use to be additional files used by the plugin. This should have been indicated by the plugin developer for each particular plugin.</p>
<p>3- Copy the needed files to each project directory. These are commonly project specific configuration files, like the ones specifying the used pins.</p>
<p>4- Configure the project in order to use the plugin.</p>
<p>In uVision, go to Project->Options for Target, and then to the Debug tab.</p>
<p>There, we edit the field &#8220;Parameter&#8221; which is next to &#8220;Dialog DLL&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug.png" rel="lightbox[1704]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug-300x225.png" alt="" title="Keil_Config_Debug" width="300" height="225" class="aligncenter size-medium wp-image-1707" /></a></p>
<p>We add the following to the back of the text string:</p>
<p>-d<strong>PluginName</strong></p>
<p>For example, in the case we wanted to use the <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/">Matrix Keyboard plugin</a>, we would write, just as in the image:</p>
<p>-d<strong>MatrixKeyboard</strong></p>
<p>That&#8217;s all, we&#8217;re ready to start the debugging mode and run our project.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision 4">keil uvision 4</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil plugin">keil plugin</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil peripheral">keil peripheral</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="peripheral plug in">peripheral plug in</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="neoegm com/tech/hardware/8051/keil-plugins/">neoegm com/tech/hardware/8051/keil-plugins/</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil u vision">keil u vision</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keyboard addon for keil">keyboard addon for keil</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="u vision 4 kiel input output peripherals">u vision 4 kiel input output peripherals</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision peripheral">keil uvision peripheral</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="how do i plug in peripheral">how do i plug in peripheral</a></li>
</ul>
<div class="shr-publisher-1704"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/' rel='bookmark' title='Keil uVision Plugin: Matrix Keyboard'>Keil uVision Plugin: Matrix Keyboard</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.3</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:04:06 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/</guid>
		<description><![CDATA[Since Facebook changed its structure, some days ago, the Move Facebook Events Box to Top script has stoppped working. I&#8217;ve just updated it to the version 1.3 to solve the problem. Please visit the original post to download the updated version. Go to the original post Incoming search terms for the article: faceboopk facebook script [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>Since Facebook changed its structure, some days ago, the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script has stoppped working.</p>
<p>I&#8217;ve just updated it to the version 1.3 to solve the problem.</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="faceboopk">faceboopk</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook script">facebook script</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook events">facebook events</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="actualizar greasemonkey">actualizar greasemonkey</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="original facebook events">original facebook events</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="upcoming events box on facebook">upcoming events box on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook scripts">facebook scripts</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="how to add events box facebook">how to add events box facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="events facebook">events facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="structure of facebook">structure of facebook</a></li>
</ul>
<div class="shr-publisher-1629"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Add-On: Close Repeated Tabs 1.0</title>
		<link>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/</link>
		<comments>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:33:38 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Close]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[Experimental]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Public]]></category>
		<category><![CDATA[Repetition]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/</guid>
		<description><![CDATA[I&#8217;ve just updated the Close Repeated Tabs Firefox add-on to the 1.0 version. It was modified to completely comply with Firefox 3.6 and 3.7. Also, you can now choose whether to treat the different anchors as the same page or not. Just click here to download: Download Or go to the original post for more [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs'>Firefox Add-On: Close Repeated Tabs</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/' rel='bookmark' title='Firefox Add-on: List Open URLs'>Firefox Add-on: List Open URLs</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->
<p style="text-align: center;"><img class="size-full wp-image-54 aligncenter" title="Close Repeated Tabs Menu" src="http://www.neoegm.com/wp-content/uploads/2009/04/closerepeatedtabs.png" alt="Close Repeated Tabs Menu" width="380" height="380" /></p>
<p>I&#8217;ve just updated the <a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/">Close Repeated Tabs Firefox add-on</a> to the 1.0 version.</p>
<p>It was modified to completely <strong>comply with Firefox 3.6 and 3.7</strong>.</p>
<p>Also, you can now choose whether to treat the different anchors as the same page or not.</p>
<p>Just click here to download:</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/11884/">Download</a></p>
</div>
<p>Or go to the original post for more information:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/">Original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox close">firefox close</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="addons for repetition in firefox">addons for repetition in firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="repeat webpage plugin firefox">repeat webpage plugin firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="plugin repetition in firefox">plugin repetition in firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="music tabs">music tabs</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox plugin to check for same site repetition in tabs">firefox plugin to check for same site repetition in tabs</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox extensions close same tabs">firefox extensions close same tabs</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox close();">firefox close();</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox close tab add">firefox close tab add</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox close same tabs">firefox close same tabs</a></li>
</ul>
<div class="shr-publisher-1615"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs'>Firefox Add-On: Close Repeated Tabs</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/' rel='bookmark' title='Firefox Add-on: List Open URLs'>Firefox Add-on: List Open URLs</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top &#8211; Diagnostics Version</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 20:55:43 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Diagnostics]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/</guid>
		<description><![CDATA[I&#8217;ve just published the diagnostics version of the Move Facebook Events Box to Top script. It&#8217;s made to help in the tracing of any kind of problem which may keep the script from working for someone. There shouldn&#8217;t be need to say that the diagnostics version is just for the ones who are having problems [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>I&#8217;ve just published the diagnostics version of the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script.</p>
<p>It&#8217;s made to help in the tracing of any kind of problem which may keep the script from working for someone.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop_Diagnostics.png" alt="FacebookEventsToTop_Diagnostics" title="FacebookEventsToTop_Diagnostics" width="383" height="198" class="aligncenter size-full wp-image-1582" /></p>
<p>There shouldn&#8217;t be need to say that <strong>the diagnostics version is just for the ones who are having problems with the script</strong>.</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/#diagnostics">original post</a> to read the instructions and download the latest version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/#diagnostics">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="ver eventos en facebook">ver eventos en facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover comentarios facebook">mover comentarios facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="TRASLADAR VIDEOS A FACEBOOK">TRASLADAR VIDEOS A FACEBOOK</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover de sitio los videos de facebook">mover de sitio los videos de facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover los eventos de facebbok">mover los eventos de facebbok</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="personalizar evento en facebook">personalizar evento en facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="por que eventos esta arriba facebook">por que eventos esta arriba facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="QTraslate plugin instrucciones">QTraslate plugin instrucciones</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="recuadro script">recuadro script</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="recuadros CUMPLEAÑOS">recuadros CUMPLEAÑOS</a></li>
</ul>
<div class="shr-publisher-1584"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 19:55:35 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Admin Panel]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Naming]]></category>
		<category><![CDATA[Original]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/</guid>
		<description><![CDATA[I&#8217;ve just released the version 3.1.6.3 of the Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin. Two important things have been fixed: Support for blogs without qTranslate (it won&#8217;t give fatal errors anymore) Correct naming of the plugin in the WordPress Repository (as &#8220;Google XML Sitemaps with qTranslate Support&#8221;). The incorrect naming may cause [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>I&#8217;ve just released the version 3.1.6.3 of the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/"><em>Google (XML) Sitemaps Generator with qTranslate Support</em> WordPress Plugin</a>.</p>
<p>Two important things have been fixed:</p>
<ul>
<li>Support for blogs without qTranslate (it won&#8217;t give fatal errors anymore)</li>
<li>Correct naming of the plugin in the WordPress Repository (as &#8220;Google XML Sitemaps with qTranslate Support&#8221;). The incorrect naming may cause the ones who have downloaded previous versions of the plugins to get updated to the original version (the one that does not support qTranslate).</li>
</ul>
<p><strong>I really recommend updating since you may not receive the notifications for this version of the plugin but for the original one (which does not support qTranslate).</strong></p>
<p>You can download the latest version from the original post page:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="current version plugin Google Update">current version plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual del plugin Google Update">versión actual del plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual plugin Google Update">versión actual plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="current version plugin Google Updater">current version plugin Google Updater</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="descargar versión actual del plugin Google Update">descargar versión actual del plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="The last run didn\t finish! Maybe you can raise the memory or time limit for PHP scripts">The last run didn\t finish! Maybe you can raise the memory or time limit for PHP scripts</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="current version plugin Facebook Plugin">current version plugin Facebook Plugin</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="actividades para dar prefijo">actividades para dar prefijo</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual del plugin Google Updater">versión actual del plugin Google Updater</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="google xml sitemap generator">google xml sitemap generator</a></li>
</ul>
<div class="shr-publisher-1560"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:55:57 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Admin Panel]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/</guid>
		<description><![CDATA[Just to make the things easier for the ones using the Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin, I&#8217;ve just released it in the WordPress repository as &#8220;google-xml-sitemaps-with-qtranslate-support&#8220;. This enables you to get easily notified when a new version is available and to use the automatic updating feature (from the WordPress admin panel). [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Just to make the things easier for the ones using the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin</a>, I&#8217;ve just released it in the WordPress repository as &#8220;<em><strong>google-xml-sitemaps-with-qtranslate-support</strong></em>&#8220;.</p>
<p>This enables you to get easily <strong>notified when a new version is available</strong> and to use the <strong>automatic updating feature</strong> (from the WordPress admin panel).</p>
<p>You can download the latest version from the original post page:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="problemas qtranslate">problemas qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="google sitemaps generator for wordpress qtranslate support">google sitemaps generator for wordpress qtranslate support</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="qtranslate vs">qtranslate vs</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="xml generador">xml generador</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="xml sitemap generator and editor">xml sitemap generator and editor</a></li>
</ul>
<div class="shr-publisher-1545"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.2.1</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 20:55:03 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/</guid>
		<description><![CDATA[It has happened almost no time since the last update (I made it yesterday), but I had to make a new release to correct one remaining problem which made the script not to work sometimes with the new site structure (specifically when returning to home without reloading after some kind of actions, for example, clicking [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>It has happened almost no time since the last update (I made it yesterday), but I had to make a new release to correct one remaining problem which made the script not to work sometimes with the new site structure (specifically when returning to home without reloading after some kind of actions, for example, clicking the &#8220;Return to home&#8221; link after cleaning up all the pending requests).</p>
<p>You may have not seen the problem, but anyway I recommend the update because Facebook keeps changing the site structure and this is the best working release (its been doing its work flawlessly in every case I&#8217;ve tested it in by now).</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="facebook events box">facebook events box</a></li>
</ul>
<div class="shr-publisher-1405"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2'>Move Facebook Events Box to Top updated to version 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.2</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 20:55:48 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1396</guid>
		<description><![CDATA[Since some days ago, the Move Facebook Events Box to Top script has stoppped working in some Facebook accounts (while it kept working in some others). It happened to be that Facebook is updating some parts of its page structure and that changes generated the problems. I&#8217;ve just updated it to the version 1.2 to [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>Since some days ago, the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script has stoppped working in some Facebook accounts (while it kept working in some others).</p>
<p>It happened to be that Facebook is updating some parts of its page structure and that changes generated the problems.</p>
<p>I&#8217;ve just updated it to the version 1.2 to solve the problem .</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="add events box facebook">add events box facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="facebook events scripts">facebook events scripts</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="move events box">move events box</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to move comments to top on facebook">how to move comments to top on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to move comments to the top on facebook">how to move comments to the top on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to add events box on facebook">how to add events box on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="Facebook Move events box">Facebook Move events box</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="facebook move events">facebook move events</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="events box facebook?">events box facebook?</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="como mover eventos del facebook a mi perfil">como mover eventos del facebook a mi perfil</a></li>
</ul>
<div class="shr-publisher-1396"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.3'>Move Facebook Events Box to Top updated to version 1.3</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.1'>Move Facebook Events Box to Top updated to version 1.1</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 20:55:48 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1384</guid>
		<description><![CDATA[Although, as I said in the original post, I had not originally written the code modifications to enable the qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin, I decided to make some corrections myself to do the following things: Home page now appears in the different languages in the sitemap. Entries not written [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Although, as I said in the original post, I had not originally written the code modifications to enable the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a>, I decided to make some corrections myself to do the following things:</p>
<ul>
<li><strong>Home page</strong> now appears in the different languages in the sitemap.</li>
<li>Entries not written in the <strong>default language</strong> do not appear anymore in the sitemap. Now, just the written languages appear. (Thanks Blutarsky for notifying the bug)</li>
</ul>
<p>The updated code modifications and the new download version are in the original post:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate wordpress">qtranslate wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="The last run didnt finish! Maybe you can raise the memory or time limit for PHP scripts">The last run didnt finish! Maybe you can raise the memory or time limit for PHP scripts</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate plugin">qtranslate plugin</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="wordpress qtranslate">wordpress qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="no tiene los permisos wordpress qtranslate">no tiene los permisos wordpress qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="wordpress Script execution halted: Out of memory">wordpress Script execution halted: Out of memory</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate links">qtranslate links</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate Out of memory">qtranslate Out of memory</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="error de permisos qtranslate">error de permisos qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate usage">qtranslate usage</a></li>
</ul>
<div class="shr-publisher-1384"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/' rel='bookmark' title='qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin'>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>High Voltage Videos I &#8211; Curiosities with High Voltage (1)</title>
		<link>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/</link>
		<comments>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 20:55:01 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[High Voltage]]></category>
		<category><![CDATA[Ampere]]></category>
		<category><![CDATA[Arc]]></category>
		<category><![CDATA[Beam]]></category>
		<category><![CDATA[Burn]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[Coil]]></category>
		<category><![CDATA[Cook]]></category>
		<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[Electricity]]></category>
		<category><![CDATA[Flyback]]></category>
		<category><![CDATA[High]]></category>
		<category><![CDATA[Hot dog]]></category>
		<category><![CDATA[Neon]]></category>
		<category><![CDATA[Plasma]]></category>
		<category><![CDATA[Power]]></category>
		<category><![CDATA[Power Lines]]></category>
		<category><![CDATA[Sign]]></category>
		<category><![CDATA[Spark]]></category>
		<category><![CDATA[Tesla]]></category>
		<category><![CDATA[Tesla Coil]]></category>
		<category><![CDATA[Transformer]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Voltage]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1375</guid>
		<description><![CDATA[This is the first post of the &#8220;High Voltage Videos&#8221; series. Here, I&#8217;ll publish some videos of curiosities and interesting things involving high voltage electricity. Enjoy them What happens if you touch the power lines? 15000 Volt (15kV) Electricity Arc at 1.5 Ampere 500000 Volt (500kV) Switch Opening Arc (VERY good!) &#8220;Plasma&#8221; beam (Recommended!) Cooking [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2/' rel='bookmark' title='YouTube Downloader 1.2'>YouTube Downloader 1.2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->This is the first post of the &#8220;High Voltage Videos&#8221; series.</p>
<p>Here, I&#8217;ll publish some videos of curiosities and interesting things involving high voltage electricity.</p>
<p>Enjoy them <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>What happens if you touch the power lines?</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/P8tprAIQFCE&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/P8tprAIQFCE&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><br />
<span id="more-1375"></span></p>
<h4>15000 Volt (15kV) Electricity Arc at 1.5 Ampere</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/W6yiWQdVP_w&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/W6yiWQdVP_w&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>500000 Volt (500kV) Switch Opening Arc (VERY good!)</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/PXiOQCRiSp0&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PXiOQCRiSp0&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>&#8220;Plasma&#8221; beam (Recommended!)</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/B1bRNTdsjQ4&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/B1bRNTdsjQ4&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>Cooking a hot dog with high voltage (That would happen to your hand! (at least))</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/ZSkB1xZstcI&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZSkB1xZstcI&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>Burning a CD with a Neon Sign Transformer</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/CUxbIuxqQl8&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CUxbIuxqQl8&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>A guy frying everything with a circuit made with a Flyback Transformer</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/JOTn7A4BFfs&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JOTn7A4BFfs&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="generador de alto voltaje con flyback">generador de alto voltaje con flyback</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videos de alto voltaje">videos de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videos de alto boltaje">videos de alto boltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="arco de alto voltaje">arco de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="plano como hacer de Flyback From Generator Coil">plano como hacer de Flyback From Generator Coil</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="Herramientas de alto voltaje">Herramientas de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="video de alto voltaje">video de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="alto voltage II">alto voltage II</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="generador de alto voltaje">generador de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="herramientas alto voltaje">herramientas alto voltaje</a></li>
</ul>
<div class="shr-publisher-1375"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2/' rel='bookmark' title='YouTube Downloader 1.2'>YouTube Downloader 1.2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Visits Notification Tool</title>
		<link>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/</link>
		<comments>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 18:25:06 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Accounts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Authorized]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google API]]></category>
		<category><![CDATA[Grant]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Notification]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Pageviews]]></category>
		<category><![CDATA[Prism]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Revoke]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[Secure]]></category>
		<category><![CDATA[Shortcut]]></category>
		<category><![CDATA[Simple]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Today]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Visits]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Window]]></category>
		<category><![CDATA[Yesterday]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1333</guid>
		<description><![CDATA[If you have a website with Google Analytics configured and want to be able to track its visits without needing to go to the Analytics Site (except when you need more advanced reports), then this online tool is for you&#8230; It&#8217;s very simple to use&#8230; You just need to access the following URL: http://www.neoegm.com/services/google-analytics-visits/ And [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/' rel='bookmark' title='Firefox Add-on: List Open URLs'>Firefox Add-on: List Open URLs</a></li>
<li><a href='http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/' rel='bookmark' title='Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)'>Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->If you have a website with <a href="http://www.google.com/analytics/">Google Analytics</a> configured and want to be able to track its visits without needing to go to the Analytics Site (except when you need more advanced reports), then this online tool is for you&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Visits.png" alt="GoogleAnalyticsVisits_Visits" title="GoogleAnalyticsVisits_Visits" width="341" height="285" class="aligncenter size-full wp-image-1344" /></p>
<p><span id="more-1333"></span></p>
<p>It&#8217;s very simple to use&#8230; You just need to access the following URL:</p>
<div align="center" style="font-weight: bold; font-size:10pt;">
<a href="http://www.neoegm.com/services/google-analytics-visits/">http://www.neoegm.com/services/google-analytics-visits/</a>
</div>
<p>And this screen will appear (<a href="#Convert_Into_Application">below</a> I&#8217;ll explain how to make this service look like an application and even make a special desktop shortcut):</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Login.png" alt="GoogleAnalyticsVisits_Login" title="GoogleAnalyticsVisits_Login" width="373" height="301" class="aligncenter size-full wp-image-1342" /></p>
<p>If you press Login, you&#8217;ll be taken to the Google Apps site, which will ask you for your login information (unless you&#8217;re already logged in):</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Authenticate.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Authenticate-300x200.png" alt="GoogleAnalyticsVisits_Authenticate" title="GoogleAnalyticsVisits_Authenticate" width="300" height="200" class="aligncenter size-medium wp-image-1338" /></a></p>
<p><br/><br />
<img src="http://www.neoegm.com/wp-content/uploads/2009/09/PadlockIcon.png" alt="PadlockIcon" title="PadlockIcon" width="100" height="100" class="alignleft size-full wp-image-1351" /><strong>Notice:</strong> as this application was developed using the Google Analytics API, your login information does not go through the <strong><em>NeoEGM.com</em></strong> site, so there&#8217;s no way to record it. The Javascript source code is available for you to check it out.</p>
<p><br/><br />
After that, the Permission Grant screen will appear&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Grant.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Grant-300x201.png" alt="GoogleAnalyticsVisits_Grant" title="GoogleAnalyticsVisits_Grant" width="300" height="201" class="aligncenter size-medium wp-image-1347" /></a></p>
<p>You must press the &#8220;Grant access&#8221; button in order for the analytics statistics data to be accessed by the application. Again: there&#8217;s absolutely no harm in doing this since there&#8217;s no record at all being saved by the <strong><em>NeoEGM.com</em></strong> site.</p>
<p>After the &#8220;Grant access&#8221; button has been pressed, you&#8217;ll get the account listing screen&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Accounts.png" alt="GoogleAnalyticsVisits_Accounts" title="GoogleAnalyticsVisits_Accounts" width="373" height="301" class="aligncenter size-full wp-image-1337" /></p>
<p>There, you have to choose the desired account to monitor. You can also easily copy the account link to bookmark it or to access it directly whenever you want (without having to pass through the accounts screen)&#8230; This is very useful when you have a bunch of sites to monitor and want to open all the links at the same time&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_IndexCopyLinks.png" alt="GoogleAnalyticsVisits_IndexCopyLinks" title="GoogleAnalyticsVisits_IndexCopyLinks" width="377" height="304" class="aligncenter size-full wp-image-1341" /></p>
<p>Anyway, I recommend opening one of them first, to do all the authentication stuff, and then open all the remaining ones&#8230;</p>
<p>Well, finally, we&#8217;ll get to the visits screen, which show today&#8217;s and yesterday&#8217;s visits and pageviews&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_VisitsExplained.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_VisitsExplained-300x135.png" alt="GoogleAnalyticsVisits_VisitsExplained" title="GoogleAnalyticsVisits_VisitsExplained" width="300" height="135" class="aligncenter size-medium wp-image-1345" /></a></p>
<p>It&#8217;ll get automatically updated each 5 minutes&#8230; So you can the window open and look it from time to time&#8230; Of course, you must take into account that the Google Analytics service does not refresh its internal data each time a user visits your site&#8230; It may take several minutes (usually 1 hour) for you to see changes in your visits&#8230;</p>
<p>Well, that&#8217;s all about the application&#8230; Below are further instructions to make it have a more friendly interface&#8230;</p>
<p><a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, Google Analytics Visits is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a>&#8230;</span></p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/PadlockIcon.png" alt="PadlockIcon" title="PadlockIcon" width="100" height="100" class="alignleft size-full wp-image-1351" /><strong>Security tip:</strong> if, for any reason, you ever wanted to revoke the access you have granted to <strong>any</strong> web application to access your Google data, you can visit the &#8220;<a href="https://www.google.com/accounts/IssuedAuthSubTokens">change authorized sites</a>&#8221; Google Accounts facility.<br />
<br/></p>
<p>Enjoy it <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<a name="Convert_Into_Application"></a><h3>How to convert it into an application (or at least make it look like one <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</h3>
<p>As you will have probably noticed in the previous screenshots, there was was no address bar, navigation buttons, status bar nor anything related with a browser in the windows I&#8217;ve shown. How did I do that?</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/PrismLogoClean.png" alt="PrismLogoClean" title="PrismLogoClean" width="192" height="237" class="alignleft size-full wp-image-1336" />There is an excellent <a href="http://www.firefox.com/">Firefox</a> add-in called <strong>Prism</strong> which lets you convert <strong>any</strong> website into a desktop application. It does even create the shortcuts for you!</p>
<p>How does it work?</p>
<p>Well, first of all, you need to have the <a href="http://www.firefox.com/">Firefox</a> browser and install the <a href="https://developer.mozilla.org/en/Prism">Prism</a> extension:</p>
<div align="right">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/6665">Prism Extension for Firefox</a></p>
</div>
<p>After that, you have to access the URL you want to convert into an application and go to Tools->Convert Website to Application&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_ConvertWebsiteToApplication.png" alt="GoogleAnalyticsVisits_ConvertWebsiteToApplication" title="GoogleAnalyticsVisits_ConvertWebsiteToApplication" width="358" height="489" class="aligncenter size-full wp-image-1339" /></p>
<p>Then, you&#8217;ll get to the Prism application configuration dialog&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Prism.png" alt="GoogleAnalyticsVisits_Prism" title="GoogleAnalyticsVisits_Prism" width="407" height="583" class="aligncenter size-full wp-image-1343" /></p>
<p>There, you have to configure how you wish your new application to behave (in this case, it won&#8217;t have anything related to a browser and will create a Desktop shortcut icon)&#8230;</p>
<p>And that&#8217;s all! You&#8217;ll have your Google Analytics Visits desktop shortcut icon&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_DesktopIcon.png" alt="GoogleAnalyticsVisits_DesktopIcon" title="GoogleAnalyticsVisits_DesktopIcon" width="136" height="117" class="aligncenter size-full wp-image-1363" /></p>
<p>Enjoy it <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="padlock icon">padlock icon</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google analytics notifications">google analytics notifications</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas mastil guitarra">notas mastil guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google analytics notification">google analytics notification</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="mastil guitarra notaS">mastil guitarra notaS</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas del mastil guitarra">notas del mastil guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas del mastil de la guitarra">notas del mastil de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google tool notification">google tool notification</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google analytics refresco de datos">google analytics refresco de datos</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="icon padlock">icon padlock</a></li>
</ul>
<div class="shr-publisher-1333"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/' rel='bookmark' title='Firefox Add-on: List Open URLs'>Firefox Add-on: List Open URLs</a></li>
<li><a href='http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/' rel='bookmark' title='Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)'>Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/' rel='bookmark' title='Move Facebook Events Box to Top updated to version 1.2.1'>Move Facebook Events Box to Top updated to version 1.2.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress</title>
		<link>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/</link>
		<comments>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:55:15 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Administrator]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Attack]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Fill]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Generate]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Modify]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Permissions]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Prefix]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Rename]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Solve]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Injection]]></category>
		<category><![CDATA[Sufficient]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[wp-config.php]]></category>
		<category><![CDATA[WP-Security-Scan]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1308</guid>
		<description><![CDATA[I&#8217;ll tell you my story, but you may be in the same situation having done something completely different, so keep reading&#8230; One day, some time ago, I was very happily installing the WP-Security-Scan WordPress plugin, and I got an analysis result saying that I should change the default WordPress database table prefix in order to [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/' rel='bookmark' title='How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor'>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->I&#8217;ll tell you my story, but you may be in the same situation having done something completely different, so keep reading&#8230;</p>
<p>One day, some time ago, I was very happily installing the WP-Security-Scan WordPress plugin, and I got an analysis result saying that I should <strong>change the default WordPress database table prefix</strong> in order to make harder the potential SQL Injection attacks&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix1.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix1-300x154.png" alt="WordpressAuthorization_TablePrefix1" title="WordpressAuthorization_TablePrefix1" width="300" height="154" class="aligncenter size-medium wp-image-1313" /></a></p>
<p><span id="more-1308"></span></p>
<p>So I went to the link and filled the new prefix in the screen that appeared&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix2.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix2-300x129.png" alt="WordpressAuthorization_TablePrefix2" title="WordpressAuthorization_TablePrefix2" width="300" height="129" class="aligncenter size-medium wp-image-1314" /></a></p>
<p>After pressing the &#8220;Start Renaming&#8221; button, I got the following page:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix3.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix3-300x264.png" alt="WordpressAuthorization_TablePrefix3" title="WordpressAuthorization_TablePrefix3" width="300" height="264" class="aligncenter size-medium wp-image-1309" /></a></p>
<p>Everything seemed to have been done perfectly&#8230;</p>
<p>But&#8230;&#8230; This is what I got after trying to go somewhere else in the administration panel:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_Insufficient_EN.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_Insufficient_EN-300x47.png" alt="WordpressAuthorization_Insufficient_EN" title="WordpressAuthorization_Insufficient_EN" width="300" height="47" class="aligncenter size-medium wp-image-1310" /></a></p>
<p>The infamous &#8220;You do not have sufficient permissions to access this page&#8221; message&#8230;</p>
<p>From this point on, I could not access the administration panel anymore&#8230; So what could I do?</p>
<p>The problem seemed to be generated by the modification of the WordPress table prefix, so I went to phpMyAdmin to check the database&#8230; Everething seemed OK.. I checked the wp-config,php&#8230; The prefix had been updated&#8230; The site seemed to work flawlessly for normal visitors&#8230;</p>
<p>So I started searching&#8230; And finally found <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">a site</a> whose solution I&#8217;ll leave you below in a easier to use way&#8230;</p>
<h3>Solution</h3>
<p>If this problem was generated by a change to the WordPress database table prefix (done by the buggy WP-Security-Scan plugin, by a migration or by other means), you should fill the following two fields and press the &#8220;Generate&#8221; button to generate a SQL Query which you should execute in your database (using phpMyAdmin or other options)&#8230;</p>

<script type="text/javascript">
function WPPrefixGenerateSQLQuery()
{
	var oldprefix = document.getElementById("wpprefix_query_old_prefix").value;
	var newprefix = document.getElementById("wpprefix_query_new_prefix").value;
	
	var queryfield = document.getElementById("wpprefix_query_sql");
	
	var sql = "UPDATE `" + newprefix + "usermeta` SET `meta_key` = REPLACE(`meta_key`, '" + oldprefix + "', '" + newprefix + "');\n\n";
	sql += "UPDATE `" + newprefix + "options` SET `option_name` = '" + newprefix + "user_roles' WHERE `option_name` = '" + oldprefix + "user_roles' AND `blog_id` = 0;";
	
	queryfield.value = sql;
}
</script>

<table border="0" cellspacing="5" cellpadding="0">
	<tr>
		<td>Old Prefix</td>
		<td><input type="text" name="wpprefix_query_old_prefix" id="wpprefix_query_old_prefix" value="wp_" /></td>
	</tr>
	<tr>
		<td>New Prefix</td>
		<td><input type="text" name="wpprefix_query_new_prefix" id="wpprefix_query_new_prefix" value="wp_new_prefix_" /></td>
	</tr>
	<tr>
		<td>&nbsp;</td>
		<td align="right"><input type="submit" name="button" id="button" value="Generate" onclick="WPPrefixGenerateSQLQuery();" /></td>
	</tr>
</table>
<br />
<table border="0" cellspacing="5" cellpadding="0">
	<tr>
		<td valign="top">SQL</td>
		<td><textarea name="wpprefix_query_sql" style="width: 462px;" cols="45" rows="5" readonly="readonly" id="wpprefix_query_sql"></textarea></td>
	</tr>
</table>
<script type="text/javascript">WPPrefixGenerateSQLQuery();</script>
<p>That&#8217;s all&#8230; If this didn&#8217;t work for you, it may be other kind of problem&#8230; In that case, take a look at the <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/#comment-82402">comments section</a> of <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">this post</a>, since there are some people which found other solutions.</p>
<p>Hope it helps <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para acceder a esta página">No tienes suficientes permisos para acceder a esta página</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para acceder a esta página wordpress">No tienes suficientes permisos para acceder a esta página wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="wordpress No tienes suficientes permisos para acceder a esta página">wordpress No tienes suficientes permisos para acceder a esta página</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="You do not have access to the administrator section of this site">You do not have access to the administrator section of this site</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tiene los permisos necesarios">no tiene los permisos necesarios</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tienes suficientes permisos para hacer esto facebook">no tienes suficientes permisos para hacer esto facebook</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="facebook No tienes suficientes permisos para hacer esto">facebook No tienes suficientes permisos para hacer esto</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="You do not have sufficient permissions to access this page">You do not have sufficient permissions to access this page</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tienes suficientes permisos para acceder a esta página wordpress role">no tienes suficientes permisos para acceder a esta página wordpress role</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para actualizar plugins en este sitio">No tienes suficientes permisos para actualizar plugins en este sitio</a></li>
</ul>
<div class="shr-publisher-1308"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/' rel='bookmark' title='How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor'>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>Firefox Add-on: List Open URLs</title>
		<link>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/</link>
		<comments>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 20:55:36 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[All]]></category>
		<category><![CDATA[Back]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Clipboard]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Dump]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Forward]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Hyperlink]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Listing]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Option]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[Show]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Window]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1286</guid>
		<description><![CDATA[Let&#8217;s say you&#8217;re searching for videos (or webpages if you wish) of some topic. And you navigate through lots and lots of them&#8230; Opening new tabs and even jumping between links without leaving the previous URL open somewhere else (this commonly happens when you click any &#8220;Related Video&#8221; on YouTube, since it automatically opens on [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs 1.0'>Firefox Add-On: Close Repeated Tabs 1.0</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs'>Firefox Add-On: Close Repeated Tabs</a></li>
<li><a href='http://www.neoegm.com/tech/programming/c-cpp/simple-list-class/' rel='bookmark' title='Simple C++ List Class'>Simple C++ List Class</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->Let&#8217;s say you&#8217;re <strong>searching</strong> for videos (or webpages if you wish) of some topic. And you <strong>navigate through lots</strong> and lots of them&#8230; Opening new tabs and even jumping between links without leaving the previous URL open somewhere else (this commonly happens when you click any &#8220;Related Video&#8221; on YouTube, since it automatically opens on the same tab)&#8230;</p>
<p>It would be <strong>really tedious</strong> to go through each of your tabs <strong>rescuing all the interesting URLs</strong> to save them&#8230;</p>
<p>Also, if you could save them as bookmarks (assuming you don&#8217;t care about the browsing history), it&#8217;s not really simple to just <strong>get the URLs to copy them</strong> or to send them to somebody else&#8230;</p>
<p>For this (and for any other case you could find), I developed the &#8220;List Open URLs&#8221; Firefox Add-on&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Menu.png" alt="ListOpenURLs_Menu" title="ListOpenURLs_Menu" width="354" height="252" class="aligncenter size-full wp-image-1293" /></p>
<p><span id="more-1286"></span></p>
<p>As you can imagine, its really simple to use&#8230;</p>
<p>You just click the Tools menu &#8220;List Open URLs&#8221; option and you&#8217;ll get a prompt asking whether or not you want to take into account the history of each of the tabs&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_HistoryQuestion.png" alt="ListOpenURLs_HistoryQuestion" title="ListOpenURLs_HistoryQuestion" width="359" height="148" class="aligncenter size-full wp-image-1292" /></p>
<p>If you choose not to (&#8220;Cancel&#8221; button), then it will generate a listing including only the currently opened URLs&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpNoHistory.png" alt="ListOpenURLs_DumpNoHistory" title="ListOpenURLs_DumpNoHistory" width="350" height="191" class="aligncenter size-full wp-image-1291" /></p>
<p>But if you, instead, clicked &#8220;OK&#8221;, then you&#8217;d get a full listing, including the history of each tabs (the URLs in the &#8220;back&#8221; and &#8220;forward&#8221; buttons)&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpHistory.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpHistory-300x132.png" alt="ListOpenURLs_DumpHistory" title="ListOpenURLs_DumpHistory" width="300" height="132" class="aligncenter size-medium wp-image-1290" /></a></p>
<p>Finally, if you want to copy the entire text, you can simply right click it and choose &#8220;Select All&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_SelectAll.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_SelectAll-300x132.png" alt="ListOpenURLs_SelectAll" title="ListOpenURLs_SelectAll" width="300" height="132" class="aligncenter size-medium wp-image-1288" /></a></p>
<p>And, after that, right click it again and choose &#8220;Copy&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Copy.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Copy-300x131.png" alt="ListOpenURLs_Copy" title="ListOpenURLs_Copy" width="300" height="131" class="aligncenter size-medium wp-image-1289" /></a></p>
<p>That&#8217;s all&#8230; You&#8217;ll have the text in your clipboard&#8230;</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, List Open URLs is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a>&#8230;</span></p>
<p>If you want it, just click here to download:</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/14223/">Download</a></p>
</div>
<p>If you like it, please add a review at <a href="https://addons.mozilla.org/en-US/firefox/addon/14223/">Firefox&#8217;s Add-on site</a> so it can get out of the &#8220;experimental&#8221; state&#8230;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="firefox open list of urls">firefox open list of urls</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="flash factory los angeles web design">flash factory los angeles web design</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls in firefox">open list of urls in firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="firefox list urls">firefox list urls</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open urls from list">open urls from list</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="firefox open a list of URLs">firefox open a list of URLs</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="download list of url firefox">download list of url firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls">open list of urls</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="how to open a list of urls in firefox">how to open a list of urls in firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="how to open a list of url in firefox">how to open a list of url in firefox</a></li>
</ul>
<div class="shr-publisher-1286"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs 1.0'>Firefox Add-On: Close Repeated Tabs 1.0</a></li>
<li><a href='http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/' rel='bookmark' title='Firefox Add-On: Close Repeated Tabs'>Firefox Add-On: Close Repeated Tabs</a></li>
<li><a href='http://www.neoegm.com/tech/programming/c-cpp/simple-list-class/' rel='bookmark' title='Simple C++ List Class'>Simple C++ List Class</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hide WordPress Visual Editor Tab 1.01</title>
		<link>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/</link>
		<comments>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:01:25 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Break]]></category>
		<category><![CDATA[Client-side]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Remove]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Visual Editor]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1275</guid>
		<description><![CDATA[Hide WordPress Visual Editor Tab has been updated to the 1.01 version to make it also work when creating new posts and pages. In the previous (1.0) version, it just worked while editing already created posts and pages. To download the latest version, please visit the original Hide WordPress Visual Editor Tab post. Go to [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/' rel='bookmark' title='How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor'>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><strong><em>Hide WordPress Visual Editor Tab</em></strong> has been updated to the 1.01 version to make it also work when creating new posts and pages. In the previous (1.0) version, it just worked while editing already created posts and pages.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Removed.png" alt="Remove_Visual_Tab_Removed" title="Remove_Visual_Tab_Removed" width="499" height="208" class="aligncenter size-full wp-image-1178" /></p>
<p>To download the latest version, please visit the <a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/">original Hide WordPress Visual Editor Tab post</a>.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/">Go to original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="wordpress hide visual editor">wordpress hide visual editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="video freeware">video freeware</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="hide wordpress editor">hide wordpress editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="visual tab wordpress">visual tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="visual hide">visual hide</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="quitar editor visual wordpress">quitar editor visual wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="wordpress remove visual editor tab">wordpress remove visual editor tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="que hide visual">que hide visual</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="remove visual editor tab wordpress">remove visual editor tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="visual editor de musica">visual editor de musica</a></li>
</ul>
<div class="shr-publisher-1275"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/' rel='bookmark' title='How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor'>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:55:17 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1239</guid>
		<description><![CDATA[Some time ago, Qian Qin, the author of qTranslate, has published what should be modified on the Google (XML) Sitemaps Generator WordPress Plugin to make it support qTranslate. However, this has never reached any of the releases of this plugin. (Qian Qin says he sent an e-mail to the author and I&#8217;ve done it myself, [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Some time ago, <a href="http://www.qianqin.de/">Qian Qin</a>, the author of <a href="http://www.qianqin.de/qtranslate/">qTranslate</a>, has published <a href="http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&#038;t=446&#038;p=2182&#038;hilit=google+xml#p2182">what should be modified</a> on the <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google (XML) Sitemaps Generator</a> WordPress Plugin to make it support qTranslate.</p>
<p>However, this has never reached any of the releases of this plugin. (Qian Qin says he sent an e-mail to the author and I&#8217;ve done it myself, with no response).</p>
<p>So, I&#8217;m going to publish what should be modified on the plugin (for the ones who may want to do them themselves) and then, leave the link to download the modified version I prepared. I&#8217;ll be updating it for each new release.</p>
<p><strong>Update:</strong> I&#8217;ve made some code corrections myself to include the different translations of the home page and not to include the entries not written in the default language (just include the written languages). The download and the code snippets have been updated to reflect the changes. If you wish more details, please go to the <a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/">post of the update</a>.</p>
<p><strong>Update (2009-09-30):</strong> I&#8217;ve updated the naming of the plugin at the WordPress repository and the support for blogs without qTranslate installed. <strong>For releases before the 3.1.6.3, you may get notified for the original version updates (and not for this version supporting qTranslate), so I really recommend updating.</strong> If you wish more details, please go to the <a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/">post of the update</a>.</p>
<p><span id="more-1239"></span></p>
<p>First, the changes&#8230; They are all made in the <em>sitemap-core.php</em> file&#8230;</p>
<h4>Change 1</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1753; light: false; title: ; toolbar: true; notranslate">
		//Add the home page (WITH a slash!)
		if($this-&gt;GetOption(&quot;in_home&quot;)) {
			if('page' == get_option('show_on_front') &amp;&amp; get_option('page_on_front')) {
				$pageOnFront = get_option('page_on_front');
				$p = get_page($pageOnFront);
				if($p) {
					$homePid = $p-&gt;ID;
					$this-&gt;AddUrl(trailingslashit($home), $this-&gt;GetTimestampFromMySql( ($p-&gt;post_modified_gmt &amp;&amp; $p-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&gt;post_modified_gmt : $p-&gt;post_date_gmt)), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));
				}
			} else {
				$this-&gt;AddUrl(trailingslashit($home), $this-&gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));
			}
		}
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1753; light: false; title: ; toolbar: true; notranslate">
		//[NeoEGM] Moved here for home page support for different languages
		$useQTransLate = function_exists('qtrans_convertURL') &amp;&amp; function_exists('qtrans_getAvailableLanguages');
		global $q_config;

		//Add the home page (WITH a slash!)
		if($this-&gt;GetOption(&quot;in_home&quot;)) {
			if('page' == get_option('show_on_front') &amp;&amp; get_option('page_on_front')) {
				$pageOnFront = get_option('page_on_front');
				$p = get_page($pageOnFront);
				if($p) {
					$homePid = $p-&gt;ID;
					$this-&gt;AddUrl(trailingslashit($home), $this-&gt;GetTimestampFromMySql( ($p-&gt;post_modified_gmt &amp;&amp; $p-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&gt;post_modified_gmt : $p-&gt;post_date_gmt)), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));

					//[NeoEGM] Home page support for different languages
					if($useQTransLate)
						foreach($q_config['enabled_languages'] as $language)
							if($language != $q_config['default_language'])
								$this-&gt;AddUrl(qtrans_convertURL( trailingslashit($home), $language, true), $this-&gt;GetTimestampFromMySql( ($p-&gt;post_modified_gmt &amp;&amp; $p-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&gt;post_modified_gmt : $p-&gt;post_date_gmt)), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));
				}
			} else {
				$this-&gt;AddUrl(trailingslashit($home), $this-&gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));

				//[NeoEGM] Home page support for different languages
				if($useQTransLate)
					foreach($q_config['enabled_languages'] as $language)
						if($language != $q_config['default_language'])
							$this-&gt;AddUrl(qtrans_convertURL( trailingslashit($home), $language, true), $this-&gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&gt;GetOption(&quot;cf_home&quot;), $this-&gt;GetOption(&quot;pr_home&quot;));
			}
		}
</pre>
<h4>Change 2</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1775; light: false; title: ; toolbar: true; notranslate">
$useQTransLate = false; //function_exists('qtrans_convertURL') &amp;&amp; function_exists('qtrans_getEnabledLanguages'); Not really working yet
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1791; light: false; title: ; toolbar: true; notranslate">
//[NeoEGM] Line removed
//$useQTransLate = false; //function_exists('qtrans_convertURL') &amp;&amp; function_exists('qtrans_getEnabledLanguages'); Not really working yet
</pre>
<h4>Change 3</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1954; light: false; title: ; toolbar: true; notranslate">
//Add it
$this-&gt;AddUrl($permalink,$this-&gt;GetTimestampFromMySql( ($post-&gt;post_modified_gmt &amp;&amp; $post-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&gt;post_modified_gmt : $post-&gt;post_date_gmt)), ($isPage?$cf_pages:$cf_posts), $prio);
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1971; light: false; title: ; toolbar: true; notranslate">
//Add it
//[NeoEGM] Add it only if the default language is defined, otherwise only add the defined languages
$QTranslateLanguages = qtrans_getAvailableLanguages($post-&gt;post_content);
if (in_array($q_config['default_language'], $QTranslateLanguages))
	$this-&gt;AddUrl($permalink, $this-&gt;GetTimestampFromMySql( ($post-&gt;post_modified_gmt &amp;&amp; $post-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&gt;post_modified_gmt : $post-&gt;post_date_gmt)), ($isPage?$cf_pages:$cf_posts), $prio);
</pre>
<h4>Change 4</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1970; light: false; title: ; toolbar: true; notranslate">
// Multilingual Support with qTranslate, thanks to Qian Qin
if ($useQTransLate) {
	global $q_config;
	foreach (qtrans_getEnabledLanguages($post-&gt;post_content) as $language) {
		if ($language != $q_config['default_language']) {
			$this-&gt;AddUrl(qtrans_convertURL($permalink, $language), $this-&gt;GetTimestampFromMySql( ($post-&gt;post_modified_gmt &amp;&amp; $post-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&gt;post_modified_gmt : $post-&gt;post_date_gmt)), ($isPage ? $cf_pages : $cf_posts), $prio);
		}
	}
}
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1990; light: false; title: ; toolbar: true; notranslate">
//Multilingual Support with qTranslate, thanks to Qian Qin
//[NeoEGM] Moved up the global variable scope line
if ($useQTransLate)
	foreach (qtrans_getAvailableLanguages($post-&gt;post_content) as $language)
		if ($language != $q_config['default_language'])
			$this-&gt;AddUrl(qtrans_convertURL($permalink, $language, true), $this-&gt;GetTimestampFromMySql( ($post-&gt;post_modified_gmt &amp;&amp; $post-&gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&gt;post_modified_gmt : $post-&gt;post_date_gmt)), ($isPage ? $cf_pages : $cf_posts), $prio);
</pre>
<h4>Download modified plugin version</h4>
<p>Now, finally, the link&#8230;</p>
<div align="center">
<p class="download"><a href="http://downloads.wordpress.org/plugin/google-xml-sitemaps-with-qtranslate-support.3.1.6.3.zip">Download Version 3.1.6.3</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtranslate">qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="Please edit wp-db inc php in wp-includes and set SAVEQUERIES to true if you want to see the queries">Please edit wp-db inc php in wp-includes and set SAVEQUERIES to true if you want to see the queries</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="google xml sitemap">google xml sitemap</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="neoegm">neoegm</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="Google XML Sitemaps with qTranslate Support">Google XML Sitemaps with qTranslate Support</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="wp-db inc php">wp-db inc php</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtrans_convertURL">qtrans_convertURL</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="mario 777 efoto">mario 777 efoto</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="fix categories link with qtranslate in Query Mode">fix categories link with qtranslate in Query Mode</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtranslate google">qtranslate google</a></li>
</ul>
<div class="shr-publisher-1239"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/' rel='bookmark' title='Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)'>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/' rel='bookmark' title='Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository'>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/' rel='bookmark' title='Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)'>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>YouTube Downloader 1.2.1</title>
		<link>http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/</link>
		<comments>http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 19:16:49 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Format]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1192</guid>
		<description><![CDATA[As you may probably have noticed, the 1.2 version of YouTube Downloader had just stopped working because of a change in the YouTube site format. The 1.2.1 version has just been released to solve this problem and to adapt to the new changes in the site. You must visit the original YouTube Downloader post to [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2/' rel='bookmark' title='YouTube Downloader 1.2'>YouTube Downloader 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/05/youtube-downloader-1.png" width="501" height="239" class="aligncenter size-full wp-image-197" /></p>
<p>As you may probably have noticed, the 1.2 version of <a href="http://www.neoegm.com/tech/software/tools/youtube-downloader/">YouTube Downloader</a> had just stopped working because of a change in the YouTube site format. The 1.2.1 version has just been released to solve this problem and to adapt to the new changes in the site.</p>
<p>You must visit the <a href="http://www.neoegm.com/tech/software/tools/youtube-downloader/">original YouTube Downloader post</a> to download the latest version&#8230;</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/software/tools/youtube-downloader/">Go to original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/" title="software para descargar videos de youtube y moverla a facebook">software para descargar videos de youtube y moverla a facebook</a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/" title="youtube downlader 1 2">youtube downlader 1 2</a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/" title="youtube downloader 1 2 1">youtube downloader 1 2 1</a></li>
</ul>
<div class="shr-publisher-1192"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2/' rel='bookmark' title='YouTube Downloader 1.2'>YouTube Downloader 1.2</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/software/tools/youtube-downloader-1_2_1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</title>
		<link>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/</link>
		<comments>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 20:58:28 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Break]]></category>
		<category><![CDATA[Client-side]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Remove]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Visual Editor]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1173</guid>
		<description><![CDATA[There are lots of people (like me) who just use the HTML mode of the WordPress Editor&#8230; Sometimes, you cannot just disable the WYSIWYG editor (in my case, I cannot do it because I use the qTranslate plugin to enable the creation of posts in different languages)&#8230; For this people, having the Visual editor tab, [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/' rel='bookmark' title='How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress'>How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->There are lots of people (like me) who just use the HTML mode of the WordPress Editor&#8230; Sometimes, you cannot just disable the WYSIWYG editor (in my case, I cannot do it because I use the <a href="http://www.qianqin.de/qtranslate/">qTranslate plugin</a> to enable the creation of posts in different languages)&#8230; For this people, having the Visual editor tab, might be a very big problem&#8230;</p>
<p>Lets say you&#8217;re writing a post in the HTML tab&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_HTML.png" alt="Remove_Visual_Tab_HTML" title="Remove_Visual_Tab_HTML" width="499" height="207" class="aligncenter size-full wp-image-1176" /></p>
<p>And you click by mistake the Visual tab&#8230;</p>
<p><span id="more-1173"></span></p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Visual.png" alt="Remove_Visual_Tab_Visual" title="Remove_Visual_Tab_Visual" width="500" height="207" class="aligncenter size-full wp-image-1175" /></p>
<p>When you go back to the HTML mode, you&#8217;ll see, probably with a bit of anger, that all your code has just been broken&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_HTML_Broken.png" alt="Remove_Visual_Tab_HTML_Broken" title="Remove_Visual_Tab_HTML_Broken" width="499" height="218" class="aligncenter size-full wp-image-1177" /></p>
<p>So what&#8217;s the solution to prevent this problem from happening again? Well, what better than just removing the tab?</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Removed.png" alt="Remove_Visual_Tab_Removed" title="Remove_Visual_Tab_Removed" width="499" height="208" class="aligncenter size-full wp-image-1178" /></p>
<p>I&#8217;ve made a script to do this&#8230; I didn&#8217;t make it a WordPress plugin for two reasons: first, to avoid making the server work more without reason for things you can easily do on the client side, and second, to allow without problems the different users of your blog to choose the writing method they prefer (may be some users do use the visual editor)&#8230;</p>
<p><br/><br />
<a href="http://www.firefox.com/"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Firefox_small.png" alt="Firefox_small" title="Firefox_small" width="69" height="69" class="alignleft size-full wp-image-880" /></a> This script needs <a href="http://www.firefox.com/">Firefox</a> and the <a href="https://addons.mozilla.org/firefox/addon/748">GreaseMonkey</a> add-on (I really recommend installing it since it gives you the ability to run this kind of &#8220;web site customizing scripts&#8221;)&#8230;</p>
<p><br/><br />
First of all, assuming you have Firefox installed, you have to install the GreaseMonkey add-on (click &#8220;Add to Firefox&#8221; in the following link):</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/firefox/addon/748">GreaseMonkey Firefox Extension</a></p>
</div>
<p><br/><br />
Then, once it is installed and running (you must restart Firefox when asked for), there will be a colored monkey face in the status bar (if it is gray, you must enable the engine by clicking on it):</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/GreaseMonkey_On.png" alt="GreaseMonkey_On" title="GreaseMonkey_On" width="227" height="22" class="aligncenter size-full wp-image-882" /></p>
<p>After that, you are finally prepared to install the script&#8230;</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, Hide WordPress Visual Editor Tab is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p><br/><br />
Now, finally, the link&#8230;</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/hide-wordpress-visual-editor-tab/hide-wordpress-visual-editor-tab-1.01.user.js">Hide WordPress Visual Editor Tab 1.01</a></p>
</div>
<p><strong>Update:</strong> new version 1.01 which makes it also work when creating new posts and pages (it just worked when editing).<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove visual tab">wordpress remove visual tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress disable visual tab">wordpress disable visual tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="disable visual tab wordpress">disable visual tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove visual editor">wordpress remove visual editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="access music on server from a client">access music on server from a client</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="remove html tab wordpress">remove html tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="remove visual tab wordpress">remove visual tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress hide editor">wordpress hide editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove HTML tab">wordpress remove HTML tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress hide html tab">wordpress hide html tab</a></li>
</ul>
<div class="shr-publisher-1173"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/' rel='bookmark' title='Hide WordPress Visual Editor Tab 1.01'>Hide WordPress Visual Editor Tab 1.01</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/' rel='bookmark' title='WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)'>WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)</a></li>
<li><a href='http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/' rel='bookmark' title='How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress'>How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)</title>
		<link>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/</link>
		<comments>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 05:00:18 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Anchor]]></category>
		<category><![CDATA[Decode]]></category>
		<category><![CDATA[decodeURI]]></category>
		<category><![CDATA[decodeURIComponent]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Encode]]></category>
		<category><![CDATA[encodeURI]]></category>
		<category><![CDATA[encodeURIComponent]]></category>
		<category><![CDATA[Escape]]></category>
		<category><![CDATA[Force]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Intelligent]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Parameters]]></category>
		<category><![CDATA[Parse]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Unescape]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1078</guid>
		<description><![CDATA[With this online tool, you can easily escape and unescape strings (among other powerful things, explained below)&#8230; If you want to bookmark it, you may prefer this shorter address: http://www.neoegm.com/software/intelligent-escaper-unescaper/. [Press the right mouse button and select the option offered by your browser to add it to your bookmarks/favorites.] As you can see, there are [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/online-tools/convert-celsius-to-fahrenheit-online/' rel='bookmark' title='Convert Celsius to Fahrenheit Online'>Convert Celsius to Fahrenheit Online</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/' rel='bookmark' title='Google Analytics Visits Notification Tool'>Google Analytics Visits Notification Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic -->With this online tool, you can easily escape and unescape strings (among other powerful things, explained below)&#8230;</p>
<p>If you want to bookmark it, you may prefer this shorter address: <a href="http://www.neoegm.com/software/intelligent-escaper-unescaper/">http://www.neoegm.com/software/intelligent-escaper-unescaper/</a>. [Press the right mouse button and select the option offered by your browser to add it to your bookmarks/favorites.]</p>
<p><script type="text/javascript" src="/scripts/intelligent-escaper-unescaper.js"></script></p>

<div align="center">
<p>
	<textarea name="escape_unescape_text" id="escape_unescape_text" cols="60" rows="10" sytle="width: 500px;"></textarea>
</p>
<p>
	<input type="button" name="Button" id="button" value="Escape" onclick="var field = document.getElementById('escape_unescape_text'); field.value = Escape(field.value);" />
	<input type="button" name="button2" id="button3" value="Escape (Forced)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = Escape(field.value, true);" />
	<input type="button" name="button" id="button2" value="Unescape" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = unescape(field.value);" />
	</p>
<p>
	<input type="button" name="button5" id="button6" value="Escape URL" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value);" />
	<input type="button" name="button15" id="button16" value="Escape URL (Forced)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value, true);" />
	<input type="button" name="button16" id="button17" value="Escape URL (Forced + Host)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value, true, true);" />
</p>
<p>
	<input type="button" name="button6" id="button7" value="Intelligent Escape" onclick="var field = document.getElementById('escape_unescape_text'); field.value = IntelligentEscape(field.value);" />
	<input type="button" name="button7" id="button8" value="Intelligent Unescape" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = IntelligentUnescape(field.value);" />
</p>
<p>
	<input type="button" name="button3" id="button4" value="Parse URL Parameters" onclick="var field = document.getElementById('escape_unescape_text'); field.value = ParseURLParameters(field.value);" />
	<input type="button" name="button4" id="button5" value="Make URL with Parameters" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = MakeURLWithParameters(field.value);" />
	</p>
<p>
	<input type="button" name="button8" id="button9" value="Escape +" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, '+');" />
	<input type="button" name="button13" id="button14" value="Escape #" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, '#');" />
	<input type="button" name="button14" id="button15" value="Escape:" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, document.getElementById('escape_unescape_char').value);" />
	<input name="escape_unescape_char" type="text" id="escape_unescape_char" value=":" size="1" maxlength="1" />
</p>
<p>
	<input type="button" name="button9" id="button10" value="encodeURI" onclick="var field = document.getElementById('escape_unescape_text'); field.value = encodeURI(field.value);" />
	<input type="button" name="button10" id="button11" value="decodeURI" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = decodeURI(field.value);" />
	<br/>
	<input type="button" name="button11" id="button12" value="encodeURIComponent" onclick="var field = document.getElementById('escape_unescape_text'); field.value = encodeURIComponent(field.value);" />
	<input type="button" name="button12" id="button13" value="decodeURIComponent" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = decodeURIComponent(field.value);" />
</p>
</div>
<p><span id="more-1078"></span></p>
<p>As you can see, there are several features&#8230; I&#8217;ll explain them one by one&#8230;</p>
<h4>Escape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_escape.asp">escape</a> Javascript function, which encodes the special characters (with some exceptions).</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello%2C%20this%20is%20a%20test</pre>
<h4>Escape (Forced)</h4>
<p>Encodes <strong>every</strong> character, no matter whether it is special or not. Ideal to make the strings not easily readable.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F%2C%20%74%68%69%73%20%69%73%20%61%20%74%65%73%74</pre>
<h4>Unescape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_unescape.asp">unescape</a> Javascript function, which decodes every encoded character. (The ones with the form %XX or %uXXXX).</p>
<p>Example 1:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello%2C%20this%20is%20a%20test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<p>Example 2:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F%2C%20%74%68%69%73%20%69%73%20%61%20%74%65%73%74</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<h4>Escape URL</h4>
<p>Encodes the special characters, but respecting the URL syntax. It&#8217;s not the same as the &#8220;encodeURI&#8221; option, since this latter one calls the <a href="http://www.w3schools.com/jsref/jsref_encodeURI.asp">encodeURI</a> Javascript function, which does not encode the following characters: </p>
<pre class="brush: plain; light: true; title: ; notranslate">; , / ? : @ &amp; = + $ - _ . ! ~ * ' ( ) #</pre>
<p>While this one just does not encode them where corresponding. Parameters, anchors and Unicode characters are supported&#8230;</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This%20is%20my%20file%20named%20ni%F1o%3A%20the%20named%20place.doc</pre>
<h4>Escape URL (Forced)</h4>
<p>Similar to &#8220;Escape URL&#8221;, but forcing the normal character encoding as much as possible (without including the host). Ideal to make URLs hard to read at first glance.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/%54%68%69%73%20%69%73%20%6D%79%20%66%69%6C%65%20%6E%61%6D%65%64%20%6E%69%F1%6F%3A%20%74%68%65%20%6E%61%6D%65%64%20%70%6C%61%63%65%2E%64%6F%63</pre>
<h4>Escape URL (Forced + Host)</h4>
<p>Similar to &#8220;Escape URL&#8221;, but forcing the normal character encoding as much as possible (host included). Ideal to make URLs hard to read at first glance.</p>
<p><strong>Note:</strong> this syntax is not supported in some browsers.</p>
<p><em>Supported browsers:</em> Internet Explorer, Google Chrome.<br />
<em>Unsupported browsers:</em> Firefox, Lynx.</p>
<p>In the case of Firefox, the string gets decoded correctly (if the URL is valid), but it doesn&#8217;t open, you have to open it again with the decoded address (selecting it and pressing Enter). If the host doesn&#8217;t contain any dot, &#8220;www.&#8221; y &#8220;.com&#8221; al added automatically.</p>
<p>If you have support information for any other browser, please tell me and I&#8217;ll add it.</p>
<p>Ejemplo:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://%77%77%77.%65%78%61%6D%70%6C%65.%63%6F%6D:84/%54%68%69%73%20%69%73%20%6D%79%20%66%69%6C%65%20%6E%61%6D%65%64%20%6E%69%F1%6F%3A%20%74%68%65%20%6E%61%6D%65%64%20%70%6C%61%63%65%2E%64%6F%63</pre>
<h4>Intelligent Escape</h4>
<p>This function is an intelligent version of &#8220;Escape&#8221;. It encodes the corresponding characters, but without re-encoding the already encoded data.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%22%20encoded%20string. And I added this part.</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%22%20encoded%20string.%20And%20I%20added%20this%20part.</pre>
<p>If we just pressed &#8220;Escape&#8221;, we would have received:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%2522%2520encoded%2520string.%20And%20I%20added%20this%20part.</pre>
<h4>Intelligent Unescape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_unescape.asp">unescape</a> Javascript function repeatedly until there&#8217;s nothing remaining to be decoded. Useful when a string was encoded several times.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%25%34%38%25%36%35%25%36%43%25%36%43%25%36%46</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello</pre>
<p>If we just pressed &#8220;Unescape&#8221;, we would have received:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F</pre>
<h4>Parse URL Parameters</h4>
<p>It breaks a URL into its corresponding parameters. The anchor is left without unescaping in the end.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:81/path/path/hello.php?a=3&amp;b=Good%20Morning&amp;c=El%20Ni%F1o#test-anchor</pre>
<pre class="brush: plain; light: true; title: ; notranslate">

http://www.example.com:81/path/path/hello.php

a=3
b=Good Morning
c=El Niño

#test-anchor
</pre>
<h4>Make URL with Parameters</h4>
<p>Reconstructs a URL based in the specified URL + parameters + anchor.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">

http://www.example.com:81/path/path/hello.php

a=3
b=Good Morning
c=El Niño

#test-anchor
</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:81/path/path/hello.php?a=3&amp;b=Good%20Morning&amp;c=El%20Ni%F1o#test-anchor</pre>
<h4>Escape +</h4>
<p>It encodes the + characters. They are not escaped by the other functions, with the exception of &#8220;Escape (Forced)&#8221;.</p>
<h4>Escape #</h4>
<p>It encodes the # characters. They are not escaped by the other functions, with the exception of &#8220;Escape (Forced)&#8221;.</p>
<h4>Escape: &lt;char&gt;</h4>
<p>It encodes the characters specified in the input box.</p>
<h4>encodeURI</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURI">encodeURI</a> Javascript function.</p>
<h4>decodeURI</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/decodeURI">decodeURI</a> Javascript function.</p>
<h4>encodeURIComponent</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURIComponent">encodeURIComponent</a> Javascript function.</p>
<h4>decodeURIComponent</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/decodeURIComponent">decodeURIComponent</a> Javascript function.</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">Intelligent Escaper-Unescaper is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p><br/></p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/intelligent-escaper-unescaper/intelligent-escaper-unescaper.js">Download Source Code v1.0</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/intelligent-escaper-unescaper/Intelligent_Escaper-Unescaper_1.0.zip">Download Local Version v1.0</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="decodificar unescape">decodificar unescape</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescape online">unescape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="XML unescape online">XML unescape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescape xml online">unescape xml online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="url escape online">url escape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescaper">unescaper</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="escape url online">escape url online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="intelligent url escaper">intelligent url escaper</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="online unescape">online unescape</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="url escape tool">url escape tool</a></li>
</ul>
<div class="shr-publisher-1078"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/tech/online-tools/convert-celsius-to-fahrenheit-online/' rel='bookmark' title='Convert Celsius to Fahrenheit Online'>Convert Celsius to Fahrenheit Online</a></li>
<li><a href='http://www.neoegm.com/tech/software/tools/youtube-downloader/' rel='bookmark' title='YouTube Downloader (tool to download YouTube videos) with source code'>YouTube Downloader (tool to download YouTube videos) with source code</a></li>
<li><a href='http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/' rel='bookmark' title='Google Analytics Visits Notification Tool'>Google Analytics Visits Notification Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Configure Hotmail, Live and MSN e-mail accounts to use them with POP3 in Outlook 2007 and Outlook 2003</title>
		<link>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/</link>
		<comments>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 07:00:07 +0000</pubDate>
		<dc:creator>NeoEGM</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Configure]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[SPA]]></category>
		<category><![CDATA[Step by Step]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1036</guid>
		<description><![CDATA[As you may know, Microsoft has decided some time ago to open its POP3 support for Hotmail, Live and MSN e-mail accounts&#8230; Here, you&#8217;ll find the needed information to make them work on your favorite e-mail client&#8230; First, I&#8217;ll leave the configuration data (that you can use in any e-mail client) and, then, I&#8217;ll explain [...]<strong>
Related posts:<ol>
<li><a href='http://www.neoegm.com/blog/culture-above-all/culture-above-all-2-miss-teen-usa-2007-south-carolina-answers-a-question/' rel='bookmark' title='Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question'>Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><img src="http://www.neoegm.com/wp-content/uploads/2009/08/vista-wow-windows-live-logo_256x2561-150x150.png" alt="vista-wow-windows-live-logo_256x256[1]" title="vista-wow-windows-live-logo_256x256[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1074" /></p>
<p>As you may know, Microsoft has decided some time ago to open its <strong>POP3 support</strong> for <strong>Hotmail</strong>, <strong>Live</strong> and <strong>MSN</strong> e-mail accounts&#8230;</p>
<p>Here, you&#8217;ll find the needed information to make them work on your favorite e-mail client&#8230;</p>
<p>First, I&#8217;ll leave the configuration data (that you can use in any e-mail client) and, then, I&#8217;ll explain step by step how to configure the accounts in Outlook&#8230;</p>
<p><strong>Server type:</strong> POP3<br />
<strong>Incoming mail server (POP3):</strong> pop3.live.com<br />
<strong>Outgoing mail server (SMTP):</strong> smtp.live.com<br />
<strong>Require logon using Secure Password Authentication (SPA):</strong> Yes.<br />
<strong>SMTP Authentication:</strong> Yes, use the same settings as the incoming mail server.<br />
<strong>POP3 Encrypted Connection:</strong> Yes.<br />
<strong>POP3 Port:</strong> 995<br />
<strong>SMTP Connection Encryption:</strong> Yes, TLS.<br />
<strong>SMTP Port:</strong> 25.</p>
<p><span id="more-1036"></span></p>
<p>These instructions are for Outlook 2007, but they also apply to Outlook 2003 with some little differences&#8230; Those differences will be explained where corresponding&#8230;</p>
<p>First of all, you must go to Tools->Account Settings&#8230; [<em>Outlook 2003:</em> it is Tools->E-Mail Accounts...]</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Menu.png" alt="Outlook_2007_Configure_Menu" title="Outlook_2007_Configure_Menu" width="381" height="373" class="aligncenter size-full wp-image-1047" /></p>
<p>Then, this screen will appear&#8230; (If you don&#8217;t have any account set up yet, it may open directly the New Account Wizard)&#8230; [<em>Outlook 2003:</em> You must choose "View or change existing e-mail accounts" for the following screen to appear, but you can directly choose "Add a new e-mail account".]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Account_Settings.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Account_Settings-300x248.png" alt="Outlook_2007_Configure_Account_Settings" title="Outlook_2007_Configure_Account_Settings" width="300" height="248" class="aligncenter size-medium wp-image-1043" /></a></p>
<p>You must press &#8220;New&#8221;&#8230; (You will not need to do this if the New Account Wizard opened automatically).</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service_Main.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service_Main-300x227.png" alt="Outlook_2007_Configure_Service_Main" title="Outlook_2007_Configure_Service_Main" width="300" height="227" class="aligncenter size-medium wp-image-1052" /></a></p>
<p>Here you must choose &#8220;Microsoft Exchange, POP3, IMAP or HTTP&#8221; and press Next&#8230; [<em>Outlook 2003:</em> just choose POP3.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Auto.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Auto-300x226.png" alt="Outlook_2007_Configure_Auto" title="Outlook_2007_Configure_Auto" width="300" height="226" class="aligncenter size-medium wp-image-1044" /></a></p>
<p>Then, check &#8220;Manually configure server settings or additional server types&#8221; and press Next&#8230; [<em>Outlook 2003:</em> this step is not needed.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service-300x227.png" alt="Outlook_2007_Configure_Service" title="Outlook_2007_Configure_Service" width="300" height="227" class="aligncenter size-medium wp-image-1051" /></a></p>
<p>Choose &#8220;Internet E-mail&#8221; and press Next&#8230; The Manual configuration screen will appear&#8230; Fill it with the following data: [<em>Outlook 2003:</em> the Manual configuration screen will appear directly without this step, just fill it. You must not check the "Require logon using Secure Password Authentication (SPA)" since it doesn't seem to be correctly supported for Outlook 2003.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Manually.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Manually-300x227.png" alt="Outlook_2007_Configure_Manually" title="Outlook_2007_Configure_Manually" width="300" height="227" class="aligncenter size-medium wp-image-1046" /></a></p>
<p>Of course, you must adapt for your account the following fields: &#8220;Your Name&#8221;, &#8220;E-Mail Address&#8221;, &#8220;User Name&#8221; and &#8220;Password&#8221;&#8230; If you don&#8217;t want to leave your password saved, just uncheck the &#8220;Remember password&#8221; checkbox&#8230;</p>
<p>Then, press &#8220;More Settings&#8221;&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_General.png" alt="Outlook_2007_Configure_More_General" title="Outlook_2007_Configure_More_General" width="415" height="459" class="aligncenter size-full wp-image-1049" /></p>
<p>Go to the &#8220;Outgoing Server&#8221; page and leave it configured like this:</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_Outgoing.png" alt="Outlook_2007_Configure_More_Outgoing" title="Outlook_2007_Configure_More_Outgoing" width="411" height="458" class="aligncenter size-full wp-image-1050" /></p>
<p>Then go to the Advanced page and leave it like this&#8230; [<em>Outlook 2003:</em> there is no outgoing server connection encryption type selection, just check both SSL boxes.]</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_Advanced.png" alt="Outlook_2007_Configure_More_Advanced" title="Outlook_2007_Configure_More_Advanced" width="416" height="458" class="aligncenter size-full wp-image-1048" /></p>
<p>If you don&#8217;t want the downloaded messages to be removed from your webmail account, just check &#8220;Leave a copy of messages on the server&#8221;&#8230;</p>
<p>After that, press OK and then, the &#8220;Test Account Settings&#8221; button&#8230; If everything was correctly configured, you&#8217;ll get the following screen: [<em>Outlook 2003:</em> there are more items, but they must all be checked in green.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Test.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Test-300x157.png" alt="Outlook_2007_Configure_Test" title="Outlook_2007_Configure_Test" width="300" height="157" class="aligncenter size-medium wp-image-1042" /></a></p>
<p>Finally, close it and press Next&#8230; The Congratulations screen will appear&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Finish.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Finish-300x226.png" alt="Outlook_2007_Configure_Finish" title="Outlook_2007_Configure_Finish" width="300" height="226" class="aligncenter size-medium wp-image-1045" /></a></p>
<p>And that&#8217;s all&#8230;</p>
<p>Enjoy it! <img src='http://www.neoegm.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar msn en outlook 2007">configurar msn en outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar outlook 2007 con msn">configurar outlook 2007 con msn</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="how to configure hotmail in outlook 2007">how to configure hotmail in outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar cuenta msn en outlook 2007">configurar cuenta msn en outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="hotmail outlook 2007 manual settings">hotmail outlook 2007 manual settings</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="how to configure hotmail in outlook 2003">how to configure hotmail in outlook 2003</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar outlook 2007 con hotmail manualmente">configurar outlook 2007 con hotmail manualmente</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="hotmail incoming mail server for outlook 2007">hotmail incoming mail server for outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="msn pop3 settings outlook 2003">msn pop3 settings outlook 2003</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configuracion manual hotmail">configuracion manual hotmail</a></li>
</ul>
<div class="shr-publisher-1036"></div>
<p><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --></p>
<strong><p>Related posts:<ol>
<li><a href='http://www.neoegm.com/blog/culture-above-all/culture-above-all-2-miss-teen-usa-2007-south-carolina-answers-a-question/' rel='bookmark' title='Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question'>Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

