<?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>Symfony-Community Cordoba</title>
	<atom:link href="http://www.symfony-community.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.symfony-community.com</link>
	<description>La primera comunicad de Symfony para el interior del pais.</description>
	<lastBuildDate>Wed, 26 Oct 2011 23:27:50 +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>jquery form launched from a modal ( jquery form with colorbox )</title>
		<link>http://www.symfony-community.com/jquery-form-launched-from-a-modal-jquery-form-with-colorbox?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-form-launched-from-a-modal-jquery-form-with-colorbox</link>
		<comments>http://www.symfony-community.com/jquery-form-launched-from-a-modal-jquery-form-with-colorbox#comments</comments>
		<pubDate>Fri, 20 May 2011 14:36:54 +0000</pubDate>
		<dc:creator>Mauro</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=595</guid>
		<description><![CDATA[En este post vamos a ver como bindear jqueryForm a un formulario que cargaremos con ajax utilizando colorbox. Una forma muy sencilla de hacerlo es con una función recursiva. En este caso vamos a utilizar un archivo javascript donde colocaremos<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/jquery-form-launched-from-a-modal-jquery-form-with-colorbox"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>En este post vamos a ver como bindear jqueryForm a un formulario que cargaremos con ajax utilizando colorbox. Una forma muy sencilla de hacerlo es con una función recursiva. En este caso vamos a utilizar un archivo javascript donde colocaremos nuestro código, a este archivo lo llamaremos onready.js en el cual colocaremos el siguiente código:</p>
<pre style="width: 95%;background: #333;color: #F5F5F5">
/*
 * este es el shorthand para
 * $(document).ready(function() { ... });
 */
$(function(){   

    //función recursiva
    // target es el selector del formulario
    var ajaxForm = function(target){ 

        $(target).ajaxForm( {
            target: '#cboxLoadedContent',
            beforeSubmit:  function()
            {
                ... // Ejecutar codigo antes del ajax
            },
            success: function()
            {
                $.colorbox.resize();
                ajaxForm(target);
            }
        });
    }

    // Llamo la función recursiva desde colorbox
    $("a.classoflink").colorbox({
            onComplete:function()
            {
                $.colorbox.resize();
                ajaxForm('form.caption');
            }
    });
});
</pre>
<p>Bueno, espero que les sea de utilidad. Esto es todo por este post.<br />
<strong>Nota:</strong> Se supone que tenemos cargadas las correspondientes librerias (jquery, jquery.form y colorbox ).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/jquery-form-launched-from-a-modal-jquery-form-with-colorbox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing tip: running multiple firefox intances. 3 &amp; 4</title>
		<link>http://www.symfony-community.com/testing-tip-running-multiple-firefox-intances-3-4?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-tip-running-multiple-firefox-intances-3-4</link>
		<comments>http://www.symfony-community.com/testing-tip-running-multiple-firefox-intances-3-4#comments</comments>
		<pubDate>Mon, 28 Mar 2011 17:43:42 +0000</pubDate>
		<dc:creator>fabian</dc:creator>
				<category><![CDATA[QA - Testing]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=586</guid>
		<description><![CDATA[Another useful post that would allow testers to improve their environment for multiple browsers: http://www.businessinsider.com/how-to-run-firefox-4-and-3-simultaneously-in-mac-os-x-with-multiple-firefox-profiles-2011-3]]></description>
			<content:encoded><![CDATA[<p>Another useful post that would allow testers to improve their environment for multiple browsers:</p>
<p>http://www.businessinsider.com/how-to-run-firefox-4-and-3-simultaneously-in-mac-os-x-with-multiple-firefox-profiles-2011-3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/testing-tip-running-multiple-firefox-intances-3-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql server &#8211; multiple instances</title>
		<link>http://www.symfony-community.com/mysql-server-multiple-instances?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-server-multiple-instances</link>
		<comments>http://www.symfony-community.com/mysql-server-multiple-instances#comments</comments>
		<pubDate>Fri, 18 Mar 2011 15:04:58 +0000</pubDate>
		<dc:creator>Alejandro Ison</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=499</guid>
		<description><![CDATA[Editar my.cnf: paso 1: /etc/init.d/mysql stop paso 2: mkdir /var/lib/mysql1 mkdir /var/lib/mysql2 chown mysql.mysql /var/lib/mysql1 chown mysql.mysql /var/lib/mysql2 mkdir /var/run/mysqld1 mkdir /var/run/mysqld2 chown mysql.mysql /var/run/mysqld1 chown mysql.mysql /var/run/mysqld2 paso 3: mysql_install_db &#8211;user=mysql &#8211;datadir=/var/lib/mysql1/ mysql_install_db &#8211;user=mysql &#8211;datadir=/var/lib/mysql2/ paso 4: [mysqld_multi] mysqld<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/mysql-server-multiple-instances"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>Editar my.cnf:</p>
<p><strong>paso 1:</strong><br />
/etc/init.d/mysql stop</p>
<p><strong>paso 2:</strong><br />
mkdir /var/lib/mysql1<br />
mkdir /var/lib/mysql2</p>
<p>chown mysql.mysql /var/lib/mysql1<br />
chown mysql.mysql /var/lib/mysql2</p>
<p>mkdir /var/run/mysqld1<br />
mkdir /var/run/mysqld2</p>
<p>chown mysql.mysql /var/run/mysqld1<br />
chown mysql.mysql /var/run/mysqld2</p>
<p><strong>paso 3:</strong></p>
<p>mysql_install_db &#8211;user=mysql &#8211;datadir=/var/lib/mysql1/<br />
mysql_install_db &#8211;user=mysql &#8211;datadir=/var/lib/mysql2/</p>
<p><strong>paso 4:</strong></p>
<p>[mysqld_multi]<br />
mysqld = /usr/bin/mysqld_safe<br />
mysqladmin = /usr/bin/mysqladmin</p>
<p>[mysqld1]<br />
datadir = /var/lib/mysql1<br />
socket = /var/lib/mysql1/mysql.sock<br />
pid-file = /var/run/mysqld1/mysqld1.pid<br />
user = mysql<br />
port = 3306<br />
server-id=1<br />
log-bin=mysql-bin<br />
log-error=/var/log/mysqld1.log</p>
<p>[mysqld2]<br />
datadir=/var/lib/mysql2<br />
socket=/var/lib/mysql2/mysql.sock<br />
pid-file = /var/run/mysqld2/mysqld2.pid<br />
user=mysql<br />
port = 3307<br />
server-id=2</p>
<p>Correr !!!</p>
<p>/etc/init.d/mysqld_multi start</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/mysql-server-multiple-instances/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NGINX as a replacement of APACHE</title>
		<link>http://www.symfony-community.com/nginx-as-a-replacement-of-apache?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nginx-as-a-replacement-of-apache</link>
		<comments>http://www.symfony-community.com/nginx-as-a-replacement-of-apache#comments</comments>
		<pubDate>Mon, 14 Mar 2011 23:56:55 +0000</pubDate>
		<dc:creator>fabian</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=578</guid>
		<description><![CDATA[Hi everyone, I&#8217;ve recently came across NGINX (http://wiki.nginx.org) which seems to be a very well respected replacement of our dear friend APACHE. I&#8217;ve been told that is faster, stable and it&#8217;s driven by newer technology. We&#8217;ll start testing int in<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/nginx-as-a-replacement-of-apache"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>I&#8217;ve recently came across NGINX (http://wiki.nginx.org) which seems to be a very well respected replacement of our dear friend APACHE.</p>
<p>I&#8217;ve been told that is faster, stable and it&#8217;s driven by newer technology. We&#8217;ll start testing int in house these days (specially the streaming capabilites).</p>
<p>Cheers,</p>
<p>-Fabian</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/nginx-as-a-replacement-of-apache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony app, LAMP Server poor performance troubleshooting</title>
		<link>http://www.symfony-community.com/symfony-app-lamp-server-poor-performance-troubleshooting?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=symfony-app-lamp-server-poor-performance-troubleshooting</link>
		<comments>http://www.symfony-community.com/symfony-app-lamp-server-poor-performance-troubleshooting#comments</comments>
		<pubDate>Mon, 14 Mar 2011 23:52:34 +0000</pubDate>
		<dc:creator>fabian</dc:creator>
				<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[QA - Testing]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=575</guid>
		<description><![CDATA[Hi everyone, long time no post If you ever face a poor performance symfony app on a LAMP server, you&#8217;ll might want to check on the following aspects: To start with, always check your application (codebase) to find out bad<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/symfony-app-lamp-server-poor-performance-troubleshooting"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>Hi everyone, long time no post <img src='http://www.symfony-community.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you ever face a poor performance symfony app on a LAMP server, you&#8217;ll might want to check on the following aspects:</p>
<p>To start with, always check your application (codebase) to find out bad programming practices such as:</p>
<ul>
<li>Doctrine (amount of queries executed)</li>
<li>HTML/CSS content (yslow firefox add on is very useful)</li>
</ul>
<p>Then continue with the OS level application such as apache. There is mod call server status that will take a snapshot of apache utilization at a certain time, this will provide information such as:</p>
<ul>
<li>threads open</li>
<li>resources allocated to each thread.</li>
</ul>
<p>Last but not least, look at the hardware utilization. We&#8217;ve succesfully used MUNIN to monitor the LAMP performance. It provides a historical view of the server metrics that will point out any performance bottleneck.</p>
<ul></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/symfony-app-lamp-server-poor-performance-troubleshooting/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cross-site scripting (XSS)</title>
		<link>http://www.symfony-community.com/cross-site-scripting-xss?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cross-site-scripting-xss</link>
		<comments>http://www.symfony-community.com/cross-site-scripting-xss#comments</comments>
		<pubDate>Fri, 10 Dec 2010 19:40:58 +0000</pubDate>
		<dc:creator>Exequiel Aguirre</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[client-side-script]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=566</guid>
		<description><![CDATA[This post do not intend to cover the whole subject.(It would take more than a few lines&#8230;). This is my first, basic, approach to script injection.So, feedback is always welcome,and will be appreciated First of all,what is XSS?(Or script injection)<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/cross-site-scripting-xss"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>This post do not intend to cover the whole subject.(It would take more than a few lines&#8230;).<br />
This is my first, basic, approach to script injection.So, feedback is always welcome,and will be appreciated<br />
First of all,what is XSS?(Or script injection)<br />
It refers to the process of making a page execute our own client-side-script code.<br />
In this case I will stick with a particular case,the permanent changes.<br />
The following example will clarify a bit:</p>
<p>Lets say, I&#8217;m on a on a page that let me input some data, and uses that information to create metatags over the page.</p>
<p>The input is not validated at all ,not in the input and not when writing the metatag component.(more common than you may think&#8230;)<br />
Now, you could write data like this</p>
<p>tag&#8221;/&gt;&lt;script/type=&#8217;text/javascript&#8217;&gt;alert(&#8216;message&#8217;);&lt;/script&gt;&lt;meta name=&#8221;fake&#8221; content=&#8221;fake</p>
<p>Then, each person that visits this page will get an alert pop up.<br />
Of course you can execute any code, and not just a naive alert.</p>
<p>What is happening?<br />
Well , the application is just adding the data between quotes of<br />
&lt;meta name=&#8221;tags&#8221; content=&#8221;______________&#8221; /&gt;<br />
so if you input:<br />
selenium<br />
The rendered tag would look like,<br />
&lt;meta name=&#8221;tags&#8221; content=&#8221;selenium&#8221; /&gt;</p>
<p>So far, so good.<br />
But when we add data like:<br />
tag&#8221;/&gt;&lt;script/type=&#8217;text/javascript&#8217;&gt;alert(&#8216;message&#8217;);&lt;/script&gt;&lt;meta name=&#8221;fake&#8221; content=&#8221;fake<br />
The rendered tag would look like,<br />
&lt;meta name=&#8221;tags&#8221; content=&#8221;tag&#8221;/&gt;&lt;script/type=&#8217;text/javascript&#8217;&gt;alert(&#8216;message&#8217;);&lt;/script&gt;&lt;meta name=&#8221;fake&#8221; content=&#8221;fake&#8221; /&gt;</p>
<p>And this is a correct html, but, with our script.</p>
<p>So,how can we prevent this?<br />
Again, this is just for starters.<br />
Validation:<br />
Use back-end validation and front-end validation.<br />
Back end validation is the real deal here.In my opinion,you should think of front-end validation<br />
just as a way to make the validations more user friendly, but not as a security measure.</p>
<p>Escaping:<br />
In cases like the example above, a solution could be to escape all string before writing them to a page.<br />
But of course, you have to do this in every place you are writing this string down.<br />
Remember that if you do not use validations, the malicious string is already in.</p>
<p>In java, you have easy ways to escape strings, like:StringEscapeUtils.escapeHtml(String)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/cross-site-scripting-xss/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Good article about HTML/CSS (http://html5reset.org)</title>
		<link>http://www.symfony-community.com/good-article-about-htmlcss-httphtml5reset-org?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=good-article-about-htmlcss-httphtml5reset-org</link>
		<comments>http://www.symfony-community.com/good-article-about-htmlcss-httphtml5reset-org#comments</comments>
		<pubDate>Fri, 10 Dec 2010 18:09:17 +0000</pubDate>
		<dc:creator>fabian</dc:creator>
				<category><![CDATA[Estandares]]></category>
		<category><![CDATA[HTML - CSS - Javascript]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Trainning material]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=562</guid>
		<description><![CDATA[A colleague of mine has recently share this url with me, which seems a really good source to check on best practices for building html/css. it also provides some sample base code and references to articles that support the approach<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/good-article-about-htmlcss-httphtml5reset-org"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>A colleague of mine has recently share this url with me, which seems a really good source to check on best practices for building html/css. it also provides some sample base code and references to articles that support the approach taken. </p>
<p>Mostly important, it pretty much cover some basic x-browser issues, provides a way to do easy self-clearing floats, supports HTML5.</p>
<p>Here it is, give it a look and share your comments. </p>
<p>http://html5reset.org/#about</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/good-article-about-htmlcss-httphtml5reset-org/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MYSQL SQL_CALC_FOUND_ROWS</title>
		<link>http://www.symfony-community.com/mysql-sql_calc_found_rows?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-sql_calc_found_rows</link>
		<comments>http://www.symfony-community.com/mysql-sql_calc_found_rows#comments</comments>
		<pubDate>Thu, 02 Dec 2010 12:20:39 +0000</pubDate>
		<dc:creator>Exequiel Aguirre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=557</guid>
		<description><![CDATA[Some times, I encounter the problem of having to get a few items and the total amount of items(Just how many, not a detail of these items) from a huge database. You probably encounter a similar problem as well.For instance,<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/mysql-sql_calc_found_rows"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>Some times, I encounter the problem of having to get a few items and the total amount of items(Just how many, not a detail of these items) from a huge database.</p>
<p>You probably encounter a similar problem as well.For instance, think about a paginator.You need ,maybe,10/25/100 results (not all of them) to show.But, at the same time, you need the total amount of items, to know how many pages will be.If you are using mysql,  SQL_CALC_FOUND_ROWS can be a good choice.</p>
<p>So,what is SQL_CALC_FOUND_ROWS?</p>
<p>A SELECT statement may include a LIMIT clause to restrict the number of rows the server returns to the client.</p>
<p>In some cases, it is desirable to know how many rows the statement would have returned without the LIMIT, but without running the statement again.<br />
To obtain this row count, include a SQL_CALC_FOUND_ROWS option in the SELECT statement, and then invoke FOUND_ROWS() afterward:</p>
<p>mysql&gt; SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name<br />
-&gt; WHERE id &gt; 100 LIMIT 10;<br />
mysql&gt; SELECT FOUND_ROWS();</p>
<p>The second SELECT returns a number indicating how many rows the first SELECT would have returned if it had been written without the LIMIT clause.</p>
<p>Looks handy, right ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/mysql-sql_calc_found_rows/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress y un plugin para traduccion</title>
		<link>http://www.symfony-community.com/wordpress-y-un-plugin-para-traduccion?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-y-un-plugin-para-traduccion</link>
		<comments>http://www.symfony-community.com/wordpress-y-un-plugin-para-traduccion#comments</comments>
		<pubDate>Mon, 29 Nov 2010 20:07:09 +0000</pubDate>
		<dc:creator>andres.balasso</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=551</guid>
		<description><![CDATA[EL mejor plugin para traduccion que encontre despues de una larga busqueda fue:  Transposh Translation Filter Es todo automatico, traduce utilizando el motor de google o bing, y ademas se puede editar al vuela la traduccion con tanto de historial!<span class="ellipsis">&#8230;</span> <a href="http://www.symfony-community.com/wordpress-y-un-plugin-para-traduccion"><div class="see-more">See more &#8250;</div><!-- end of .see-more --></a>]]></description>
			<content:encoded><![CDATA[<p>EL mejor plugin para traduccion que encontre despues de una larga busqueda fue:  <strong>Transposh Translation Filter</strong></p>
<p>Es todo automatico, traduce utilizando el motor de google o bing, y ademas se puede editar al vuela la traduccion con tanto de historial! Increible herramienta!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/wordpress-y-un-plugin-para-traduccion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crea tus scripts de importacion o migracion de datos facil y rápido</title>
		<link>http://www.symfony-community.com/crea-tus-scripts-de-importacion-o-migracion-de-datos-facil-y-rapido?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=crea-tus-scripts-de-importacion-o-migracion-de-datos-facil-y-rapido</link>
		<comments>http://www.symfony-community.com/crea-tus-scripts-de-importacion-o-migracion-de-datos-facil-y-rapido#comments</comments>
		<pubDate>Mon, 29 Nov 2010 20:06:24 +0000</pubDate>
		<dc:creator>Pablo Peralta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.excedesoft.com/blog/?p=550</guid>
		<description><![CDATA[Una muy buen herramienta para gestionar facil y graficamente migraciones es Kettle &#8211; Spoon Community Edition (de la suite de Pentaho Corporation).]]></description>
			<content:encoded><![CDATA[<p>Una muy buen herramienta para gestionar facil y graficamente migraciones es Kettle &#8211; Spoon Community Edition (de la suite de Pentaho Corporation).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.symfony-community.com/crea-tus-scripts-de-importacion-o-migracion-de-datos-facil-y-rapido/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

