<?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; ravencore</title>
	<atom:link href="http://hostingaldescubierto.com/wordpress/category/ravencore/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>Error: POP3 enabled but pop3_uidl_format not set</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/19/error-pop3-enabled-but-pop3_uidl_format-not-set/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=error-pop3-enabled-but-pop3_uidl_format-not-set</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/19/error-pop3-enabled-but-pop3_uidl_format-not-set/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 19:41:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Artículos]]></category>
		<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2009/07/19/error-pop3-enabled-but-pop3_uidl_format-not-set/</guid>
		<description><![CDATA[Error en Debian Lenny 5 despues de hacer un dist-upgrade: /etc/init.d/dovecot start Error: POP3 enabled but pop3_uidl_format not set Fatal: Invalid configuration in /etc/dovecot/dovecot.conf hay que volver a agregar esta entrata en /etc/dovecot/dovecot.conf pop3_uidl_format = %08Xu%08Xv]]></description>
			<content:encoded><![CDATA[<p>Error en Debian Lenny 5 despues de hacer un dist-upgrade:</p>
<pre>
/etc/init.d/dovecot start
Error: POP3 enabled but pop3_uidl_format not set
Fatal: Invalid configuration in /etc/dovecot/dovecot.conf
</pre>
<p>hay que volver a agregar esta entrata en /etc/dovecot/dovecot.conf</p>
<pre>
pop3_uidl_format = %08Xu%08Xv
</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/19/error-pop3-enabled-but-pop3_uidl_format-not-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalando Roundcube con Ravencore</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/16/214/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=214</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/16/214/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:17:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Artículos]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/?p=214</guid>
		<description><![CDATA[Squirrelmail está un poco viejo y obsoleto por lo que he decidido a probar roundcube que tiene un aspecto bastante agradable y parece cómodo. Basándome en la instalación de Ravencore con unos pocos pasos he instalado con éxito este gestor de webmail. apt-get php5-mcrypt php5-gd cd /usr/local/ravencore/var/apps/ wget http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.2.2.tar.gz tar zxvf roundcubemail-0.2.2.tar.gz Cremos la base [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://squirrelmail.org/">Squirrelmail</a> está un poco viejo y obsoleto por lo que he decidido a probar roundcube que tiene un aspecto bastante agradable y parece cómodo. Basándome en la instalación de <a href="http://www.ravencore.com">Ravencore</a> con unos pocos pasos he instalado con éxito este gestor de webmail.</p>
<pre>
apt-get  php5-mcrypt php5-gd
cd /usr/local/ravencore/var/apps/
wget http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.2.2.tar.gz
tar zxvf roundcubemail-0.2.2.tar.gz
</pre>
<p>Cremos la base de datos, usuario y la estructura de la base de datos </p>
<pre>
echo " CREATE DATABASE roundcubemail; "  |  mysql -uadmin -p`cat /usr/local/ravencore/.shadow`
echo " GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost IDENTIFIED BY 'Le-Greof-N0g-THREE';" |  mysql -uadmin -p`cat /usr/local/ravencore/.shadow`
echo " FLUSH PRIVILEGES;" |  mysql -uadmin -p`cat /usr/local/ravencore/.shadow` 

cat SQL/mysql.initial.sql |  mysql -uadmin -p`cat /usr/local/ravencore/.shadow`  roundcubemail
</pre>
<p>por si acaso hay que acordarse de dar permisos de escritura </p>
<pre>
chmod +w temp logs
</pre>
<p>Accedemos a la ubicacion que hayamos definido para generar los ficheros de configuracion en http://roundcubesite/installer</p>
<p>Seguro que hace falta alguna revisión del proceso, pero poco más, la verdad que funciona bastante bien y sin problemas.</p>
<p>Más informacion en: <a href="http://roundcube.net">round cube mail</a></p>
<p>Video tutorial Roundcube:<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/jIKofjOXG78&#038;hl=es&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jIKofjOXG78&#038;hl=es&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></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/16/214/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ravencore: Fix phpmyadmin</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-fix-phpmyadmin/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ravencore-fix-phpmyadmin</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-fix-phpmyadmin/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 15:49:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-fix-phpmyadmin/</guid>
		<description><![CDATA[Trying to load phpmyadmin you could get this errors: Strict Standards: Redefining already defined constructor for class PMA_Theme_Manager in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Theme_Manager.class.php on line 218 Strict Standards: Redefining already defined constructor for class PMA_Config in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Config.class.php on line 541 Strict Standards: Redefining already defined constructor for class PMA_Table in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Table.class.php on line 216 Strict Standards: Non-static method [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to load phpmyadmin you could get this errors: </p>
<pre>
Strict Standards: Redefining already defined constructor for class PMA_Theme_Manager in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Theme_Manager.class.php on line 218

Strict Standards: Redefining already defined constructor for class PMA_Config in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Config.class.php on line 541

Strict Standards: Redefining already defined constructor for class PMA_Table in /usr/local/ravencore/var/apps/phpmyadmin/libraries/Table.class.php on line 216

Strict Standards: Non-static method PMA_Config::getCookiePath() should not be called statically in /usr/local/ravencore/var/apps/phpmyadmin/libraries/session.inc.php on line 35

Strict Standards: Non-static method PMA_Config::isHttps() should not be called statically in /usr/local/ravencore/var/apps/phpmyadmin/libraries/session.inc.php on line 36

Warning: Cannot modify header information - headers already sent by (output started at /usr/local/ravencore/var/apps/phpmyadmin/libraries/Theme_Manager.class.php:218) in /usr/local/ravencore/var/apps/phpmyadmin/libraries/session.inc.php on line 94

Warning: Cannot modify header information - headers already sent by (output started at /usr/local/ravencore/var/apps/phpmyadmin/libraries/Theme_Manager.class.php:218) in /usr/local/ravencore/var/apps/phpmyadmin/libraries/core.lib.php on line 249
</pre>
<p>Are excesive warnings easily avoided with : </p>
<pre>
sed -i 's/php_admin_value error_reporting 8183/php_admin_value error_reporting 6135/' /usr/local/ravencore/etc/php.include
</pre>
<p>And now retstart ravencore</p>
<pre>
/etc/init.d/ravencore restart
</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/03/ravencore-fix-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ravencore: change admin password</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-change-admin-password/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ravencore-change-admin-password</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-change-admin-password/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:48:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/?p=206</guid>
		<description><![CDATA[The command to change admin password is : /usr/local/ravencore/sbin/run_cmd passwd]]></description>
			<content:encoded><![CDATA[<p>The command to change admin password is : </p>
<pre> /usr/local/ravencore/sbin/run_cmd passwd </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/03/ravencore-change-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ravencore: cambiar password de administrador</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-cambiar-password-de-administrador/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ravencore-cambiar-password-de-administrador</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-cambiar-password-de-administrador/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:47:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/?p=203</guid>
		<description><![CDATA[Para cambiar la password de administrador se puede usar este comando en consola : /usr/local/ravencore/sbin/run_cmd passwd]]></description>
			<content:encoded><![CDATA[<p>Para cambiar la password de administrador se puede usar este comando en consola :</p>
<pre>/usr/local/ravencore/sbin/run_cmd passwd</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/03/ravencore-cambiar-password-de-administrador/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ravencore para usuarios Debian</title>
		<link>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-para-usuarios-debian/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ravencore-para-usuarios-debian</link>
		<comments>http://hostingaldescubierto.com/wordpress/2009/07/03/ravencore-para-usuarios-debian/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:39:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Soporte]]></category>
		<category><![CDATA[ravencore]]></category>

		<guid isPermaLink="false">http://hostingaldescubierto.com/wordpress/?p=201</guid>
		<description><![CDATA[Además del post anterior . Es necesario modificar el fichero /usr/local/ravencore/var/lib/RavenCore/Server.pm en la linea 531 done se define: $self->{HTTPD} = &#8216;/usr/sbin/httpd&#8217;; y cambiarlo por el binario de apache en Debian : $self->{HTTPD} = &#8216;/usr/sbin/apache2; De lo contrario al reinciar el servicio ravencore ( /etc/init.d/ravencore start ) no generará ningún tipo de error pero el servicio [...]]]></description>
			<content:encoded><![CDATA[<p>Además del post <a href="http://hostingaldescubierto.com/wordpress/2009/07/02/starting-ravencore-daemon-undefined-subroutine-ravencoregettext-called-at-usrlocalravencorevarlibravencore-pm-line-370/">anterior </a>. Es necesario modificar el fichero /usr/local/ravencore/var/lib/RavenCore/Server.pm en la linea 531 done se define:</p>
<p><strong>$self->{HTTPD} = &#8216;/usr/sbin/httpd&#8217;;</strong></p>
<p>y cambiarlo por el binario de apache en Debian :</p>
<p><strong>$self->{HTTPD} = &#8216;/usr/sbin/apache2</strong>;</p>
<p>De lo contrario al reinciar el servicio ravencore ( /etc/init.d/ravencore start ) no generará ningún tipo de error pero el servicio que escucha en los puertos :8080 y :8000 no habrá levantado.</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/03/ravencore-para-usuarios-debian/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>
	</channel>
</rss>
