<?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>LeopoldoMaestro.COM &#187; php</title>
	<atom:link href="http://www.leopoldomaestro.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leopoldomaestro.com</link>
	<description>Networking, Tecnología, Linux, Sistemas, Negocios...</description>
	<lastBuildDate>Sun, 09 Oct 2011 14:07:19 +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>Repositorio Atomic: Instalacion de PHP 5.2.17 en lugar de 5.3.6</title>
		<link>http://www.leopoldomaestro.com/repositorio-atomic-instalacion-de-php-5-2-17-en-lugar-de-5-3-6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=repositorio-atomic-instalacion-de-php-5-2-17-en-lugar-de-5-3-6</link>
		<comments>http://www.leopoldomaestro.com/repositorio-atomic-instalacion-de-php-5-2-17-en-lugar-de-5-3-6/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 12:48:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[atomic]]></category>
		<category><![CDATA[php 5.2.17]]></category>

		<guid isPermaLink="false">http://www.leopoldomaestro.com/?p=421</guid>
		<description><![CDATA[Los que usamos el repositorio Atomic nos hemos encontrado de un tiempo a esta parte que por defecto ya se esta empezando a usar PHP 5.3.6 como paquete por defecto. Por desgracia, algunas aplicaciones viejas no son compatibles con el, por lo que podemos encontrarnos en situaciones no deseadas. Para evitar un upgrade a 5.3.6, [...]]]></description>
			<content:encoded><![CDATA[<p>Los que usamos el repositorio Atomic nos hemos encontrado de un tiempo a esta parte que por defecto ya se esta empezando a usar PHP 5.3.6 como paquete por defecto. Por desgracia, algunas aplicaciones viejas no son compatibles con el, por lo que podemos encontrarnos en situaciones no deseadas.</p>
<p>Para evitar un upgrade a 5.3.6, podemos bajar los paquetes PHP 5.2.17 a un directorio local y hacer el upgrade con yum de la siguiente manera:</p>
<div>yum update php* &#8211;exclude=php*5.3*</div>
]]></content:encoded>
			<wfw:commentRss>http://www.leopoldomaestro.com/repositorio-atomic-instalacion-de-php-5-2-17-en-lugar-de-5-3-6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funciones peligrosas en PHP</title>
		<link>http://www.leopoldomaestro.com/funciones-peligrosas-en-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=funciones-peligrosas-en-php</link>
		<comments>http://www.leopoldomaestro.com/funciones-peligrosas-en-php/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 01:45:35 +0000</pubDate>
		<dc:creator>leopoldomaestro</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[funciones peligrosas]]></category>

		<guid isPermaLink="false">http://www.leopoldomaestro.com/?p=287</guid>
		<description><![CDATA[system,passthru,exec,popen,proc_close,proc_get_status,proc_nice, proc_open,proc_terminate,shell_exec,highlight_file,escapeshellcmd, define_syslog_variables,posix_uname,posix_getpwuid, apache_child_terminate,posix_kill,posix_mkfifo, posix_setpgid,posix_setsid,posix_setuid,escapeshellarg, posix_uname,ftp_exec,ftp_connect,ftp_login,ftp_get, ftp_put,ftp_nb_fput,ftp_raw,ftp_rawlist, ini_alter,ini_restore,inject_code,syslog,openlog, define_syslog_variables,apache_setenv,mysql_pconnect,eval, phpAds_XmlRpc,phpAds_remoteInfo, phpAds_xmlrpcEncode,phpAds_xmlrpcDecode, xmlrpc_entity_decode,fp,fput Cuidado con algunas de ellas&#8230; Van a romper tu aplicación de un momento a otro si las deshabilitamos ;D]]></description>
			<content:encoded><![CDATA[<blockquote><p>
system,passthru,exec,popen,proc_close,proc_get_status,proc_nice,<br />
proc_open,proc_terminate,shell_exec,highlight_file,escapeshellcmd,<br />
define_syslog_variables,posix_uname,posix_getpwuid,<br />
apache_child_terminate,posix_kill,posix_mkfifo,<br />
posix_setpgid,posix_setsid,posix_setuid,escapeshellarg,<br />
posix_uname,ftp_exec,ftp_connect,ftp_login,ftp_get,<br />
ftp_put,ftp_nb_fput,ftp_raw,ftp_rawlist,<br />
ini_alter,ini_restore,inject_code,syslog,openlog,<br />
define_syslog_variables,apache_setenv,mysql_pconnect,eval,<br />
phpAds_XmlRpc,phpAds_remoteInfo,<br />
phpAds_xmlrpcEncode,phpAds_xmlrpcDecode,<br />
xmlrpc_entity_decode,fp,fput
</p></blockquote>
<p>Cuidado con algunas de ellas&#8230; Van a romper tu aplicación de un momento a otro si las deshabilitamos ;D</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leopoldomaestro.com/funciones-peligrosas-en-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

