<?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>JomPeich d&#039;er Bisente &#187; WordPress</title> <atom:link href="http://www.bisente.com/blog/category/linuxadas/wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://www.bisente.com</link> <description>Este es mi blog. Hay otros muchos pero este es el mío.</description> <lastBuildDate>Mon, 23 Jan 2012 06:37:00 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Depurando problemas con nginx</title><link>http://www.bisente.com/blog/2010/03/04/depurando-problemas-con-nginx/</link> <comments>http://www.bisente.com/blog/2010/03/04/depurando-problemas-con-nginx/#comments</comments> <pubDate>Thu, 04 Mar 2010 06:51:04 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[daemontools]]></category> <category><![CDATA[English]]></category> <category><![CDATA[lighttpd]]></category> <category><![CDATA[Linuxadas]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[análisis]]></category> <category><![CDATA[CLOSE_WAIT]]></category> <category><![CDATA[conexión]]></category> <category><![CDATA[connection]]></category> <category><![CDATA[debug]]></category> <category><![CDATA[depurar]]></category> <category><![CDATA[netstat]]></category> <category><![CDATA[nginx]]></category> <category><![CDATA[problemas]]></category> <category><![CDATA[problems]]></category> <category><![CDATA[script]]></category> <category><![CDATA[servidor]]></category><guid isPermaLink="false">http://www.bisente.com/?p=1360</guid> <description><![CDATA[Last week I&#8217;ve been debugging a problem I had with this site&#8217;s nginx server: from time to time it hanged and I had to restart the process. Some time ago I wrote a little script that checked if it was running &#8230; <a href="http://www.bisente.com/blog/2010/03/04/depurando-problemas-con-nginx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p>Last week I&#8217;ve been debugging a problem I had with this site&#8217;s <a title="nginx" href="http://wiki.nginx.org">nginx</a> server: from time to time it hanged and I had to restart the process. Some time ago I wrote a little script that checked if it was running OK and restarted it otherwise, but anyway that wasn&#8217;t a real solution.</p><p>So I spent some days really looking into it and asking for support and reporting my findings to the <a title="nginx mailing list" href="http://nginx.org/pipermail/nginx/">nginx mailing list</a>. One useful tip I got there was enabling the &#8220;debug&#8221; mode on the <a title="nginx error_log" href="http://wiki.nginx.org/NginxHttpMainModule#error_log">error log</a>, which shows full traces of the processes (including their PID) as they&#8217;re processing the request, the rewrites, upstreams, etc.</p><div class="codesnip-container" >error_log /var/log/nginx/$host-error.log debug;</div><p>With this extended log and the PID of the process malfunctioning, it&#8217;s quite easy finding out what that process was doing right before hanging. In order to find out the PID of the hanged processes, I extended my check-reboot script to log some generic system metrics right before restarting nginx: netstat -nap (which shows the PID), ps, vmstat, etc.</p><div class="codesnip-container" ><pre>#!/bin/sh

TIMEOUT=20
CHECK=http://localhost/wp-admin/
LOG=/var/log/checkWeb/checkWeb-$(date +%Y%m%d).log
LOGR=/var/log/checkWeb/restart-$(date +%Y%m%d).log
TMP=/tmp/checkWeb-$RANDOM

if ! wget -t 1 -o /dev/null -O /dev/nul -T $TIMEOUT $CHECK
then
echo "ERROR, restarting nginx"
echo "** RESTARTING **" &gt;&gt; $TMP
date &gt;&gt; $TMP
echo "- CLOSE_WAIT:" &gt;&gt; $TMP
netstat -nap | grep -c CLOSE_WAIT &gt;&gt; $TMP
echo "- vmstat" &gt;&gt; $TMP
vmstat 1 5 &gt;&gt; $TMP
echo "- free" &gt;&gt; $TMP
free &gt;&gt; $TMP
echo "- ps" &gt;&gt; $TMP
ps aux &gt;&gt; $TMP
echo "- netstat" &gt;&gt; $TMP
netstat -nap &gt;&gt; $TMP
echo "" &gt;&gt; $TMP
echo "" &gt;&gt; $TMP

#       pkill -9 -f php-cgi
pkill -9 -f nginx
sleep 1s
/etc/init.d/nginx start

cat $TMP
cat $TMP &gt;&gt; $LOG
date &gt;&gt; $LOGR
fi

