<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Silenceway</title>
	
	<link>http://byronh.axul.net</link>
	<description>Notas y apuntes de a ratos...</description>
	<pubDate>Sun, 07 Mar 2010 06:49:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/silenceway" /><feedburner:info uri="silenceway" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Proteger el acceso al RSS de un blog de Wordpress</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/gnSkpi7zUAE/</link>
		<comments>http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 06:38:39 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programar]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[feed]]></category>

		<category><![CDATA[password]]></category>

		<category><![CDATA[protect]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=128</guid>
		<description><![CDATA[Hay varias formas de proteger el acceso al rss de un blog de wordpress, pero lo hacen redirigiendo a la página de inicio de sesión.
En algunos lectores de feed, esto no funciona ya que requieren autenticación por http para poder agregar el feed. Este plugin permite esta opción.

< ?php
/*
Plugin Name: Silencesoft Protect RSS
Plugin URI: http://www.silencesoft.net
Description: [...]]]></description>
			<content:encoded><![CDATA[<p>Hay varias formas de proteger el acceso al rss de un blog de wordpress, pero lo hacen redirigiendo a la página de inicio de sesión.<br />
En algunos lectores de feed, esto no funciona ya que requieren autenticación por http para poder agregar el feed. Este plugin permite esta opción.<br />
<code><br />
< ?php<br />
/*<br />
Plugin Name: Silencesoft Protect RSS<br />
Plugin URI: http://www.silencesoft.net<br />
Description: A plugin to protect rss feeds to only registered users<br />
Version: 1.0<br />
Author: Byron Herrera<br />
Author URI: http://byronh.axul.net</p>
<p>    Copyright 2010  Byron Herrera  (email : bh at axul dot net)</p>
<p>    This program is free software; you can redistribute it and/or modify<br />
    it under the terms of the GNU General Public License as published by<br />
    the Free Software Foundation; either version 2 of the License, or<br />
    (at your option) any later version.<br />
    This program is distributed in the hope that it will be useful,<br />
    but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
    GNU General Public License for more details.<br />
    You should have received a copy of the GNU General Public License<br />
    along with this program; if not, write to the Free Software<br />
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA<br />
*/</p>
<p>function sil_protect_rss() {<br />
	global $wpdb;<br />
  if (! is_feed()) return;<br />
  if (!isset($_SERVER['PHP_AUTH_USER'])) {<br />
    header('WWW-Authenticate: Basic realm="RSS Feeds"');<br />
    header('HTTP/1.1 401 Unauthorized');<br />
    echo 'This rss feeds requires authentication.';<br />
    exit;<br />
  } else {<br />
    if (user_pass_ok($_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW'])) {<br />
      //  can proceed normally<br />
    } else {<br />
      header('WWW-Authenticate: Basic realm="RSS Feeds"');<br />
      header('HTTP/1.1 401 Unauthorized');<br />
      echo 'Error on username or password.';<br />
      exit;<br />
    }<br />
  }<br />
}</p>
<p>add_action('pre_get_posts', 'sil_protect_rss');<br />
</code><br />
O puede descargarlo de: <a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/Wordpress/" title="(No click)">http://www.silencesoft.net/Wordpress/</a></code></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2010. |
<a href="http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/">Permalink</a> |
<a href="http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/&title=Proteger el acceso al RSS de un blog de Wordpress">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/feed/" rel="tag">feed</a>, <a href="http://byronh.axul.net/tag/password/" rel="tag">password</a>, <a href="http://byronh.axul.net/tag/protect/" rel="tag">protect</a><br/>
Post categories: <a href="http://byronh.axul.net/category/php/" title="Ver todas las entradas en PHP" rel="category tag">PHP</a>,  <a href="http://byronh.axul.net/category/programar/" title="Ver todas las entradas en Programar" rel="category tag">Programar</a>,  <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a>,  <a href="http://byronh.axul.net/category/wordpress/" title="Ver todas las entradas en wordpress" rel="category tag">wordpress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/gnSkpi7zUAE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2010/03/07/proteger-el-acceso-al-rss-de-un-blog-de-wordpress/</feedburner:origLink></item>
		<item>
		<title>Slitaz 2.0, una buena alternativa de Sistema Operativo</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/cdGny6IuTZg/</link>
		<comments>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 01:14:43 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[OS]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=127</guid>
		<description><![CDATA[Slitaz es una distribuciòn linux diseñada para equipos con poca capacidad que puede ser iniciado desde un cd o una usb.
El archivo que se descarga para ejecutar el sistema operativo completo pesa sòlo 29 megas y es bastante completo.
Actualmente lo estoy usando en un Compaq Evo N200 y corre muy bien, no es complicado de [...]]]></description>
			<content:encoded><![CDATA[<p>Slitaz es una distribuciòn linux diseñada para equipos con poca capacidad que puede ser iniciado desde un cd o una usb.<br />
El archivo que se descarga para ejecutar el sistema operativo completo pesa sòlo 29 megas y es bastante completo.<br />
Actualmente lo estoy usando en un Compaq Evo N200 y corre muy bien, no es complicado de instalar y tiene un amplio listado de paquetes para utilizar.<br />
Viene con so</p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/">Permalink</a> |
<a href="http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/&title=Slitaz 2.0, una buena alternativa de Sistema Operativo">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/linux/" rel="tag">Linux</a>, <a href="http://byronh.axul.net/tag/os/" rel="tag">OS</a>, <a href="http://byronh.axul.net/tag/sistemas-operativos/" rel="tag">Sistemas Operativos</a><br/>
Post categories: <a href="http://byronh.axul.net/category/linux/" title="Ver todas las entradas en Linux" rel="category tag">Linux</a>,  <a href="http://byronh.axul.net/category/os/" title="Ver todas las entradas en OS" rel="category tag">OS</a>,  <a href="http://byronh.axul.net/category/software/" title="Ver todas las entradas en Software" rel="category tag">Software</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/cdGny6IuTZg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/</feedburner:origLink></item>
		<item>
		<title>Tres (o Divagar)</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/70QDmQODj84/</link>
		<comments>http://byronh.axul.net/2009/10/10/tres-o-divagar/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 04:09:17 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Divagar]]></category>

		<category><![CDATA[Escritos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=126</guid>
		<description><![CDATA[Podría decir que soy el hombre más solo sobre la tierra, pero sería mentirme ya que siempre habrán otros en peores condiciones. Podría decir que soy el más triste y seria igual. Lo único que podría decir para consolarme es que siempre hay posibilidad de cambio, y eso sólo puede responderse con un suspiro.
(8-Oct-2009)

© Byron [...]]]></description>
			<content:encoded><![CDATA[<p>Podría decir que soy el hombre más solo sobre la tierra, pero sería mentirme ya que siempre habrán otros en peores condiciones. Podría decir que soy el más triste y seria igual. Lo único que podría decir para consolarme es que siempre hay posibilidad de cambio, y eso sólo puede responderse con un suspiro.</p>
<p>(8-Oct-2009)</p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/10/10/tres-o-divagar/">Permalink</a> |
<a href="http://byronh.axul.net/2009/10/10/tres-o-divagar/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/10/10/tres-o-divagar/&title=Tres (o Divagar)">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/divagar/" rel="tag">Divagar</a>, <a href="http://byronh.axul.net/tag/escritos/" rel="tag">Escritos</a><br/>
Post categories: <a href="http://byronh.axul.net/category/divagar/" title="Ver todas las entradas en Divagar" rel="category tag">Divagar</a>,  <a href="http://byronh.axul.net/category/escritos/" title="Ver todas las entradas en Escritos" rel="category tag">Escritos</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/70QDmQODj84" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/10/10/tres-o-divagar/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/10/10/tres-o-divagar/</feedburner:origLink></item>
		<item>
		<title>La torre inconclusa</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/ugnDlolr7O4/</link>
		<comments>http://byronh.axul.net/2009/09/25/la-torre-inconclusa/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 03:26:18 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Divagar]]></category>

		<category><![CDATA[Escritos]]></category>

		<category><![CDATA[historias]]></category>

		<category><![CDATA[relatos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=125</guid>
		<description><![CDATA[(25-Jul-2009)
Conocí a un hombre que me dijo: &#8220;Esa historia de la Torre de Babel no es como la cuentan.&#8221; Lo miré. &#8220;Sobran Dios y sus acciones&#8221;.
Estaba intrigado y él continuó: &#8220;Los hombres querían remontar las alturas y un grupo de ellos decidió hacer la torre. Pero para esta tarea se necesitaba de mucho apoyo y [...]]]></description>
			<content:encoded><![CDATA[<p>(25-Jul-2009)<br />
Conocí a un hombre que me dijo: &#8220;Esa historia de la Torre de Babel no es como la cuentan.&#8221; Lo miré. &#8220;Sobran Dios y sus acciones&#8221;.<br />
Estaba intrigado y él continuó: &#8220;Los hombres querían remontar las alturas y un grupo de ellos decidió hacer la torre. Pero para esta tarea se necesitaba de mucho apoyo y se permitió que cada hombre que quisiera pusiera una piedra para la construcción.<br />
&#8220;Las bases fueron sólidas porque fueron diseñadas por el primer grupo de hombres y se dieron unas reglas básicas para permitir a cada uno agregar su roca.<br />
&#8220;Hubo hombres sabios que conocían el arte de construir y añadieron buenas rocas, sólidas y firmes. Y otros, aprendices, que las pusieron de menor tamaño.<br />
&#8220;Otros que, pudiendo hacerlo, no preguntaron si su roca era la adecuada.<br />
&#8220;Otros de rocas muy buenas y muy bien puestas, que el daño de otros logró que en las noches fueran manipuladas y pulidas por otras personas.<br />
&#8220;El proceso lo dirigían los primeros hombres, pero no podían estar en todos lados vigilantes y confiaban de todos los constructores.<br />
&#8220;Cuando la torre iba bastante alta pasó lo esperado por otros desde el inicio; en el punto que se encontraban, seguir era peligroso y la construcción podría caer y matar a quienes en ella participaban.<br />
&#8220;Se decidió abandonarla.<br />
&#8220;El tiempo la hizo desaparecer.&#8221;<br />
Quien hablaba se quedó en silencio.<br />
Me retiré a buscar un vaso de agua, necesitaba quitarme el mal sabor de la boca.</p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/09/25/la-torre-inconclusa/">Permalink</a> |
<a href="http://byronh.axul.net/2009/09/25/la-torre-inconclusa/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/09/25/la-torre-inconclusa/&title=La torre inconclusa">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/divagar/" rel="tag">Divagar</a>, <a href="http://byronh.axul.net/tag/escritos/" rel="tag">Escritos</a>, <a href="http://byronh.axul.net/tag/historias/" rel="tag">historias</a>, <a href="http://byronh.axul.net/tag/relatos/" rel="tag">relatos</a><br/>
Post categories: <a href="http://byronh.axul.net/category/divagar/" title="Ver todas las entradas en Divagar" rel="category tag">Divagar</a>,  <a href="http://byronh.axul.net/category/escritos/" title="Ver todas las entradas en Escritos" rel="category tag">Escritos</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/ugnDlolr7O4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/09/25/la-torre-inconclusa/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/09/25/la-torre-inconclusa/</feedburner:origLink></item>
		<item>
		<title>20 trucos de facebook que es posible que no conozca</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/l83XgXqI-n4/</link>
		<comments>http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 02:44:24 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Otros]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[facebook]]></category>

		<category><![CDATA[trucos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=124</guid>
		<description><![CDATA[Traducción del artículo publicado en HongKiat.com titulado  20 Facebook Tips/Tricks You Might Not Know.
Los vínculos son los mismos publicados en el artículo.
Quedo debiendo las imágenes.
Las notas dentro del articulo las añado para aclarar algunas cosas.
&#8212;
Si usted ingresa a facebook diariamente u ocasionalmente se ha familiarizado con cosas como el agregar y borrar amigos; actualizar [...]]]></description>
			<content:encoded><![CDATA[<p>Traducción del artículo publicado en <a href="http://byronh.axul.net/go.php?http://www.hongkiat.com/" title="(31 hits)">HongKiat.com</a> titulado  <a href="http://byronh.axul.net/go.php?http://www.hongkiat.com/blog/20-facebook-tipstricks-you-might-not-know/" title="(47 hits)">20 Facebook Tips/Tricks You Might Not Know</a>.<br />
Los vínculos son los mismos publicados en el artículo.<br />
Quedo debiendo las imágenes.<br />
Las notas dentro del articulo las añado para aclarar algunas cosas.<br />
&#8212;</p>
<p>Si usted ingresa a facebook diariamente u ocasionalmente se ha familiarizado con cosas como el agregar y borrar amigos; actualizar su estado; muros y perfiles; explorar páginas y aplicaciones; etc, pero hay más.</p>
<p>Esta semana queremos cubrir algunas cosas interesantes que usted puede hacer en (o con) Facebook; incluso trucos que no están documentados o desconocidos para muchos.</p>
<p>1. %3</p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/">Permalink</a> |
<a href="http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/&title=20 trucos de facebook que es posible que no conozca">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/facebook/" rel="tag">facebook</a>, <a href="http://byronh.axul.net/tag/trucos/" rel="tag">trucos</a>, <a href="http://byronh.axul.net/tag/web/" rel="tag">Web</a><br/>
Post categories: <a href="http://byronh.axul.net/category/internet/" title="Ver todas las entradas en Internet" rel="category tag">Internet</a>,  <a href="http://byronh.axul.net/category/otros/" title="Ver todas las entradas en Otros" rel="category tag">Otros</a>,  <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/l83XgXqI-n4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/09/04/20-trucos-de-facebook-que-es-posible-que-no-conozca/</feedburner:origLink></item>
		<item>
		<title>Restringir acceso en Wordpress</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/NvcwVaZnLSc/</link>
		<comments>http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 14:55:04 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programar]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[required login]]></category>

		<category><![CDATA[restringir]]></category>

		<category><![CDATA[sesión]]></category>

		<category><![CDATA[users]]></category>

		<category><![CDATA[usuarios]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=123</guid>
		<description><![CDATA[Hay una forma muy simple de proteger el acceso a un blog de wordpress, haciendo requerido el inicio de sesión del usuario.
Este simple plugin hace la tarea:

< ?php
/*
Plugin Name: Blog Users Only Plugin
Plugin URI: http://www.silencesoft.net
Description: This plugin allows you to make your WordPress site accessible to logged in and registered users only.
Author: Byron Herrera
Version: 0.1
Author [...]]]></description>
			<content:encoded><![CDATA[<p>Hay una forma muy simple de proteger el acceso a un blog de wordpress, haciendo requerido el inicio de sesión del usuario.<br />
Este simple plugin hace la tarea:</p>
<p><code><br />
< ?php<br />
/*<br />
Plugin Name: Blog Users Only Plugin<br />
Plugin URI: http://www.silencesoft.net<br />
Description: This plugin allows you to make your WordPress site accessible to logged in and registered users only.<br />
Author: Byron Herrera<br />
Version: 0.1<br />
Author URI: http://byronh.axul.net/<br />
License: Free.<br />
Warranties: None.<br />
*/</p>
<p>function registered_subscribers_only() {<br />
	// Checks if a user is logged in, if not redirects them to the login page<br />
	if (!current_user_can('level_0'))<br />
	{<br />
		nocache_headers();<br />
		header("HTTP/1.1 302 Moved Temporarily");<br />
		header('Location: ' . get_settings('siteurl') . '/wp-login.php?action='); // logout<br />
		header("Status: 302 Moved Temporarily");<br />
		exit();<br />
	}<br />
}</p>
<p>if( $pagenow != 'wp-login.php' &#038;&#038; $pagenow != 'wp-register.php' ) add_action('template_redirect', 'registered_subscribers_only');<br />
</code></code></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/">Permalink</a> |
<a href="http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/&title=Restringir acceso en Wordpress">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/required-login/" rel="tag">required login</a>, <a href="http://byronh.axul.net/tag/restringir/" rel="tag">restringir</a>, <a href="http://byronh.axul.net/tag/sesion/" rel="tag">sesión</a>, <a href="http://byronh.axul.net/tag/users/" rel="tag">users</a>, <a href="http://byronh.axul.net/tag/usuarios/" rel="tag">usuarios</a>, <a href="http://byronh.axul.net/tag/wordpress/" rel="tag">wordpress</a><br/>
Post categories: <a href="http://byronh.axul.net/category/php/" title="Ver todas las entradas en PHP" rel="category tag">PHP</a>,  <a href="http://byronh.axul.net/category/programar/" title="Ver todas las entradas en Programar" rel="category tag">Programar</a>,  <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a>,  <a href="http://byronh.axul.net/category/wordpress/" title="Ver todas las entradas en wordpress" rel="category tag">wordpress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/NvcwVaZnLSc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/08/31/restringir-acceso-en-wordpress/</feedburner:origLink></item>
		<item>
		<title>Publicado Formpress 0.4 pre</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/_ReSPX0Sj7Y/</link>
		<comments>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 18:09:48 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programar]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[formpress]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=122</guid>
		<description><![CDATA[Después de dedicarle tiempo a la actualización y a añadirle nuevas características al plugin Formpress de Wordpress, hoy subí esta versión en línea para las primeras pruebas.
Falta agregarle bastante documentación, pero aún estoy trabajando en código así que cuando termine me pondré a organizar toda esa parte.
Igual tiene por ahí algunos &#8220;echo&#8221; que no debería, [...]]]></description>
			<content:encoded><![CDATA[<p>Después de dedicarle tiempo a la actualización y a añadirle nuevas características al plugin Formpress de Wordpress, hoy subí esta versión en línea para las primeras pruebas.<br />
Falta agregarle bastante documentación, pero aún estoy trabajando en código así que cuando termine me pondré a organizar toda esa parte.<br />
Igual tiene por ahí algunos &#8220;echo&#8221; que no debería, pero estoy en depuración <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<a href="http://byronh.axul.net/go.php?http://wordpress.org/support/topic/292268?replies=1" title="(39 hits)">En Wordpress</a><br />
<a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/Wordpress/formpress-0.4pre.zip" title="(19 hits)">Zip</a></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/">Permalink</a> |
<a href="http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/&title=Publicado Formpress 0.4 pre">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/formpress/" rel="tag">formpress</a>, <a href="http://byronh.axul.net/tag/php/" rel="tag">PHP</a>, <a href="http://byronh.axul.net/tag/plugin/" rel="tag">plugin</a>, <a href="http://byronh.axul.net/tag/wordpress/" rel="tag">wordpress</a><br/>
Post categories: <a href="http://byronh.axul.net/category/php/" title="Ver todas las entradas en PHP" rel="category tag">PHP</a>,  <a href="http://byronh.axul.net/category/programar/" title="Ver todas las entradas en Programar" rel="category tag">Programar</a>,  <a href="http://byronh.axul.net/category/software/" title="Ver todas las entradas en Software" rel="category tag">Software</a>,  <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a>,  <a href="http://byronh.axul.net/category/wordpress/" title="Ver todas las entradas en wordpress" rel="category tag">wordpress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/_ReSPX0Sj7Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/</feedburner:origLink></item>
		<item>
		<title>Mitos y verdades de los “Social Media”</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/Liz7WaHyfL4/</link>
		<comments>http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 02:04:29 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Periodismo]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=121</guid>
		<description><![CDATA[Un interesante artículo escrito por Lina Ceballos para Pulso Social:
Vamos por las 100 verdades y mentiras de los Social Media.
Van 55 y la idea es llegar a los 100, para que entre todos construyamos la lista. 

© Byron H for Silenceway, 2009. &#124;
Permalink &#124;
No comment &#124;
Add to
del.icio.us

Post tags: Internet, Periodismo, Social Media, Web
Post categories: Internet, [...]]]></description>
			<content:encoded><![CDATA[<p>Un interesante artículo escrito por <a href="http://byronh.axul.net/go.php?http://pulsosocial.com/author/linaceballos/" title="(93 hits)">Lina Ceballos</a> para <a href="http://byronh.axul.net/go.php?http://pulsosocial.com/" title="(62 hits)">Pulso Social</a>:<br />
<a href="http://byronh.axul.net/go.php?http://pulsosocial.com/2009/06/03/vamos-por-las-100-verdades-y-mentiras-de-los-social-media/" title="(84 hits)">Vamos por las 100 verdades y mentiras de los Social Media</a>.<br />
Van 55 y la idea es llegar a los 100, para que entre todos construyamos la lista. <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/">Permalink</a> |
<a href="http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/&title=Mitos y verdades de los &#8220;Social Media&#8221;">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/internet/" rel="tag">Internet</a>, <a href="http://byronh.axul.net/tag/periodismo/" rel="tag">Periodismo</a>, <a href="http://byronh.axul.net/tag/social-media/" rel="tag">Social Media</a>, <a href="http://byronh.axul.net/tag/web/" rel="tag">Web</a><br/>
Post categories: <a href="http://byronh.axul.net/category/internet/" title="Ver todas las entradas en Internet" rel="category tag">Internet</a>,  <a href="http://byronh.axul.net/category/1/" title="Ver todas las entradas en Periodismo" rel="category tag">Periodismo</a>,  <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/Liz7WaHyfL4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/06/05/mitos-y-verdaes-de-los-social-media/</feedburner:origLink></item>
		<item>
		<title>Soluciones con Javascript para problemas con CSS</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/bAFYVntAsGA/</link>
		<comments>http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/#comments</comments>
		<pubDate>Thu, 07 May 2009 23:10:34 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=120</guid>
		<description><![CDATA[8  javascript solutions to common css problems es un artículo que nos muestra como usando javascript podemos solucionar algunos problemas que se tienen con css.
Las ocho soluciones son:
- Fondos transparentes con JQuery
- Incluir diferentes clases dependiendo del navegador
- Columnas de igual alto con JQuery
- Esquinas redondeadas para todos los navegadores
- Arreglando el problema &#8216;overflow&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://byronh.axul.net/go.php?http://www.catswhocode.com/blog/8-javascript-solutions-to-common-css-problems" title="(59 hits)">8  javascript solutions to common css problems</a> es un artículo que nos muestra como usando javascript podemos solucionar algunos problemas que se tienen con css.<br />
Las ocho soluciones son:<br />
- Fondos transparentes con JQuery<br />
- Incluir diferentes clases dependiendo del navegador<br />
- Columnas de igual alto con JQuery<br />
- Esquinas redondeadas para todos los navegadores<br />
- Arreglando el problema &#8216;overflow&#8217; en Internet Exlporer<br />
- Alineación Vertical<br />
- Precarga de imágenes<br />
- Matar el IE6<br />
Todas las técnicas son interesantes y fáciles de implementar.<br />
 <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/">Permalink</a> |
<a href="http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/&title=Soluciones con Javascript para problemas con CSS">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/css/" rel="tag">CSS</a>, <a href="http://byronh.axul.net/tag/javascript/" rel="tag">javascript</a>, <a href="http://byronh.axul.net/tag/web/" rel="tag">Web</a><br/>
Post categories: <a href="http://byronh.axul.net/category/web/" title="Ver todas las entradas en Web" rel="category tag">Web</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/bAFYVntAsGA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/05/07/soluciones-con-javascript-para-problemas-con-css/</feedburner:origLink></item>
		<item>
		<title>Dos (o Reflexión)</title>
		<link>http://feedproxy.google.com/~r/silenceway/~3/GyXvo-uhlfc/</link>
		<comments>http://byronh.axul.net/2009/02/22/dos-o-reflexion/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:49:09 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
		
		<category><![CDATA[Divagar]]></category>

		<category><![CDATA[Escritos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=119</guid>
		<description><![CDATA[Me he dado cuenta que no sé nada (creo que siempre lo he sabido). Todo lo que respondo suelen ser retazos de frases oídas en conversaciones, que armo como un rompecabezas en el que manipulo las fichas para que cacen sin problemas. ¿Seré un sabio? ¿Seré un necio? Puedo decirme muchas otras cosas o hacerme [...]]]></description>
			<content:encoded><![CDATA[<p>Me he dado cuenta que no sé nada (creo que siempre lo he sabido). Todo lo que respondo suelen ser retazos de frases oídas en conversaciones, que armo como un rompecabezas en el que manipulo las fichas para que cacen sin problemas. ¿Seré un sabio? ¿Seré un necio? Puedo decirme muchas otras cosas o hacerme parecer como un tonto o un simple aprendiz. Al final debo parecer estar en el nivel del entorno en que me muevo; no sé si mintiendo, rehaciendo o sólo repitiendo lo que alguien ya me ha dicho.<br />
<em>(15-feb-2009)</em></p>
<hr />
<p><small>© Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/02/22/dos-o-reflexion/">Permalink</a> |
<a href="http://byronh.axul.net/2009/02/22/dos-o-reflexion/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/02/22/dos-o-reflexion/&title=Dos (o Reflexión)">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/divagar/" rel="tag">Divagar</a>, <a href="http://byronh.axul.net/tag/escritos/" rel="tag">Escritos</a><br/>
Post categories: <a href="http://byronh.axul.net/category/divagar/" title="Ver todas las entradas en Divagar" rel="category tag">Divagar</a>,  <a href="http://byronh.axul.net/category/escritos/" title="Ver todas las entradas en Escritos" rel="category tag">Escritos</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/silenceway/~4/GyXvo-uhlfc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/02/22/dos-o-reflexion/feed/</wfw:commentRss>
		<feedburner:origLink>http://byronh.axul.net/2009/02/22/dos-o-reflexion/</feedburner:origLink></item>
	</channel>
</rss>
