<?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>Hosting Al Descubierto &#187; Noticias</title>
	<atom:link href="http://hostingaldescubierto.com/wordpress/category/noticias/feed/" rel="self" type="application/rss+xml" />
	<link>http://hostingaldescubierto.com/wordpress</link>
	<description>Ayuda plesk  hosting, servidores dedicados y virtuales. ¿ problemas con spam, migraciones, installar aplicaciones ? podemos ayudarte</description>
	<lastBuildDate>Thu, 19 Aug 2010 15:48:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Debian Etch 4.0 : descatalogada y obsoleta</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/07/08/debian-etch-4-0-descatalogada-y-obsoleta/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=debian-etch-4-0-descatalogada-y-obsoleta</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/07/08/debian-etch-4-0-descatalogada-y-obsoleta/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 10:44:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/07/08/debian-etch-4-0-descatalogada-y-obsoleta/</guid>
		<description><![CDATA[Desde esta semana Debian Etch es historia y queda en archives.debian.org para la posteridad. Aunque el soporte acababa en Febrero de 2010 se anunció la novena actualización el 22 de Mayo de 2010. Se recomienda pasar a &#8216;stable&#8217; aunque siempre es posible modificar las fuentes apt indicando en el repositorio : deb http://archive.debian.org/debian etch main [...]]]></description>
			<content:encoded><![CDATA[<p>Desde esta semana <a href="http://lists.debian.org/20100619084642.GA26963@hymers.org.uk" target="_blank">Debian Etch es historia</a> y queda en archives.debian.org para la posteridad. Aunque el soporte acababa en Febrero de 2010 se anunció la <a href="http://www.debian.org/News/2010/20100522" target="_blank">novena actualización</a> el 22 de Mayo de 2010.</p>
<p>Se recomienda pasar a <i> &#8216;stable&#8217; </i> aunque siempre es posible modificar las fuentes apt indicando en el repositorio :</p>
<p><source><br />
deb http://archive.debian.org/debian etch main contrib non-free<br />
deb http://archive.debian.org/debian-security etch/updates main contrib non-free</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/07/08/debian-etch-4-0-descatalogada-y-obsoleta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[sendmail] escuchar solo en interface local loopback 127.0.0.1</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/06/24/sendmail-escuchar-solo-en-interface-local-loopback-127-0-0-1/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sendmail-escuchar-solo-en-interface-local-loopback-127-0-0-1</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/06/24/sendmail-escuchar-solo-en-interface-local-loopback-127-0-0-1/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 16:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[antispam]]></category>
		<category><![CDATA[mta]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/06/24/sendmail-escuchar-solo-en-interface-local-loopback-127-0-0-1/</guid>
		<description><![CDATA[En algunas ocasiones sólamente nos interesa tener el mta escuchando al interface local ( loopback / 127.0.0.1 ) para que reparta correo localmente sacar correo hacia otra máquina, etc.. en este caso simplemente no queremos aceptar correo externo ( por spam ) y por que no es la función de la máquina recibir correo. Esta [...]]]></description>
			<content:encoded><![CDATA[<p>En algunas ocasiones sólamente nos interesa tener el mta escuchando al interface local ( loopback / 127.0.0.1 ) para que reparta correo localmente sacar correo hacia otra máquina, etc.. en este caso simplemente no queremos aceptar correo externo ( por spam ) y por que no es la función de la máquina recibir correo. Esta máquina está usando <b>sendmail</b> para que sólo escuche al interface local, agregaremos estas directivas en <b>/etc/mail/sendmail.mc</b></p>
<p><source></p>
<p>O DaemonPortOptions=Port=smtp,Addr=127.0.0.1, Name=MTA<br />
O DaemonPortOptions=Port=587,Addr=127.0.0.1, Name=MSA, M=E</p>
<p>o esta otra directiva, pero no las dos a la vez o se caerá el dameon<br />
<source><br />
DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA&#8217;)<br />
DAEMON_OPTIONS(`Port=submission,Addr=127.0.0.1, Name=MTA&#8217;)</p>
<p>En caso de que esté duplicada la configuración en /var/log/mail.log aparecerá algo como esto:</p>
<p><source><br />
sm-mta[23481]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon MSA: cannot bind: Address already in use<br />
sm-mta[23481]: daemon MSA: problem creating SMTP socket<br />
sm-mta[23481]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon MSA: server SMTP socket wedged: exiting</p>
<p>Posteriormente hayq que reiniciar el servicio </p>
<p><source><br />
/etc/init.d/sendmail restart</p>
<p>y verificamos que el cambio se haya efectuado correctamente:</p>
<p><source><br />
&#8230;<br />
tcp        0      0 127.0.0.1:587           0.0.0.0:*               LISTEN      22413/sendmail-mta<br />
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      22413/sendmail-mta<br />
&#8230;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/06/24/sendmail-escuchar-solo-en-interface-local-loopback-127-0-0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk 9.5 : lista para instalar &#8211; CORREGIDO</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/03/30/plesk-9-5-lista-para-instalar/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=plesk-9-5-lista-para-instalar</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/03/30/plesk-9-5-lista-para-instalar/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 08:34:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/03/30/plesk-9-5-lista-para-instalar/</guid>
		<description><![CDATA[Aunque hace varias semanas hacíamos referencia a que estaba disponible Plessk 9.5, al día siguiente fue retirada de los repositorios. Según comentarios del equipo de Parallels era una beta para algunos clientes, aunque lo habitual es que lo liberen para que un pequeño grupo de usuarios actualice creyendo que es estable y probarles como cobayas [...]]]></description>
			<content:encoded><![CDATA[<p>Aunque hace varias semanas hacíamos referencia a que estaba disponible <a href="http://hostingaldescubierto.com/wordpress/2010/02/22/plesk-nueva-actualizacion-9-5/" target="_blank">Plessk 9.5</a>, al día siguiente fue retirada de los repositorios. <a href="http://hostingaldescubierto.com/wordpress/2010/03/05/plesk-9-5/"> Según comentarios del equipo de Parallels</a> era una beta para algunos clientes, aunque lo habitual es que lo liberen para que un pequeño grupo de usuarios actualice creyendo que es estable y probarles como cobayas <img src='http://hostingaldescubierto.com/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Desde antes de ayer ( más o menos) vuelve a estar disponible, aunque no ha sido oficialmente publicado. Seguramente sea la release final ya que en el KA ( panel de gestión de las licencias ) de Parallels aparecen disponibles ya las licencias de 9.5. Este hecho hace pensar que Plesk 9.5 marcará un cambio en la linea de Parallels ( marketing, funcional&#8230; habrá que verlo )</p>
<p>Desde la versión Plesk 8.6, que a mi gusto ha sido la mas estable y con mejor rendimiento desde las 6.x, la gente de Parallels no ha estado muy acertada con los cambios y han estado plagadas de bugs , sobretodo relacionados con postfix, qmail, spamasassin, drweb y domain keys y la basura del nuevo sistema de backup ( or decir algo elegante ) . Por todo ello no recomendaría instalar esta nueva versión en producción al menos hasta que salga Plesk 9.5.1 o 9.5.2 que seguro no tardarán mas de un mes desde que la liberen oficialmente.</p>
<p>No obstante para los intrépidos y los testers que quieran estar a la última , aqui teneis los repositorios para probarlas:</p>
<ul>
<li>
<b>Centos</b></p>
</li>
<p><source><br />
cat &gt;  /etc/yum.repos.d/CentOS-Plesk9.repo &lt;&lt; EOF</p>
<p>[plesk9-base]<br />
name=CentOS-Plesk9 &#8211; Base<br />
baseurl=http://autoinstall.plesk.com/PSA_9.5.0/dist-rpm-CentOS-\$releasever-\$basearch/<br />
gpgcheck=0<br />
enabled=1</p>
<p>[plesk9-thirdparty]<br />
name=CentOS-Plesk9 &#8211; thirparty<br />
baseurl=http://autoinstall.plesk.com/PSA_9.5.0/thirdparty-rpm-CentOS-\$releasever-\$basearch/<br />
gpgcheck=0<br />
enabled=1</p>
<p>[plesk9-updates]<br />
name=CentOS-Plesk9 &#8211; Updates<br />
baseurl=http://autoinstall.plesk.com/PSA_9.5.0/update-rpm-CentOS-\$releasever-\$basearch/<br />
gpgcheck=0<br />
enabled=1<br />
EOF<br />
</source></p>
<li>
<p><b>Debian </b>
</li>
<li>
<p>Etch<br />
<source><br />
cat &gt; /etc/apt/sources.list.d/Plesk950.list &lt;&lt; EOF<br />
deb http://autoinstall.plesk.com/debian/PSA_9.5.0 etch all<br />
EOF<br />
</source></p>
</li>
<li>
<p>Lenny:<br />
cat &gt; /etc/apt/sources.list.d/Plesk950.list &lt;&lt; EOF<br />
deb http://autoinstall.plesk.com/debian/PSA_9.5.0 lenny all<br />
EOF
</li>
<p></eof></ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/03/30/plesk-9-5-lista-para-instalar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ALERTA] No actualizar servidores Plesk 9.3 a openssl 0.9.8e-12.el5_4.6 &#8211; ACTUALIZADO</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/03/29/alerta-no-actualizar-servidores-plesk-9-3-a-openssl-0-9-8e-12-el5_4-6/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=alerta-no-actualizar-servidores-plesk-9-3-a-openssl-0-9-8e-12-el5_4-6</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/03/29/alerta-no-actualizar-servidores-plesk-9-3-a-openssl-0-9-8e-12-el5_4-6/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 11:10:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Artículos]]></category>
		<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/03/29/alerta-no-actualizar-servidores-plesk-9-3-a-openssl-0-9-8e-12-el5_4-6/</guid>
		<description><![CDATA[La nueva versión de openssl ( 0.9.8e-12.el5_4.6 ) está ocasionando problemas con Plesk 9.3.0. El síntoma es que el demonio sw-cp-server falla al arrancar: /etc/init.d/sw-cp-server restart Restarting SWsoft control panels server... stale pidfile. [FAILED]dfile. En el log de swp-cp-server pemos observar estas lineas : tail /var/log/sw-cp-server/error_log 2010-03-29 12:50:48: (log.c.75) server started 2010-03-29 12:50:48: (network.c.336) SSL: [...]]]></description>
			<content:encoded><![CDATA[<p>La nueva versión de openssl ( 0.9.8e-12.el5_4.6 ) está ocasionando problemas con Plesk 9.3.0.</p>
<p>El síntoma es que el demonio <b>sw-cp-server</b> falla al arrancar:</p>
<p><code><br />
/etc/init.d/sw-cp-server restart<br />
Restarting SWsoft control panels server... stale pidfile.  [FAILED]dfile.<br />
</code></p>
<p>En el log de swp-cp-server pemos observar estas lineas :</p>
<p><code><br />
tail /var/log/sw-cp-server/error_log<br />
2010-03-29 12:50:48: (log.c.75) server started<br />
2010-03-29 12:50:48: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)<br />
2010-03-29 12:50:51: (log.c.75) server started<br />
2010-03-29 12:50:51: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)<br />
2010-03-29 12:50:51: (log.c.75) server started<br />
2010-03-29 12:50:51: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)<br />
2010-03-29 12:59:46: (log.c.75) server started<br />
2010-03-29 12:59:46: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)<br />
2010-03-29 12:59:46: (log.c.75) server started<br />
2010-03-29 12:59:46: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)<br />
</code></p>
<p>Por ahora se recomienda reinstalar la versión anterior ( openssl-0.9.8e-12.el5_4.1 disponible <a href="http://rpm.pbone.net/index.php3/stat/4/idpl/13489722/dir/centos_5/com/openssl-0.9.8e-12.el5_4.1.x86_64.rpm.html" target="_blank">aqui</a> )</p>
<p><code><br />
yum downgrade openssl*<br />
</code></p>
<p>Actualización:<br />
En caso de estar usando un vps puede realizar los siguientes pasos:</p>
<p><source><br />
rpm &#8211;erase &#8211;nodeps openssl-0.9.8e-12.el5_4.6<br />
</source></p>
<p>puede encontrarse con este error si usa arquitectura x86_65<br />
<source><br />
rpm &#8211;erase &#8211;nodeps openssl-0.9.8e-12.el5_4.6<br />
error: &#8220;openssl-0.9.8e-12.el5_4.6&#8243; specifies multiple packages<br />
</source></p>
<p>En este caso proceder la manera siguiente:<br />
<source><br />
rpm &#8211;erase openssl-0.9.8e-12.el5_4.6.x86_64 &#8211;nodeps<br />
rpm &#8211;erase openssl-0.9.8e-12.el5_4.6 &#8211;nodeps<br />
</source></p>
<p>y para instalar la versión válida:<br />
<source><br />
vzpkg install VEID -p   openssl-0.9.8e-12.el5_4.1.x86_64<br />
</source></p>
<p>o descargar el rpm e instalar dentro del vps<br />
<source><br />
cd /usr/src<br />
wget ftp://ftp.pbone.net/mirror/ftp.centos.org/5.4/updates/x86_64/RPMS/openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
rpm -ivh openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
</source></p>
<p>y reiniciar el servicio</p>
<p><source><br />
/etc/init.d/sw-cp-server restart<br />
</source></p>
<p>Esperamos que en breve Parallels libere una actualización para corregir el problema.</p>
<p><strong>ACTUALIZACION 2</strong></p>
<p>Cuidado si eliminas los rpm de openssl antes de tener el nuevo rpm ya puedes encontrarte con cosas así:</p>
<p><code><br />
wget ftp://ftp.pbone.net/mirror/ftp.centos.org/5.4/updates/x86_64/RPMS/openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
wget: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory<br />
</code></p>
<p>empiezan los sudores&#8230;.</p>
<p><code><br />
# curl ftp://ftp.pbone.net/mirror/ftp.centos.org/5.4/updates/x86_64/RPMS/openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
curl: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory<br />
</code></p>
<p>más sudor frío &#8230;.</p>
<p><code><br />
$ scp openssl-0.9.8e-12.el5_4.1.x86_64.rpm root@10.0.1.1:/root<br />
ssh_exchange_identification: Connection closed by remote host<br />
lost connection<br />
</code></p>
<p>con esto ya te quedas blanco <img src='http://hostingaldescubierto.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><code><br />
# /etc/init.d/sshd restart<br />
Stopping sshd:                                             [FAILED]<br />
Starting sshd: /usr/sbin/sshd: error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory<br />
                                                           [FAILED]<br />
</code></p>
<p>Por supuesto yum tampoco funciona, así que si tenemos aún una sesión abierta lo vamos a solucionar facilmente así :</p>
<p><code><br />
GET ftp://ftp.pbone.net/mirror/ftp.centos.org/5.4/updates/x86_64/RPMS/openssl-0.9.8e-12.el5_4.1.x86_64.rpm > openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
rpm -ivh openssl-0.9.8e-12.el5_4.1.x86_64.rpm<br />
</code></p>
<p><strong>PARCHES</strong><br />
Parallels ha publicado los parches correspondientes a este problema en<br />
<a href="http://kb.parallels.com/en/8338">http://kb.parallels.com/en/8338</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/03/29/alerta-no-actualizar-servidores-plesk-9-3-a-openssl-0-9-8e-12-el5_4-6/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Plesk 9.5</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/03/05/plesk-9-5/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=plesk-9-5</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/03/05/plesk-9-5/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 23:39:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/03/05/plesk-9-5/</guid>
		<description><![CDATA[Siguiendo con la linea anterior de otras releases , Parallels ha liberado temporalmente su version 9.5 y aún no está disponible para los demás clientes.Según este comentario en el foro de Parallels, sólo está disponible para &#8216;testear&#8217;http://forum.parallels.com/showthread.php?t=99362 Pero lo cierto es que Parallels libera durante unas horas las nuevas releases para que algunos usuarios incautos [...]]]></description>
			<content:encoded><![CDATA[<p>Siguiendo con la linea anterior de otras releases , Parallels ha liberado temporalmente su version 9.5 y aún no está disponible para los demás clientes.<br />Según este comentario en el foro de Parallels, sólo está disponible para &#8216;testear&#8217;<br /><a target="_blank" href="http://forum.parallels.com/showthread.php?t=99362">http://forum.parallels.com/showthread.php?t=99362</a></p>
<p>Pero lo cierto es que Parallels libera durante unas horas las nuevas releases para que algunos usuarios incautos las instalen y así probar qué tal funciona.</p>
<p>Dado que la release aún no ha sido liberada todo apunta a que Plesk 9.5 viene cargado de fallos. Mucho cuidadado con la nueva versión. Esperamos estar equivocados.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/03/05/plesk-9-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[Plesk] Nueva actualizacion 9.5</title>
		<link>http://hostingaldescubierto.com/wordpress/2010/02/22/plesk-nueva-actualizacion-9-5/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=plesk-nueva-actualizacion-9-5</link>
		<comments>http://hostingaldescubierto.com/wordpress/2010/02/22/plesk-nueva-actualizacion-9-5/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:31:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2010/02/22/plesk-nueva-actualizacion-9-5/</guid>
		<description><![CDATA[Si tuvieramos que valorar la nota de Plesk no sería ni mucho menos un 9,5 ( sobresaliente ) si no más bien un 5,9 ( bien bajo jejeje ). Tras la tremenda oleada de cagadas que están teniendo ( sobretodo con qmail y postfix ) tenemos ya la release 9.5 readme para rpms reame para [...]]]></description>
			<content:encoded><![CDATA[<p>Si tuvieramos que valorar la nota de Plesk no sería ni mucho menos un 9,5 ( sobresaliente ) si no más bien un 5,9 ( bien bajo jejeje ). Tras la tremenda oleada de cagadas que están teniendo ( sobretodo con qmail y postfix ) tenemos ya la release 9.5 </p>
<ul>
<li><a target="_blank" href="http://download1.parallels.com/Plesk/PPP9/plesk-9.5.0-for-rpm-based-os.html">readme para rpms</a></li>
<li><a target="_blank" href="http://download1.parallels.com/Plesk/PPP9/plesk-9.5.0-for-deb-based-os.html">reame para debs</a></li>
</ul>
<p>Básicamente corrigen mogollón de fallos realtivos al webmail, qmail y posftix. Agregan soporte para Explorer 8, soporte para CloudLInux, pasarelas de pago, virtualizacion con Xen, HyperV, Wmware,etc.. y quizás dos o tres cosas que nos interesa a los administradores :</p>
<ul>
<li>&nbsp;<b>Upgraded components:</b> ProFTPD was upgraded to the version 1.3.2b, phpMyAdmin to the version 2.9.11, and Horde Application Framework to the versio</li>
<li><b>Cross-site scripting vulnerability was eliminated.</b></li>
<li><b>ProFTPD 1.3.1 was prone to a security vulnerability that allowed<br />
attackers to perform cross-site request forgery types of attacks</b> &#8211; to resolve this issue, ProFTPD was upgraded to the version 1.3.2b.</li>
<li>
<p><span class="fixed">[-]</span>&nbsp;<b>SpamAssassin spam filter incorrectly classified most of the messages delivered in the year 2010 as spam</b> &#8211; issue resolved.</p>
</li>
<li>
<p><span class="fixed">[-]</span>&nbsp;<strong>If a message cannot be sent, sender receives a message with invalid field from=#@[]</strong> bug is fixed.</p>
</li>
<li>
<p><span class="fixed">[-]</span>&nbsp;<b>Web statistics were not calculated properly when the piped logs feature was switched on</b> &#8211; issue resolved.</p>
</li>
</ul>
<p>Como podeis comprobar, cuatro cositas de nada más los &#8216;known bugs&#8217;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2010/02/22/plesk-nueva-actualizacion-9-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plesk 9.2.2</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/29/plesk-9-2-2/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=plesk-9-2-2</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/29/plesk-9-2-2/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 08:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Artículos]]></category>
		<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2009/07/29/plesk-9-2-2/</guid>
		<description><![CDATA[Desde Parallels cada día se lucen más con su software. Ayer día 28 e Julio de 2009 se ha liberado oficialmente la versión 9.2.2 de Plesk con la única característica en la versión que es la incorporación del software Antivirus DrWeb 5.0. Esta nueva versión de DrWeb consume más recursos que las anteriores, por que [...]]]></description>
			<content:encoded><![CDATA[<p>Desde Parallels cada día se lucen más con su software. Ayer día 28 e Julio de 2009 se ha liberado oficialmente la versión 9.2.2 de Plesk con la única característica en la versión que es la incorporación del software Antivirus DrWeb 5.0.</p>
<p>Esta nueva versión de DrWeb consume más recursos que las anteriores, por que los que vayais justitos con vuestros vps o servidores dedicados, pensad en cambiar de antivirus o ampliar.</p>
<pre>
IMPORTANT: Dr.Web update included in Parallels Plesk Panel 9.2.2 release uses more hardware resources than the previous Dr.Web version. This might affect the maximum number of containers with Parallels Plesk Panel 9.2.2 installations on a given hardware in Parallels Containers environment.
</pre>
<p>Más información en <a href="http://download1.parallels.com/Plesk/PPP9/plesk-9.2.2-for-rpm-based-os.html" target="_blank">Plesk 9.2.2 Release notes</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2009/07/29/plesk-9-2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting RavenCore daemon: Undefined subroutine &amp;RavenCore::gettext called at /usr/local/ravencore/var/lib/RavenCore.pm line 370.</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/02/starting-ravencore-daemon-undefined-subroutine-ravencoregettext-called-at-usrlocalravencorevarlibravencore-pm-line-370/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=starting-ravencore-daemon-undefined-subroutine-ravencoregettext-called-at-usrlocalravencorevarlibravencore-pm-line-370</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/02/starting-ravencore-daemon-undefined-subroutine-ravencoregettext-called-at-usrlocalravencorevarlibravencore-pm-line-370/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 15:26:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/?p=199</guid>
		<description><![CDATA[Este es el primer error con el que me encontré al intentar usar RavenCore: /etc/init.d/ravencore start Starting RavenCore daemon: Undefined subroutine &#38;RavenCore::gettext called at /usr/local/ravencore/var/lib/RavenCore.pm line 370. [ FAILED ] Se puede omitir rápidamente si se comenta la linea #370 en el fichero /usr/local/ravencore/var/lib/RavenCore.pm #$str = gettext($str) if $INC{'Locale/gettext.pm'};]]></description>
			<content:encoded><![CDATA[<p>Este es el primer error con el que me encontré al intentar usar RavenCore:</p>
<pre>
/etc/init.d/ravencore start
Starting RavenCore daemon: Undefined subroutine &amp;RavenCore::gettext called at /usr/local/ravencore/var/lib/RavenCore.pm line 370.
[ FAILED ]
</pre>
<p>Se puede omitir rápidamente si se comenta la linea #370 en el fichero <strong>/usr/local/ravencore/var/lib/RavenCore.pm</strong></p>
<pre>
#$str = gettext($str) if $INC{'Locale/gettext.pm'};
</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2009/07/02/starting-ravencore-daemon-undefined-subroutine-ravencoregettext-called-at-usrlocalravencorevarlibravencore-pm-line-370/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RAVENCORE: include_once,  failed to open stream</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/06/19/include_once-ravencore/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=include_once-ravencore</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/06/19/include_once-ravencore/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 23:20:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2009/06/19/include_once-pluginsshow_user_and_ipconfig-php-function-include-once-failed-to-open-stream-no-such-file-or-directory-in-usrlocalravencorevarappssquirrelmailpluginsshow_user_and_ipfu/</guid>
		<description><![CDATA[Error en RavenCore intentando cargar webmail: Warning: include_once(../plugins/show_user_and_ip/config.php) [function.include-once]: failed to open stream: No such file or directory in /usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/functions.php on line 4 Warning: include_once() [function.include]: Failed opening '../plugins/show_user_and_ip/config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/functions.php on line 4 solución simple : cp /usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/config.php.sample \ /usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/config.php Posteriormente apareció este otro : Warning: include_once(../plugins/show_ssl_link/config.php) [function.include-once]: failed to open [...]]]></description>
			<content:encoded><![CDATA[<p>Error en RavenCore intentando cargar webmail:</p>
<pre>
Warning: include_once(../plugins/show_user_and_ip/config.php) [function.include-once]: failed
to open stream: No such file or directory in
/usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/functions.php on line 4

Warning: include_once() [function.include]: Failed opening '../plugins/show_user_and_ip/config.php'
 for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in
/usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/functions.php on line 4
</pre>
<p> solución simple :</p>
<pre>
cp /usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/config.php.sample \
/usr/local/ravencore/var/apps/squirrelmail/plugins/show_user_and_ip/config.php
</pre>
<p>Posteriormente apareció este otro :</p>
<pre>
Warning: include_once(../plugins/show_ssl_link/config.php) [function.include-once]:
failed to open stream: No such file or directory in
/usr/local/ravencore/var/apps/squirrelmail/plugins/show_ssl_link/functions.php on line 43

Warning: include_once() [function.include]: Failed opening '../plugins/show_ssl_link/config.php'
for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in
 /usr/local/ravencore/var/apps/squirrelmail/plugins/show_ssl_link/functions.php on line 43
</pre>
<p>solucionado con :</p>
<pre>
cp /usr/local/ravencore/var/apps/squirrelmail/plugins/show_ssl_link/config.php.sample \
 /usr/local/ravencore/var/apps/squirrelmail/plugins/show_ssl_link/config.php
</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2009/06/19/include_once-ravencore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>echando unas queries en plesk9 windows</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/06/12/echando-unas-queries-en-plesk9-windows/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=echando-unas-queries-en-plesk9-windows</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/06/12/echando-unas-queries-en-plesk9-windows/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:31:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Noticias]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2009/06/12/echando-unas-queries-en-plesk9-windows/</guid>
		<description><![CDATA[A vueltas con el engrendo de Plesk9 eh recordado que aun no he puesto como lanzar consultas de forma algo más comoda usando windows: %plesk_bin%\dbclient.exe --direct-sql --sql="Select * from domains" Más información en Engendro Plesk9]]></description>
			<content:encoded><![CDATA[<p>A vueltas con el engrendo de Plesk9 eh recordado que aun no he puesto como lanzar consultas de forma algo más comoda usando windows:</p>
<pre>
%plesk_bin%\dbclient.exe --direct-sql --sql="Select * from domains"
</pre>
<p>Más información en <a href="http://download1.parallels.com/Plesk/PPP9/Doc/en-US/plesk-9.2-win-cli/index.htm?fileName=44693.htm">Engendro Plesk9</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://hostingaldescubierto.com/wordpress/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://hostingaldescubierto.com/wordpress/2009/06/12/echando-unas-queries-en-plesk9-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