rm -rf $TMP</pre></div><p>This way, each time localhost/wp-admin was unresponsive (I was debugging a WP site), besides restarting nginx I was getting a lot of system info. With time I got to realize that nginx processes were not actually hanging, but some of their sockets got on the CLOSE_WAIT state forever until the process was restarted. Looking for the PID of those processes according to netstat on the error log, the last request they were processing before getting to the CLOSE_WAIT state was always the same: on my blog I have some examples of how running servers with <a title="daemontools" href="http://www.bisente.com/blog/category/linuxadas/daemontools/">daemontools</a>; daemontools uses named pipes (FIFOs), which can become kind of black holes if there&#8217;s no process feeding them; when nginx hit one of these FIFOs, it hanged.</p><p>Funny thing is that I never had this problem with either Apache nor lighttpd. But anyway the problem is not nginx but those FIFOs which shouldn&#8217;t really be there. I removed them and have had no hanged processes in five days, while before this nginx was restarting 3-4 times a day.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2010/03/04/depurando-problemas-con-nginx/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Probando nginx</title><link>http://www.bisente.com/blog/2009/09/03/probando-nginx/</link> <comments>http://www.bisente.com/blog/2009/09/03/probando-nginx/#comments</comments> <pubDate>Thu, 03 Sep 2009 16:52:18 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[lighttpd]]></category> <category><![CDATA[Linuxadas]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Apache]]></category> <category><![CDATA[lighty]]></category> <category><![CDATA[nginx]]></category> <category><![CDATA[servidor]]></category> <category><![CDATA[VPS]]></category> <category><![CDATA[web]]></category><guid isPermaLink="false">http://www.bisente.com/?p=1243</guid> <description><![CDATA[Estoy cacharreando con nginx. El nuevo servidor virtual donde tengo el dominio está un poco justo, con la migración lo dejé con Apache en vez de volver a lighttpd y ahora estoy probando alternativas. Como aparte de configurar el servidor &#8230; <a href="http://www.bisente.com/blog/2009/09/03/probando-nginx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Estoy cacharreando con <a title="nginx" href="http://nginx.net/">nginx</a>. El nuevo servidor virtual donde tengo el dominio está un poco justo, con la migración lo dejé con Apache en vez de volver a <a title="lighttpd" href="http://www.bisente.com/blog/category/linuxadas/lighttpd/">lighttpd</a> y ahora estoy probando alternativas.</p><p>Como aparte de configurar el servidor y el PHP con fast-cgi hay que convertir todos los rewrites del Apache (wpmu y super-cache) al formato de nginx, es posible que el blog haga cosas raras, no se actualice debidamente, algunas páginas no vayan bien, pete, no acepte comentarios, o cobre consciencia de sí mismo y decida matar a todos los humanos. YMMV.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2009/09/03/probando-nginx/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Blog actualizado a WPMU 2.7 más algunos plugins</title><link>http://www.bisente.com/blog/2009/02/01/blog-actualizado-a-wpmu-27-mas-algunos-plugins/</link> <comments>http://www.bisente.com/blog/2009/02/01/blog-actualizado-a-wpmu-27-mas-algunos-plugins/#comments</comments> <pubDate>Sun, 01 Feb 2009 11:58:02 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[last.fm]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Flickr]]></category> <category><![CDATA[google reader]]></category> <category><![CDATA[Picassa]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/?p=955</guid> <description><![CDATA[Acabo de actualizar los blogs a WordPress MU 2.7. Esperemos que no se haya roto nada. XD Además he aprovechado para instalar algún plugin nuevo, porque llevo unos días jugando con Twitter (aún no me había subido a ese carro): &#8230; <a href="http://www.bisente.com/blog/2009/02/01/blog-actualizado-a-wpmu-27-mas-algunos-plugins/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Acabo de actualizar los blogs a <a title="WordPress MU" href="http://mu.wordpress.org/">WordPress MU</a> 2.7. Esperemos que no se haya roto nada. XD</p><p>Además he aprovechado para instalar algún plugin nuevo, porque llevo unos días jugando con Twitter (aún no me había subido a ese carro):</p><ul><li><a title="TwitMe" href="http://www.phpvrouwen.nl/twitme/">Twitme</a>: genera un post en Twitter cada vez que se publica algo en el blog.</li><li><a title="Twitter for WordPress" href="http://rick.jinlabs.com/code/twitter/">Twitter for WordPress</a>: añade un widget con los últimos posts en Twitter.</li><li><a title="LifeStream WordPress plugin" href="http://www.ibegin.com/labs/wp-lifestream/">LifeStream</a>: genera <a title="LifeStream de Bisente" href="http://www.bisente.com/lifestream/">una página</a> en la que puedes agregar información de varios sitios, entre otros last.fm, facebook, picassa, flickr, google reader&#8230; es decir, agrega toda tu actividad on-line en un único sitio. Más o menos lo que comenté que venía haciendo yo con facebook, pero ahora en el blog.</li></ul><p><strong>UPDATE:</strong> he desactivado Twitme, no me ha acabado de gustar. Una cosa es el blog y otra twitter, y aparte teniéndolo todo integrado (twitter en el blog, y el blog y twitter en facebook) era muy redundante.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2009/02/01/blog-actualizado-a-wpmu-27-mas-algunos-plugins/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Integración WordPress/Facebook</title><link>http://www.bisente.com/blog/2009/01/13/integracion-wordpress-facebook/</link> <comments>http://www.bisente.com/blog/2009/01/13/integracion-wordpress-facebook/#comments</comments> <pubDate>Tue, 13 Jan 2009 19:02:55 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[Frikadas]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Adium]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Facebook Connector]]></category> <category><![CDATA[integración]]></category> <category><![CDATA[Pidgin]]></category> <category><![CDATA[Simplaris Blogcast]]></category> <category><![CDATA[Wordbook]]></category><guid isPermaLink="false">http://www.bisente.com/?p=935</guid> <description><![CDATA[Llevaba bastante tiempo intentando integrar mi blog en WordPress y la cuenta de Friendface&#8230;digoooo&#8230; Facebook. El tema es que no entro tanto como pueda parecer en Facebook aunque el muro no pare de moverse: los enlaces compartidos son a través &#8230; <a href="http://www.bisente.com/blog/2009/01/13/integracion-wordpress-facebook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Llevaba bastante tiempo intentando integrar mi blog en WordPress y la cuenta de <a title="Friendface" href="http://www.friendface.org/pg/profile/moss.m">Friendface</a>&#8230;digoooo&#8230; Facebook. El tema es que no entro tanto como pueda parecer en Facebook aunque el muro no pare de moverse: los enlaces compartidos son a través de Google Reader, también tengo integrada la cuenta de last.fm, al chat accedo por <a title="Adium" href="http://www.adiumx.com/">Adium</a> (Mac) o <a title="plugin facebook pidgin" href="http://code.google.com/p/pidgin-facebookchat/">Pidgin</a> (Linux) que además permiten cambiar el estado de Facebook&#8230; al final uso Facebook como &#8220;agregador de actividad on-line&#8221; más que otra cosa. Para contar a los cuatro vientos mis pajas mentales ya tengo el blog y me resulta mucho más cómodo.</p><p>El problema era cómo integrar los posts del blog en Facebook. Durante un tiempo usé la aplicación de Facebook <a title="Simplaris Blogcast" href="http://www.facebook.com/profile.php?id=613839960&amp;ref=name#/apps/application.php?sid=d72aa7f35afa993feecf7292eac87211&amp;id=2344132808&amp;ref=s">Simplaris Blogcast</a>, pero tenía dos problemas:</p><ul><li>no sé por qué no trataba bien acentos, eñes, etc. que salían como símbolos raros. Algún problema de encodings entre la aplicación y el blog.</li><li>tiene un nº límite de artículos, y cuando los llenas tienes que borrar alguno a mano. Quería algo completamente automático y ésta limitación me obligaba a hacer limpieza periódicamente.</li></ul><p>Otra cosa que probé es con la utilidad de importación de RSS nativa de Facebook: los artículos se importan como notas, y eso no me gustaba por dos razones:</p><ul><li>contenido duplicado en el blog y en Facebook. En Facebook quiero una reseña que apunte al blog.</li><li>comentarios también duplicados. En realidad, dos sitios independientes donde comentar: en las notas de Facebook y en el blog.</li></ul><p>Hay otras aplicaciones tipo Simplaris, pero todas tenían distintas combinaciones de los problemas que encontré con estas dos que he comentado.</p><p>La semana pasada estuve un rato peleándome con <a title="Wordbook" href="http://www.facebook.com/apps/application.php?sid=d72aa7f35afa993feecf7292eac87211&amp;id=3353257731&amp;ref=s">Wordbook</a> hasta que lo hice funcionar. Wordbook se diferencia de las otras dos alternativas en que, en lugar de ser simplemente una aplicación en Facebook que lee el RSS del blog periódicamente (con lo que la publicación no es inmediata), tiene una parte de aplicación en Facebook y un plugin para WordPress, de forma que en el momento que publicas un artículo en el blog, el plugin se conecta a la aplicación y se publica inmediatamente en Facebook. Además hace justo lo que quería: una reseña en el muro y una caja con la lista de los últimos artículos, en ambos casos con enlaces al blog con lo que ni el contenido ni los comentarios &#8220;se desperdigan&#8221; entre dos sitios.</p><p>El único problema es que no me acababa de funcionar: no publicaba y la configuración se reseteaba tras cada publicación, algo que <a title="wordbook keeps resetting" href="http://www.facebook.com/apps/application.php?sid=d72aa7f35afa993feecf7292eac87211&amp;id=3353257731&amp;ref=s#/topic.php?uid=3353257731&amp;topic=5915">también le pasaba a más gente</a>. Investigando vi que era porque la comunicación plugin-&gt;app es a traves de JSON y no se &#8220;sanitizan&#8221; las cadenas eliminando saltos de línea. La solución fue tan sencilla como modificar las líneas 1127 y 1128 de wordbook.php (en el plugin para WordPress) para eliminar los saltos de línea con la función nl2br:</p><div class="codesnip-container" >&#8216;post_title&#8217; =&gt; nl2br($post_title),<br /> &#8216;post_excerpt&#8217; =&gt; wordbook_post_excerpt(nl2br($post_content),</div><p>Aparte, también he instalado el plugin <a title="Facebook Connector" href="http://www.sociable.es/facebook-connect/">Facebook Connector</a>, que lo que hace es habilitar una especie de &#8220;single sign-on&#8221; basado en Facebook: integra tu cuenta de Facebook en el blog para que no tengas que logarte en un sitio u otro a la hora de hacer comentarios. La verdad para un blog personal como el mío me parece una chorrada pero total, para lo que me cuesta&#8230; <img src='http://www.bisente.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> para una página en plan comunidad puede estar muy bien.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2009/01/13/integracion-wordpress-facebook/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Parches para actualizar a wpmu 2.6 final</title><link>http://www.bisente.com/blog/2008/08/03/parches-para-actualizar-a-wpmu-26-final/</link> <comments>http://www.bisente.com/blog/2008/08/03/parches-para-actualizar-a-wpmu-26-final/#comments</comments> <pubDate>Sun, 03 Aug 2008 16:19:23 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[English]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[actualización]]></category> <category><![CDATA[diff]]></category> <category><![CDATA[parche]]></category> <category><![CDATA[WordPress MU]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/?p=538</guid> <description><![CDATA[Las week the final version of WordPress MU 2.6 was released. I&#8217;ve made two diff files this time, one for upgrading from the previous stable release (1.5.1) and one from the RC1: wpmu-1.5.1-2.6.diff wpmu-2.6rc1-2.6.diff]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p>Las week <a title="wpmu 2.6" href="http://ocaoimh.ie/2008/07/28/wordpress-mu-26/">the final version of WordPress MU 2.6</a> was released. I&#8217;ve made two diff files this time, one for upgrading from the previous stable release (1.5.1) and one from the RC1:</p><ul><li><a title="wpmu 1.5.1 to 2.6" href="http://www.bisente.com/programas/wordpress/wpmu/wpmu-1.5.1-2.6.diff">wpmu-1.5.1-2.6.diff</a></li><li><a title="wpmu 2.6rc1 to 2.6" href="http://www.bisente.com/programas/wordpress/wpmu/wpmu-2.6rc1-2.6.diff">wpmu-2.6rc1-2.6.diff</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/08/03/parches-para-actualizar-a-wpmu-26-final/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Blog actualizado otra vez, a wpmu 2.6rc1</title><link>http://www.bisente.com/blog/2008/07/19/blog-actualizado-otra-vez-a-wpmu-26rc1/</link> <comments>http://www.bisente.com/blog/2008/07/19/blog-actualizado-otra-vez-a-wpmu-26rc1/#comments</comments> <pubDate>Sat, 19 Jul 2008 17:43:03 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[English]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[cifrado]]></category> <category><![CDATA[https]]></category> <category><![CDATA[Seguridad]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[WordPress MU]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/?p=488</guid> <description><![CDATA[After yesterday&#8217;s upgrade to 1.5.1 I&#8217;ve just realized that there had been released a 2.6 RC already, allowing among other things to access both the blog and specially the admin area over HTTPS. So, the obligatory upgrade patch: wpmu-1_5_1-2_6rc1.diff]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p><a title="Blog actualizado a wpmu 1.5.1" href="http://www.bisente.com/blog/2008/07/18/blog-actualizado-a-wpmu-151-y-parche/">After yesterday&#8217;s upgrade to 1.5.1</a> I&#8217;ve just realized that there had been released <a title="wpmu 2.6rc1" href="http://mu.wordpress.org/forums/topic.php?id=8885">a 2.6 RC already</a>, allowing among other things to access both the blog and specially the admin area over <a title="WordPress 2.6 over SSL" href="http://boren.nu/archives/2008/07/14/ssl-and-cookies-in-wordpress-26/">HTTPS</a>.</p><p>So, the obligatory upgrade patch: <a title="WordPress MU 1.5.1 to 2.6-RC1" href="http://www.bisente.com/programas/wordpress/wpmu/wpmu-1_5_1-2_6rc1.diff">wpmu-1_5_1-2_6rc1.diff</a></p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/07/19/blog-actualizado-otra-vez-a-wpmu-26rc1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Blog actualizado a wpmu 1.5.1 y parche</title><link>http://www.bisente.com/blog/2008/07/18/blog-actualizado-a-wpmu-151-y-parche/</link> <comments>http://www.bisente.com/blog/2008/07/18/blog-actualizado-a-wpmu-151-y-parche/#comments</comments> <pubDate>Fri, 18 Jul 2008 19:15:30 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[English]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[diff]]></category> <category><![CDATA[patch]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/?p=475</guid> <description><![CDATA[I&#8217;ve just upgraded the blog to WordPress MU 1.5.1. For a couple of days some features may not work as expected, due to plugin incompatibilities, new options, etc. I&#8217;ve made a .diff patch file to make the upgrade process from &#8230; <a href="http://www.bisente.com/blog/2008/07/18/blog-actualizado-a-wpmu-151-y-parche/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p>I&#8217;ve just upgraded the blog to <a title="WordPress MU" href="http://mu.wordpress.org/">WordPress MU</a> 1.5.1. For a couple of days some features may not work as expected, due to plugin incompatibilities, new options, etc.</p><p>I&#8217;ve made a .diff patch file to make the upgrade process from the release I was using before (1.3.3) a little bit easier. It&#8217;s available <a title="wpmu 1.3.3 to 1.5.1 patch file" href="http://www.bisente.com/programas/wordpress/wpmu/wpmu-1_3_3-1_5_1.diff">here</a> in case anyone finds it useful. If you may find any problems after the upgrade, be sure to disable and remove all plugins, specially from the mu-plugins folder, and proceed to install them one by one.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/07/18/blog-actualizado-a-wpmu-151-y-parche/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Previos de imágenes del tamaño que quieras en WordPress</title><link>http://www.bisente.com/blog/2008/02/23/new-title-in-spanish-5/</link> <comments>http://www.bisente.com/blog/2008/02/23/new-title-in-spanish-5/#comments</comments> <pubDate>Sat, 23 Feb 2008 15:57:06 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[imágenes]]></category> <category><![CDATA[miniatura]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[tamaño]]></category> <category><![CDATA[thumbnail]]></category><guid isPermaLink="false">http://www.bisente.com/blog/2008/02/23/new-title-in-spanish-5/</guid> <description><![CDATA[One thing I always missed in WordPress is the ability to select the size of the thumbnail that&#8217;s generated every time you upload a picture to your blog. The default size is quite small, sometimes you may want it, for &#8230; <a href="http://www.bisente.com/blog/2008/02/23/new-title-in-spanish-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p>One thing I always missed in WordPress is the ability to select the size of the thumbnail that&#8217;s generated every time you upload a picture to your blog. The default size is quite small, sometimes you may want it, for example, to be as wide as the page, without needing to scale the original pic down in HTML with width=&#8221;xx&#8221;.</p><p>I&#8217;ve found today the <a href="http://www.anieto2k.com/2007/07/06/imagescontrolsize-somete-tus-miniaturas-a-voluntad/" title="imageControlSize">imagesControlSize</a> plugin by <a href="http://www.anieto2k.com/" title="aNieto2k">aNieto2k</a>, that allows you to select the thumbnail&#8217;s width when uploading an image (the height is calculated automatically, maintaining the aspect ratio). Works great.</p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/02/23/new-title-in-spanish-5/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress MU 1.3.3</title><link>http://www.bisente.com/blog/2008/02/06/wordpress-mu-133/</link> <comments>http://www.bisente.com/blog/2008/02/06/wordpress-mu-133/#comments</comments> <pubDate>Tue, 05 Feb 2008 23:50:36 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[actualización]]></category> <category><![CDATA[parche]]></category> <category><![CDATA[Seguridad]]></category> <category><![CDATA[WordPress MU]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/blog/2008/02/06/wordpress-mu-133/</guid> <description><![CDATA[WordPress MU 1.3.3 has been released today (announce, download). It includes a series of important security fixes and gets the code in sync with WordPress 2.3.3. Once again, I&#8217;ve prepared a .diff file for an easier upgrade procedure from the &#8230; <a href="http://www.bisente.com/blog/2008/02/06/wordpress-mu-133/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p><a href="http://ocaoimh.ie/2008/02/05/wordpress-mu-133/" title="wpmu 1.3.3 release">WordPress MU 1.3.3</a> has been released today (<a href="http://ocaoimh.ie/2008/02/05/wordpress-mu-133/" title="wpmu 1.3.3 release">announce</a>, <a href="http://mu.wordpress.org/download/" title="wpmu downloads">download</a>). It includes a series of important security fixes and gets the code in sync with <a href="http://wordpress.org/development/2008/02/wordpress-233/" title="WordPress 2.3.3">WordPress 2.3.3</a>.</p><p>Once again, I&#8217;ve prepared a .diff file for an easier upgrade procedure from the previous version:</p><ul><li> <a href="http://www.bisente.com/wp-content/blogs.dir/bisente/programas/wordpress/wpmu/wpmu-1_3_2-1_3_3.diff" title="Upgrade patch wpmu 1.3.2 to 1.3.3">wpmu-1_3_2-1_3_3.diff</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/02/06/wordpress-mu-133/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Parche para actualizar a WordPress MU 1.3.2</title><link>http://www.bisente.com/blog/2008/01/26/parche-para-actualizar-a-wordpress-mu-132/</link> <comments>http://www.bisente.com/blog/2008/01/26/parche-para-actualizar-a-wordpress-mu-132/#comments</comments> <pubDate>Sat, 26 Jan 2008 17:04:24 +0000</pubDate> <dc:creator>bisente</dc:creator> <category><![CDATA[Blogs]]></category> <category><![CDATA[English]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Linuxadas]]></category> <category><![CDATA[Seguridad]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[actualización]]></category> <category><![CDATA[parche]]></category> <category><![CDATA[WordPress MU]]></category> <category><![CDATA[wpmu]]></category><guid isPermaLink="false">http://www.bisente.com/blog/2008/01/26/parche-para-actualizar-a-wordpress-mu-132/</guid> <description><![CDATA[WordPress MU 1.3.2 has been released. It gets the project in sync with WordPress 2.3.2 and besides that adds several WPMU-specific security fixes, so it&#8217;s a must. The full package is available for download here. If you already have the &#8230; <a href="http://www.bisente.com/blog/2008/01/26/parche-para-actualizar-a-wordpress-mu-132/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div class="jLanguage"><ul><li><a href="?lan=english"><img alt="english" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/en.png" /></a></li><li><a href="?lan=spanish"><img alt="spanish" src="http://www.bisente.com/wp-content/plugins/jLanguage/icons/es.png" /></a></li></ul></div><p><a href="http://ocaoimh.ie/2008/01/26/wordpress-mu-132/" title="WordPress MU 1.3.2">WordPress MU 1.3.2</a> has been released. It gets the project in sync with WordPress 2.3.2 and besides that adds several WPMU-specific security fixes, so it&#8217;s a must.</p><p>The full package is available for <a href="http://mu.wordpress.org/download/" title="WordPress MU download">download here</a>. If you already have the previous release installed (simply 1.3, but it was in sync with WP 2.3.1) you can use the following patch to upgrade it more easily: <a href="http://www.bisente.com/programas/wordpress/wpmu/wpmu-1_3-1_3_2.diff" title="Parche actualización WordPress MU 1.3 a 1.3.2">wpmu-1_3-1_3_2.diff</a></p> ]]></content:encoded> <wfw:commentRss>http://www.bisente.com/blog/2008/01/26/parche-para-actualizar-a-wordpress-mu-132/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using disk: enhanced
Database Caching 3/69 queries in 0.033 seconds using apc
Object Caching 1141/1284 objects using apc

Served from: www.bisente.com @ 2012-02-12 17:35:34 -->
