<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Integrate Wordpress into symfony</title>
	<atom:link href="http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/</link>
	<description>Symfony, Php, Google Maps, Ajax</description>
	<lastBuildDate>Wed, 05 Oct 2011 21:27:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: denis</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-656</link>
		<dc:creator>denis</dc:creator>
		<pubDate>Thu, 04 Mar 2010 14:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-656</guid>
		<description>The easiest way to fix l10ni18n conflict is to replace all &quot;__(&quot; in Wordpress source files with &quot;__l18n(&quot;.</description>
		<content:encoded><![CDATA[<p>The easiest way to fix l10ni18n conflict is to replace all &#8220;__(&#8221; in Wordpress source files with &#8220;__l18n(&#8220;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ka</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-654</link>
		<dc:creator>ka</dc:creator>
		<pubDate>Tue, 09 Feb 2010 23:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-654</guid>
		<description>the __() function of Wordpress and symfony are conflicting..

Here is the solution : 

rename wordpress&#039; __() function to wp__()

with Mac OS X, inside the wordpress folder, launch the find &amp; replace function : 
find . -name &#039;*.php&#039; &#124; xargs perl -pi -e &#039;s/(\b)__(\b)/\1wp__\2/g&#039;</description>
		<content:encoded><![CDATA[<p>the __() function of Wordpress and symfony are conflicting..</p>
<p>Here is the solution : </p>
<p>rename wordpress&#8217; __() function to wp__()</p>
<p>with Mac OS X, inside the wordpress folder, launch the find &amp; replace function :<br />
find . -name &#8216;*.php&#8217; | xargs perl -pi -e &#8217;s/(\b)__(\b)/\1wp__\2/g&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sagar</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-651</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Wed, 27 Jan 2010 08:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-651</guid>
		<description>Hi,
I am getting the below error
&quot;Fatal error: Call to a member function register_handler() on a non-object in /var/www/html/pslsym_wordpress/plugins/sfWordpressPlugin/lib/vendor/wordpress/wp-includes/media.php on line 1208&quot;

pls help</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am getting the below error<br />
&#8220;Fatal error: Call to a member function register_handler() on a non-object in /var/www/html/pslsym_wordpress/plugins/sfWordpressPlugin/lib/vendor/wordpress/wp-includes/media.php on line 1208&#8243;</p>
<p>pls help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-627</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:13:35 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-627</guid>
		<description>@nresni dit: If I can take your issue to mean that you can in fact get to the wp-login.php page but when you actually log in successfully you get a Symfony 404 page then all you need to do is set the default login page to be /wp-admin/index.php instead of just /wp-admin/.  To do this find the following in wp-login.php:

$redirect_to = admin_url();

and replace it with:

$redirect_to = admin_url(&#039;index.php&#039;);

and you should be good to go.</description>
		<content:encoded><![CDATA[<p>@nresni dit: If I can take your issue to mean that you can in fact get to the wp-login.php page but when you actually log in successfully you get a Symfony 404 page then all you need to do is set the default login page to be /wp-admin/index.php instead of just /wp-admin/.  To do this find the following in wp-login.php:</p>
<p>$redirect_to = admin_url();</p>
<p>and replace it with:</p>
<p>$redirect_to = admin_url(&#8216;index.php&#8217;);</p>
<p>and you should be good to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-626</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:10:32 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-626</guid>
		<description>First of all, thank you very much for this article, it was extremely helpful.  After working with this implementation for some time I started to run into a lot of integration issues when upgrading to newer versions of WordPress until finally I decided to re-approach the entire implementation.  As a result I was able to accomplish this same goal but in a way that doesn&#039;t conflict with WordPress&#039;s global variables or Symfony&#039;s internationalization and I&#039;ve written a post about it here: http://blog.codeclarity.com/2009/12/02/integrating-symfony-and-wordpress/.  I wanted to be sure and let you know as I reference your article in mine, my implementation is just a few variations on yours and you were paramount in getting me going on this project.  Thanks again.</description>
		<content:encoded><![CDATA[<p>First of all, thank you very much for this article, it was extremely helpful.  After working with this implementation for some time I started to run into a lot of integration issues when upgrading to newer versions of WordPress until finally I decided to re-approach the entire implementation.  As a result I was able to accomplish this same goal but in a way that doesn&#8217;t conflict with WordPress&#8217;s global variables or Symfony&#8217;s internationalization and I&#8217;ve written a post about it here: <a href="http://blog.codeclarity.com/2009/12/02/integrating-symfony-and-wordpress/" rel="nofollow">http://blog.codeclarity.com/2009/12/02/integrating-symfony-and-wordpress/</a>.  I wanted to be sure and let you know as I reference your article in mine, my implementation is just a few variations on yours and you were paramount in getting me going on this project.  Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Stevense</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-617</link>
		<dc:creator>Anton Stevense</dc:creator>
		<pubDate>Tue, 10 Nov 2009 21:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-617</guid>
		<description>Thanks Fabrice,

My apache mod_rewrite module was not enabled. Now it is enabled, and everything works !!</description>
		<content:encoded><![CDATA[<p>Thanks Fabrice,</p>
<p>My apache mod_rewrite module was not enabled. Now it is enabled, and everything works !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Stevense</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-615</link>
		<dc:creator>Anton Stevense</dc:creator>
		<pubDate>Sat, 07 Nov 2009 14:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-615</guid>
		<description>Hi Fabrice,

Nice post. I tried to implement this.
However when I access localhost/blog, I get the direct result of WordPress (without being passed by symfony). 
If I use localhost/frontend_dev.php/blog then everything works great!

What am I doing wrong?</description>
		<content:encoded><![CDATA[<p>Hi Fabrice,</p>
<p>Nice post. I tried to implement this.<br />
However when I access localhost/blog, I get the direct result of WordPress (without being passed by symfony).<br />
If I use localhost/frontend_dev.php/blog then everything works great!</p>
<p>What am I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabrice Bernhard</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-612</link>
		<dc:creator>Fabrice Bernhard</dc:creator>
		<pubDate>Wed, 21 Oct 2009 08:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-612</guid>
		<description>If you have the standard symfony Apache .htaccess and your followed the tutorial /blog/wp-admin/index.php should work.</description>
		<content:encoded><![CDATA[<p>If you have the standard symfony Apache .htaccess and your followed the tutorial /blog/wp-admin/index.php should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nresni</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-607</link>
		<dc:creator>nresni</dc:creator>
		<pubDate>Wed, 30 Sep 2009 09:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-607</guid>
		<description>Hi Fabrice,

I just one problem, I&#039;m unable to connect to backoffice with url  /blog/wp-login.php
	
thank you in advance</description>
		<content:encoded><![CDATA[<p>Hi Fabrice,</p>
<p>I just one problem, I&#8217;m unable to connect to backoffice with url  /blog/wp-login.php</p>
<p>thank you in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabrice Bernhard</title>
		<link>http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/#comment-596</link>
		<dc:creator>Fabrice Bernhard</dc:creator>
		<pubDate>Sun, 06 Sep 2009 13:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://v2.theodo.fr/blog/?p=11#comment-596</guid>
		<description>Joris: your error message is completely unclear. Please be more detailed if you want some help and contact me directly fabriceb -at- theodo . fr

Alex: this is just a tutorial for an integration and requires good technical skills to adapt to every problem. This is also why I have not taken the time to pluginify this, because it is hard to make it generic. For the routing, have you been careful to remove the .htaccess as mentioned ?</description>
		<content:encoded><![CDATA[<p>Joris: your error message is completely unclear. Please be more detailed if you want some help and contact me directly fabriceb -at- theodo . fr</p>
<p>Alex: this is just a tutorial for an integration and requires good technical skills to adapt to every problem. This is also why I have not taken the time to pluginify this, because it is hard to make it generic. For the routing, have you been careful to remove the .htaccess as mentioned ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

