<?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>Programador ASP &#187; php</title>
	<atom:link href="http://programadorasp.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://programadorasp.com</link>
	<description>Programación en Internet</description>
	<lastBuildDate>Fri, 03 Feb 2012 20:09:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</title>
		<link>http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/</link>
		<comments>http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 19:10:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Buscadores]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[acentos]]></category>
		<category><![CDATA[ansi]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[cadena de texto]]></category>
		<category><![CDATA[carácteres extraños]]></category>
		<category><![CDATA[comillas]]></category>
		<category><![CDATA[expresiones regulares]]></category>
		<category><![CDATA[iso-8859-1]]></category>
		<category><![CDATA[patrón expresión regular]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reemplazar carácteres]]></category>
		<category><![CDATA[RegExp]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[tildes]]></category>
		<category><![CDATA[URL friendly]]></category>
		<category><![CDATA[URL's amigables]]></category>
		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://programadorasp.com/?p=503</guid>
		<description><![CDATA[Las expresiones regulares en ASP son muy útiles para reemplazar carácteres extraños en cadenas de texto y quitar acentos para por ejemplo generar url's amigables
Related posts:<ol>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En ocasiones en <strong>ASP</strong> hemos querido <strong>reemplazar carácteres</strong> de un texto o una cadena para eliminar los acentos y los carácteres extraños como paréntesis, puntos, comas, corchetes, ñ, ç,&#8230; Por ejemplo, para generar <strong>URL&#8217;s amigables</strong> para los buscadores (URL friendly o permalinks), necesitamos convertir las cadenas a texto plano <strong>sin carácteres extraños</strong>. Podemos hacer funciones de reemplazo de carácteres intentando tener en cuenta todos los carácteres extraños que nos podamos encontrar en una cadena, pero las <strong>expresiones regulares</strong> y sus herramientas de reemplazo nos pueden ayudar mucho. Se trata de utilizar el operador <strong>.replace</strong> del objeto de expresión regular en ASP, jugando con los <strong>patrones</strong> para las condiciones.</p>
<p>En la funcion siguiente, a partir de una <strong>cadena de texto</strong> dada se convierte a una cadena amigable para los buscadores, eliminando los carácteres extraños. En primer lugar, se eliminan los espacios a ambos lados de la cadena y se reemplazan o eliminan los carácteres que pueden dar problemas en bases de datos como las <strong>comillas</strong> simples y dobles, saltos de línea y espacios. Después se usan las <strong>expresiones regulares</strong> para eliminar de las vocales las tildes abiertas y cerradas, diéresis,&#8230; y para sustituir la ñ y la ç por n y c respectivamente. Es decir, los carácteres que <strong>cumplan el patrón</strong> de la expresión regular serán sustituidos por el carácter dado. Por último, se eliminan los carácteres restantes que <strong>no cumplan el patrón</strong> de URL amigable (letras minúsculas, números y guión).</p>

<div class="wp_syntax"><div class="code"><pre class="asp" style="font-family:monospace;"><span style="color: #0000ff; font-weight: bold;">function</span> convertirAURLfriendly<span style="color: #006600; font-weight:bold;">&#40;</span>cadena<span style="color: #006600; font-weight:bold;">&#41;</span>
  <span style="color: #990099; font-weight: bold;">if</span> <span style="color: #990099; font-weight: bold;">not</span> isNull<span style="color: #006600; font-weight:bold;">&#40;</span>cadena<span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #990099; font-weight: bold;">then</span>
    <span style="color: #008000;">' Eliminamos los espacios a ambos lados de la cadena</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">Trim</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #330066;">lCase</span><span style="color: #006600; font-weight:bold;">&#40;</span>cadena<span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    <span style="color: #008000;">' Reemplazamos carácteres especiales</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena,<span style="color: #cc0000;">&quot;'&quot;</span>,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #cc0000;">&quot;&quot;</span>,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena,<span style="color: #cc0000;">&quot;&amp;quot;&quot;</span>,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>,vbcrlf,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #330066;">replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena,<span style="color: #cc0000;">&quot;&lt;br&gt;&quot;</span>,<span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>,<span style="color: #cc0000;">&quot; &quot;</span>,<span style="color: #cc0000;">&quot;-&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    <span style="color: #990099; font-weight: bold;">set</span> expReg <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">New</span> RegExp
    <span style="color: #008000;">' Todas las ocurrencias</span>
    expReg.<span style="color: #990099; font-weight: bold;">Global</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">True</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[àáâãäå]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;a&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[èéêë]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;e&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[ìíîï]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;i&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[òóôõö]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;o&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[ùúûü]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;u&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[ñ]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;n&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[ç]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;c&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    <span style="color: #008000;">' Todo lo que no cumpla este patron</span>
    expReg.<span style="color: #9900cc;">Pattern</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;[^a-z0-9-]&quot;</span>
    strCadena <span style="color: #006600; font-weight: bold;">=</span> expReg.<span style="color: #330066;">Replace</span><span style="color: #006600; font-weight:bold;">&#40;</span>strCadena, <span style="color: #cc0000;">&quot;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
    <span style="color: #990099; font-weight: bold;">set</span> expReg <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">nothing</span>
    convertirAURLfriendly <span style="color: #006600; font-weight: bold;">=</span> left<span style="color: #006600; font-weight:bold;">&#40;</span>strCadena,<span style="color: #800000;">256</span><span style="color: #006600; font-weight:bold;">&#41;</span>
  <span style="color: #990099; font-weight: bold;">else</span>
    convertirAURLfriendly <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;&quot;</span>
  <span style="color: #990099; font-weight: bold;">end</span> <span style="color: #990099; font-weight: bold;">if</span>
<span style="color: #990099; font-weight: bold;">end</span> <span style="color: #0000ff; font-weight: bold;">function</span></pre></div></div>

<p>Hacer la conversión de la función anterior a otros lenguajes como <strong>PHP</strong> o <strong>Javascript</strong> es relativamente sencillo, en otros artículos de este blog se pueden encontrar ejemplos de expresiones regulares en Javascript. De hecho, la función anterior an ASP para generar URL&#8217;s amigables me funcionaba en archivos ANSI con codificación iso-8859-1, pero da problemas con los acentos y carácteres extraños cuando el archivo está en <strong>UTF-8</strong>. Así que después de darle muchas vueltas, convertí la función de ASP a Javascript y la llamaba antes de enviar el formulario, es decir generaba la <strong>URL amigable</strong> desde Javascript y lo almacenaba en una variable hidden que también envío con el formulario. La función en <strong>Javascript</strong> que funciona para UTF-8:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> convertirAURLfriendly<span style="color: #009900;">&#40;</span>str<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  strCadena <span style="color: #339933;">=</span> str<span style="color: #339933;">;</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>strCadena<span style="color: #339933;">!=</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #006600; font-style: italic;">// Elimina espacios al principio y al final</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/^\s*|\s*$/g</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&amp;quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot; &quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;_&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[àáâãäå]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'a'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[èéêë]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'e'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[ìíîï]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'i'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[òóôõö]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'o'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[ùúûü]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'u'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[ñ]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'n'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[ç]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">'c'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #006600; font-style: italic;">// Todo lo que no cumpla este patron</span>
    strExpReg <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/[^a-z0-9-]/gi</span><span style="color: #339933;">;</span>
    strCadena <span style="color: #339933;">=</span> strCadena.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>strExpReg<span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">return</span> strCadena.<span style="color: #660066;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">255</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #3366CC;">''</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Related posts:<ol>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</title>
		<link>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/</link>
		<comments>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 20:34:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[base de datos]]></category>
		<category><![CDATA[carácteres especiales]]></category>
		<category><![CDATA[charset utf-8]]></category>
		<category><![CDATA[CodePage 65001]]></category>
		<category><![CDATA[editor avanzado]]></category>
		<category><![CDATA[encoding UTF-8]]></category>
		<category><![CDATA[formato UTF-8]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql_query]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[problemas de codificación]]></category>
		<category><![CDATA[programación web]]></category>
		<category><![CDATA[pspad]]></category>
		<category><![CDATA[SET NAMES UTF8]]></category>
		<category><![CDATA[solución]]></category>
		<category><![CDATA[text/xml]]></category>
		<category><![CDATA[UTF-8]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=443</guid>
		<description><![CDATA[Solución al problema de que los carácteres especiales no se muestran bien en un XML devuelto en PHP leyendo de base de datos MySQL con codificación UTF-8.
Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En muchas ocasiones he programado en lenguaje <strong>ASP</strong> páginas que devuelven datos en <strong>XML</strong> leyéndolos de una base de datos <strong>MySQL</strong>. Con el fin de que los datos almacenados en MySQL salgan con el formato correcto, lo mejor es trabajar en <strong>UTF-8</strong>. Para ello, es necesario guardar el archivo ASP que devuelve el XML en <strong>formato UTF-8</strong> desde un editor avanzado gratuito como el <strong><a href="http://programadorasp.com/pspad-potente-editor-de-textos-gratuito-y-en-espanol/" target="_blank">PSPad</a></strong>. Además, hay que poner el siguiente código ASP antes que nada:</p>

<div class="wp_syntax"><div class="code"><pre class="asp" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #9900cc;">CodePage</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;65001&quot;</span>     <span style="color: #008000;">' Comentario: UTF-8</span>
<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;&lt;?xml version=&quot;</span><span style="color: #cc0000;">&quot;1.0&quot;</span><span style="color: #cc0000;">&quot; encoding=&quot;</span><span style="color: #cc0000;">&quot;UTF-8&quot;</span><span style="color: #cc0000;">&quot;?&gt;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span></pre></div></div>

<p>Pero cuando intentamos hacer lo mismo en lenguaje <strong>PHP</strong> podemos tener el problema de que los <strong>carácteres especiales</strong> no se muestran bien en pantalla. Haciendo lo mismo que con el ASP, guardando el archivo PHP que devuelve el XML en <strong>formato UTF-8</strong> desde el editor avanzado y poniendo el siguiente código pueden haber problemas:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">header(&quot;Content-type:text/xml; charset=utf-8&quot;);
echo &quot;<span style="color: #000000; font-weight: bold;">&lt;?</span>xml version<span style="color: #339933;">=</span>\<span style="color: #0000ff;">&quot;1.0<span style="color: #000099; font-weight: bold;">\&quot;</span> encoding=<span style="color: #000099; font-weight: bold;">\&quot;</span>utf-8<span style="color: #000099; font-weight: bold;">\&quot;</span> ?&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Según me comentó un colega también <a href="http://www.programadorphp.es/" target="_blank">programador web</a>, parece que la comunicación con la <strong>base de datos MySQL</strong> no se está realizando en <strong>UTF-8</strong>. Para que se realice correctamente, hay que lanzar esta instrucción MySQL antes que nada:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">mysql_query<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;SET NAMES UTF8&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Con esto se solucionan los <strong>problemas de codificación</strong> y los carácteres especiales se muestran bien en la web.</p>
<p>Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</title>
		<link>http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/</link>
		<comments>http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 10:21:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administración web]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[htm]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[indexación en Google]]></category>
		<category><![CDATA[interpretar asp]]></category>
		<category><![CDATA[interpretar php]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[páginas dinámicas]]></category>
		<category><![CDATA[páginas estáticas]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirección 301]]></category>
		<category><![CDATA[servidor web]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=354</guid>
		<description><![CDATA[Instrucciones en servidores Apache e IIS para interpretar como PHP o ASP archivos web estáticos con estensiones como .htm, .html, .pdf, .doc
Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/seo-enlaces-posicionamiento-eficaz-web-optimizacion-motores-busqueda/' rel='bookmark' title='Posicionamiento en Google sorprendente por menos de 40 euros al mes'>Posicionamiento en Google sorprendente por menos de 40 euros al mes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En ocasiones tenemos páginas o secciones de una web con archivos con <strong>extensión .html</strong> (o cualquier otra extensión estática) que quisiéramos convertir a dinámicas para poder introudcir <strong>código php o asp</strong> o cualquier otro lenguaje de servidor. En principio bastaría con cambiar la extensión a .php o .asp, pero muchas veces esas páginas ya están muy <strong>indexadas en Google</strong> y otros buscadores y tendríamos que hacer redirecciones permanentes 301 para no perder las visitas y el <strong>Pagerank</strong>. Podemos hacerlo sin cambiar la extensión del archivo.</p>
<p>Si tenemos un <strong>servidor web Apache</strong>, podemos hacer que todos los archivos con cierta extensión (.htm, .html, o incluso .pdf, .doc,&#8230;) sean interpretados con el motor php, con lo que podremos introducirle código php (instrucciones, includes,&#8230;) poniendo la siguiente línea en el archivo <strong>.htaccess</strong> en la raíz del sitio web:</p>
<pre>AddType application/x-httpd-php .html .htm .pdf .doc</pre>
<p>La línea anterior especifica que serán <strong>interpretados como PHP</strong> todos los archivos con <strong>extensión .htm, .html, .pdf o .doc</strong>. Podemos añadir todas las extensiones que queramos.</p>
<p>Si tenemos un <strong>servidor web IIS</strong> (Microsoft), podemos hacerlo desde el Administrador de Internet Information Services / Equipo local / Propiedades de Sitios Web (si queremos que afecte a todos los sitios) o Propiedades del sitio web seleccionado (si queremos que sólo afecte a un sitio web en particular). En la pestaña Directorio particular / botón Configuración / pestaña Asignaciones podemos Agregar por ejemplo la <strong>extensión .htm</strong> para que sea interpretada por el <strong>motor asp</strong> (C:\windows\system32\inetsrv\asp.dll):</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-355" title="iis-interpretar-htm-asp" src="http://programadorasp.com/wp-content/uploads/2010/06/iis-interpretar-htm-asp.gif" alt="" width="415" height="448" /></p>
<p>De la misma forma, podemos hacer que sean <strong>interpretados por PHP</strong> (C:\php\php.exe, o la ruta del intérprete o ejecutable PHP).</p>
<p>Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/seo-enlaces-posicionamiento-eficaz-web-optimizacion-motores-busqueda/' rel='bookmark' title='Posicionamiento en Google sorprendente por menos de 40 euros al mes'>Posicionamiento en Google sorprendente por menos de 40 euros al mes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problemas y soluciones al instalar PHP para IIS en Windows</title>
		<link>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/</link>
		<comments>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/#comments</comments>
		<pubDate>Mon, 11 May 2009 12:26:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Sistemas]]></category>
		<category><![CDATA[extensión mysql]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=257</guid>
		<description><![CDATA[A la hora de instalar PHP en Windows para funcionar sobre el servidor web IIS podemos encontrarnos con algunos problemas. Dejo aquí una recopilación de pasos básicos que recomiendo al instalar PHP en Windows si encontramos alguno de estos problemas. Al menos está comprobado que funciona hasta la versión de php 5.2.9: 1.- Descargar el [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A la hora de instalar PHP en Windows para funcionar sobre el servidor web IIS podemos encontrarnos con algunos problemas. Dejo aquí una recopilación de pasos básicos que recomiendo al instalar PHP en Windows si encontramos alguno de estos problemas. Al menos está comprobado que <strong>funciona hasta la versión de php 5.2.9</strong>:</p>
<p>1.- Descargar el archivo comprimido en <strong>zip</strong> de <a href="http://php.net" target="_blank">http://php.net</a>.<br />
2.- Descomprimirlo en la carpeta <strong>c:\php5</strong>, por ejemplo.<br />
3.- En IIS, en Equipo Local / Sitios web / Propiedades / pestaña Directorio particular / Configuración, dar de alta la asignación <strong>.php</strong> con <strong>c:\php5\php5isapi.dll</strong>.<br />
4.- En IIS, en Equipo Local / Sitios web / Propiedades / pestaña Documentos / Habilitar documento predeterminado, agregar <strong>index.htm</strong> e <strong>index.php</strong>, que suelen ser los documentos por defecto en webs que usan Apache y PHP.<br />
5.- En <strong>c:\php5</strong>, hacer una copia del archivo <strong>php.ini-recommended</strong> y renombrarlo a <strong>php.ini</strong>.<br />
6.- Modificar en el <strong>php.ini</strong> anterior:<br />
- De <strong>;cgi.force_redirect = 1</strong> a <strong>cgi.force_redirect = 0</strong> (descomentar y poner a 0).<br />
- <strong>extension_dir = &#8220;c:\php5\ext\&#8221;</strong>.<br />
- descomentar <strong>extension=php_mysql.dll</strong> para que funcione mysql.<br />
- descomentar <strong>extension=php_mbstring.dll</strong> y <strong>extension=php_mcrypt.dll</strong> para que no dé error el <strong>PhpMyAdmin</strong>, por ejemplo (al menos la <strong>versión 3.2.3.0</strong>).<br />
7.- Copiar el archivo  <strong>php.ini</strong> modificado a <strong>c:\windows</strong>.<br />
8.- ver en <a href="http://www.php.net/manual/en/install.windows.extensions.php" target="_blank">http://www.php.net/manual/en/install.windows.extensions.php</a> las dependencias de cada extensión, por ejemplo <strong>php_mysql.dll PHP &gt;= 5.0.0, requires libmysql.dll (bundled)</strong> y copiarlas en <strong>c:\Windows\System32</strong> (en este caso <strong>libmysql.dll</strong>). Para <strong>php_mcrypt.dll, Requires: libmcrypt.dll</strong>, copiar <strong>libmcrypt.dll</strong> a <strong>c:\Windows\System32</strong>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;count=horizontal&amp;text=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;count=horizontal&amp;text=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;title=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" id="wpa2a_2">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Errores al subir imágenes en WordPress</title>
		<link>http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/</link>
		<comments>http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/#comments</comments>
		<pubDate>Wed, 06 May 2009 13:02:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[modo seguro]]></category>
		<category><![CDATA[permisos]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[safe mode]]></category>
		<category><![CDATA[subir imágenes]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=253</guid>
		<description><![CDATA[Recientemente he cambiado mi blog Chistes con buen humor de servidor Windows 2003 a Linux. Al intentar subir imágenes en el nuevo hosting me daba varios errores de permisos. Expongo aquí una lista de problemas que pueden darse y cómo solucionarlos. - En primer lugar, hay que asegurarse que la carpeta &#8220;wp-content/uploads&#8221; tiene permisos de [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/opcion-rechazar-correo-electronico-plesk-no-comporta-como-deberia/' rel='bookmark' title='Solución a un error en la opción Rechazar de las preferencias de correo en Plesk'>Solución a un error en la opción Rechazar de las preferencias de correo en Plesk</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-254" style="margin: 10px;" title="logo_wordpress" src="http://programadorasp.com/wp-content/uploads/2009/05/logo_wordpress.jpg" alt="" width="300" height="191" />Recientemente he cambiado mi blog <a href="http://chistesconbuenhumor.com" target="_blank">Chistes con buen humor</a> de servidor Windows 2003 a Linux. Al intentar subir imágenes en el nuevo hosting me daba varios errores de permisos. Expongo aquí una lista de problemas que pueden darse y cómo solucionarlos.</p>
<p>- En primer lugar, hay que asegurarse que la carpeta &#8220;wp-content/uploads&#8221; tiene permisos de escritura 755.<br />
- En el panel de control de WordPress, en Opciones / Misceláneas, en &#8220;Guardar los archivos subidos en esta carpeta&#8221; la ruta de archivos no debe ser formato Windows (C:\http\sites\&#8230;) sino Linux, lo mejor es dejar la carpeta por defecto, &#8220;wp-content/uploads&#8221;.<br />
- Por último, uno de los errores que más me trajo de cabeza era <span style="color: #ff0000;">&#8220;No se pudo crear el directorio /var/www/vhosts/chistesconbuenhumor.com/httpdocs/wp-content/2009/05. Asegúrese de que el servidor tiene permisos de escritura para el directorio superior&#8221;</span>. Investigando un poco averigüé que el error se daba por tener el modo seguro de PHP (safe_mode) activado en el hosting, con lo que había que desactivarlo en las propiedades del dominio (<a href="http://de.php.net/features.safe-mode" target="_blank">http://de.php.net/features.safe-mode</a>):</p>
<div id="attachment_255" class="wp-caption aligncenter" style="width: 468px"><img class="size-full wp-image-255 " title="modo_seguro_php_desactivado" src="http://programadorasp.com/wp-content/uploads/2009/05/modo_seguro_php_desactivado.jpg" alt="Modo seguro PHP en Plesk" width="458" height="187" /><p class="wp-caption-text">Modo seguro (safe mode) PHP en Plesk</p></div>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;count=horizontal&amp;text=Errores%20al%20subir%20im%C3%A1genes%20en%20WordPress" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;count=horizontal&amp;text=Errores%20al%20subir%20im%C3%A1genes%20en%20WordPress" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Ferrores-al-subir-imagenes-en-wordpress%2F&amp;title=Errores%20al%20subir%20im%C3%A1genes%20en%20WordPress" id="wpa2a_4">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/opcion-rechazar-correo-electronico-plesk-no-comporta-como-deberia/' rel='bookmark' title='Solución a un error en la opción Rechazar de las preferencias de correo en Plesk'>Solución a un error en la opción Rechazar de las preferencias de correo en Plesk</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</title>
		<link>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/</link>
		<comments>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 18:14:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[extensión mysql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=247</guid>
		<description><![CDATA[En una ocasión, instalando un servidor web con sistema operativo Linux Debian y soporte para PHP y MySQL, me encontré al instalar WordPress para un blog con el problema &#8220;Parece que tu instalación de PHP no cuenta con la extensión de MySQL, necesaria para WordPress&#8221;. La solución al problema es descomentar una línea del archivo [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En una ocasión, instalando un servidor web con sistema operativo Linux Debian y soporte para PHP y MySQL, me encontré al instalar WordPress para un blog con el problema &#8220;Parece que tu instalación de PHP no cuenta con la extensión de MySQL, necesaria para WordPress&#8221;. La solución al problema es descomentar una línea del archivo php.ini, como especifica <a href="http://patob2000.wordpress.com/2007/04/21/instalar-apache-mysql-y-php5-en-debian/" target="_blank">Patob en su blog</a>. Hay que descomentar en el php.ini, generalmente en /etc/php5/apache2/php.ini (eliminar el punto y coma ; de delante) la línea:</p>
<pre>;extension=mysql.so</pre>
<p>con esto PHP carga la extensión para MySQL automáticamente. Por último reiniciamos Apache y MySQL:</p>
<pre>#/etc/init.d/apache restart
#/etc/init.d/mysql restart</pre>
<p>y este problema debería solucionarse.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;count=horizontal&amp;text=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;count=horizontal&amp;text=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;title=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" id="wpa2a_6">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La World Wide Web y el HTML cumplen 20 años</title>
		<link>http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/</link>
		<comments>http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 11:32:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[20 aniversario]]></category>
		<category><![CDATA[20 años]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[CERN]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[navegador]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[servidor web]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=245</guid>
		<description><![CDATA[Hoy viernes 13 de marzo se cumplen 20 años del nacimiento de las páginas web (WWW), tal como las conocemos. El 13 de marzo de 1989 una propuesta presentada por un físico del CERN (Centro Europeo de Investigaciones Nucleares) sentó las bases para desarrollar el lenguaje HTML, que en principio serviría para intercambiar información entre [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-159" title="www_world_wide_web" src="http://tecnologiadelavida.com/files/2009/03/www_world_wide_web.jpg" alt="" width="500" height="65" /></p>
<p>Hoy viernes 13 de marzo se cumplen 20 años del nacimiento de las páginas web (<a href="http://es.wikipedia.org/wiki/World_Wide_Web" target="_blank">WWW</a>), tal como las conocemos. El 13 de marzo de 1989 una propuesta presentada por un físico del <a href="http://www.cern.ch" target="_blank">CERN</a> (<a href="http://es.wikipedia.org/wiki/CERN" target="_blank">Centro Europeo de Investigaciones Nucleares</a>) sentó las bases para desarrollar el lenguaje <a href="http://es.wikipedia.org/wiki/Html" target="_blank">HTML</a>, que en principio serviría para intercambiar información entre físicos de todo el mundo a través de Internet. El lenguaje HTML (HyperText Markup Language) es un lenguaje de etiquetas que permite establecer hipervínculos entre documentos de forma fácil y que los navegadores saben interpretar. Tiempo después vendrían nuevas tecnologías y lenguajes como javascript, flash, asp, php,&#8230;</p>
<div id="attachment_160" class="wp-caption aligncenter" style="width: 389px"><img class="size-full wp-image-160" title="www_primer_servidor_web" src="http://tecnologiadelavida.com/files/2009/03/www_primer_servidor_web.jpg" alt="El creador de la WWW, Tim Berners-Lee junto al ordenador que sirvió de primer servidor web" width="379" height="259" /><p class="wp-caption-text">El creador de la WWW, Tim Berners-Lee, junto al ordenador que sirvió de primer servidor web</p></div>
<p>Pocos se imaginaban que aquel invento iba a revolucionar la tecnología y en el CERN <a href="http://info.cern.ch/www20/" target="_blank">lo están celebrando</a> dando conferencias, haciendo camisetas y exponiendo el primer ordenador que albergó un servidor web, un navegador web y un editor para desarrollar páginas web.</p>
<div id="attachment_161" class="wp-caption aligncenter" style="width: 285px"><img class="size-full wp-image-161" title="www_html" src="http://tecnologiadelavida.com/files/2009/03/www_html.jpg" alt="Ejemplo de documento en lenguaje HTML" width="275" height="313" /><p class="wp-caption-text">Ejemplo de documento en lenguaje HTML</p></div>
<p>Recuerdo mi primer contacto con la web en la Universidad Politécnica de Valencia (España), cuando inicié (y años después acabé) la carrera de Ingeniería Técnica en Informática de Sistemas, allá por el año 1994. En 1995-96 colaboré en el desarrollo de una página web de una asociación de la Universidad y desde la Facultad de Informática programábamos las páginas web con un editor de textos y editor de imágenes básicos&#8230; Escribía el lenguaje HTML totalmente a mano, qué recuerdos, &lt;html&gt;&lt;head&gt;&lt;title&gt;&#8230; &lt;table border=&#8221;0&#8243;&#8230; Empezando de esta forma me ha servido mucho posteriormente, es mucho más fácil encontrar errores y problemas cuando se conoce el código.</p>
<p>Este artículo en una versión menos técnica también lo podéis encontrar en <a href="http://tecnologiadelavida.com/la-web-cumple-20-anos/" target="_blank">Tecnología de la Vida</a>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;count=horizontal&amp;text=La%20World%20Wide%20Web%20y%20el%20HTML%20cumplen%2020%20a%C3%B1os" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;count=horizontal&amp;text=La%20World%20Wide%20Web%20y%20el%20HTML%20cumplen%2020%20a%C3%B1os" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Fla-world-wide-web-y-el-html-cumplen-20-anos%2F&amp;title=La%20World%20Wide%20Web%20y%20el%20HTML%20cumplen%2020%20a%C3%B1os" id="wpa2a_8">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/' rel='bookmark' title='Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL'>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

