<?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 for triptic techblog</title>
	<atom:link href="http://techblog.triptic.nl/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.triptic.nl</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 17 Jul 2011 07:16:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on ezMigrate plugin for WordPress by Onno Marsman</title>
		<link>http://techblog.triptic.nl/ezmigrate-plugin-for-wordpress/comment-page-1/#comment-73845</link>
		<dc:creator>Onno Marsman</dc:creator>
		<pubDate>Sun, 17 Jul 2011 07:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev2.triptic.net/~onno/projects/triptic_techblog/?p=6#comment-73845</guid>
		<description>@Alex: good question. Unfortunately, I haven&#039;t tried this yet. Because this plugin requires changes in wp-config, my first guess is that it would be necessary to install it on all sites, but I am not sure about this and whether it would work at all.
I will have a look at this in the future.</description>
		<content:encoded><![CDATA[<p>@Alex: good question. Unfortunately, I haven&#8217;t tried this yet. Because this plugin requires changes in wp-config, my first guess is that it would be necessary to install it on all sites, but I am not sure about this and whether it would work at all.<br />
I will have a look at this in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ezMigrate plugin for WordPress by alx359</title>
		<link>http://techblog.triptic.nl/ezmigrate-plugin-for-wordpress/comment-page-1/#comment-73844</link>
		<dc:creator>alx359</dc:creator>
		<pubDate>Thu, 14 Jul 2011 23:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://dev2.triptic.net/~onno/projects/triptic_techblog/?p=6#comment-73844</guid>
		<description>Hello Onno,
Does this plugin would work in a mutisite setup (3.2.x). If yes, need to install network or per site?
Thanks,
Alex</description>
		<content:encoded><![CDATA[<p>Hello Onno,<br />
Does this plugin would work in a mutisite setup (3.2.x). If yes, need to install network or per site?<br />
Thanks,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by Onno Marsman</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-73838</link>
		<dc:creator>Onno Marsman</dc:creator>
		<pubDate>Wed, 29 Jun 2011 19:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-73838</guid>
		<description>@Patrick: I changed it in version 0.11
Thanks</description>
		<content:encoded><![CDATA[<p>@Patrick: I changed it in version 0.11<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by Patrick Fenner</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-73837</link>
		<dc:creator>Patrick Fenner</dc:creator>
		<pubDate>Wed, 29 Jun 2011 12:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-73837</guid>
		<description>Had a problem with ezMigrate version 0.10 and WP 3.1.3, no content was displayed for any posts:

PHP Warning:  Parameter 1 to ezMigrate_show_content() expected to be a reference, value given in /path/to/wp-includes/plugin.php on line 166

however, I fixed that with:

diff --git a/blog/wp-content/plugins/ezmigrate/ezMigrate.php b/blog/wp-content/plugins/ezmigrate/ezMigrate.php
index 3efa396..ae0e7e9 100644
--- a/blog/wp-content/plugins/ezmigrate/ezMigrate.php
+++ b/blog/wp-content/plugins/ezmigrate/ezMigrate.php
@@ -59,7 +59,7 @@ if (!function_exists(&#039;ezMigrate_getUrl&#039;)) {
 
 define(&#039;EZMIGRATE_TAG&#039;, &#039;-=-([ezMigrate_tag])-=-&#039;);
 
-function ezMigrate_show_content(&amp;$content)
+function ezMigrate_show_content($content)
 {
     return preg_replace(&#039;#(src&#124;href)=\&quot;&#039;.preg_quote(EZMIGRATE_TAG, &#039;#&#039;).&#039;#i&#039;, &quot;\\1=\&quot;&quot;.ezMigrate_getUrl(), $content);
 } //function ezMigrate_the_content


Hope that helps.</description>
		<content:encoded><![CDATA[<p>Had a problem with ezMigrate version 0.10 and WP 3.1.3, no content was displayed for any posts:</p>
<p>PHP Warning:  Parameter 1 to ezMigrate_show_content() expected to be a reference, value given in /path/to/wp-includes/plugin.php on line 166</p>
<p>however, I fixed that with:</p>
<p>diff &#8211;git a/blog/wp-content/plugins/ezmigrate/ezMigrate.php b/blog/wp-content/plugins/ezmigrate/ezMigrate.php<br />
index 3efa396..ae0e7e9 100644<br />
&#8212; a/blog/wp-content/plugins/ezmigrate/ezMigrate.php<br />
+++ b/blog/wp-content/plugins/ezmigrate/ezMigrate.php<br />
@@ -59,7 +59,7 @@ if (!function_exists(&#8216;ezMigrate_getUrl&#8217;)) {</p>
<p> define(&#8216;EZMIGRATE_TAG&#8217;, &#8216;-=-([ezMigrate_tag])-=-&#8217;);</p>
<p>-function ezMigrate_show_content(&amp;$content)<br />
+function ezMigrate_show_content($content)<br />
 {<br />
     return preg_replace(&#8216;#(src|href)=\&#8221;&#8216;.preg_quote(EZMIGRATE_TAG, &#8216;#&#8217;).&#8217;#i&#8217;, &#8220;\\1=\&#8221;".ezMigrate_getUrl(), $content);<br />
 } //function ezMigrate_the_content</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by Onno Marsman</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-73834</link>
		<dc:creator>Onno Marsman</dc:creator>
		<pubDate>Sat, 11 Jun 2011 18:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-73834</guid>
		<description>@John C.: This error happened when the short_open_tag php.ini directive was set to off. It is fixed in version 0.10 of the plugin.</description>
		<content:encoded><![CDATA[<p>@John C.: This error happened when the short_open_tag php.ini directive was set to off. It is fixed in version 0.10 of the plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ezMigrate plugin for WordPress by Onno Marsman</title>
		<link>http://techblog.triptic.nl/ezmigrate-plugin-for-wordpress/comment-page-1/#comment-73833</link>
		<dc:creator>Onno Marsman</dc:creator>
		<pubDate>Sat, 11 Jun 2011 18:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://dev2.triptic.net/~onno/projects/triptic_techblog/?p=6#comment-73833</guid>
		<description>@elm: This happened when the short_open_tag php.ini directive was set to off. It is fixed in version 0.10 of the plugin.</description>
		<content:encoded><![CDATA[<p>@elm: This happened when the short_open_tag php.ini directive was set to off. It is fixed in version 0.10 of the plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ezMigrate plugin for WordPress by elm</title>
		<link>http://techblog.triptic.nl/ezmigrate-plugin-for-wordpress/comment-page-1/#comment-73762</link>
		<dc:creator>elm</dc:creator>
		<pubDate>Fri, 20 May 2011 16:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://dev2.triptic.net/~onno/projects/triptic_techblog/?p=6#comment-73762</guid>
		<description>hi,
first of all thanks for the plugin! i had some trouble when moving my site with your plugin though. it took me quite a while to figure it out:

1. in ezMigrate.php
i replaced the first if-block with this, because somehow my server misinterpreted the closing &quot;?&gt;&quot; within the {} after the if statement. I changed the whole block to this: 

if (!function_exists(&#039;ezMigrate_getUrl&#039;)) {
    echo &quot;ERROR in ezMigrate plugin:
    Please insert the following code into your wp-config.php at a line before the line `require_once(ABSPATH . &#039;wp-settings.php&#039;);` :
    `require_once ABSPATH.&#039;wp-content/plugins/ezmigrate/includes/config_include.php&#039;;`&quot;;
    exit;
}

2. in both ezMigrate.php and config_include.php:
I had to replace &quot;&lt;?&quot;  by &quot;&lt;?php&quot; in order to work. I don&#039;t know why this is, but it did&#039;nt work without the php.

Now it works perfectly.</description>
		<content:encoded><![CDATA[<p>hi,<br />
first of all thanks for the plugin! i had some trouble when moving my site with your plugin though. it took me quite a while to figure it out:</p>
<p>1. in ezMigrate.php<br />
i replaced the first if-block with this, because somehow my server misinterpreted the closing &#8220;?&gt;&#8221; within the {} after the if statement. I changed the whole block to this: </p>
<p>if (!function_exists(&#8216;ezMigrate_getUrl&#8217;)) {<br />
    echo &#8220;ERROR in ezMigrate plugin:<br />
    Please insert the following code into your wp-config.php at a line before the line `require_once(ABSPATH . &#8216;wp-settings.php&#8217;);` :<br />
    `require_once ABSPATH.&#8217;wp-content/plugins/ezmigrate/includes/config_include.php&#8217;;`&#8221;;<br />
    exit;<br />
}</p>
<p>2. in both ezMigrate.php and config_include.php:<br />
I had to replace &#8220;&lt;?&quot;  by &quot;&lt;?php&quot; in order to work. I don&#039;t know why this is, but it did&#039;nt work without the php.</p>
<p>Now it works perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by billy</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-69368</link>
		<dc:creator>billy</dc:creator>
		<pubDate>Mon, 28 Mar 2011 18:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-69368</guid>
		<description>i have the same error as Matt.
worked fine as mysite.com/wp
but i just changed settings so that mysite.com displays my wordpress
moved index &amp; .htaccess 
modified index as well
any ideas?</description>
		<content:encoded><![CDATA[<p>i have the same error as Matt.<br />
worked fine as mysite.com/wp<br />
but i just changed settings so that mysite.com displays my wordpress<br />
moved index &amp; .htaccess<br />
modified index as well<br />
any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by John C.</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-69090</link>
		<dc:creator>John C.</dc:creator>
		<pubDate>Sun, 27 Mar 2011 03:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-69090</guid>
		<description>I&#039;m stumped.  Your plug-in seems to be JUST the thing I need.  I cannot get it installed however.  

Added this to my header.php - no problem:
&lt;base href=&quot;/&quot; /&gt;

Tried to make the recommended changes to wp-config.php and it puts a ton of code above my page.  Also tried to activate the plugin and get this message:
Plugin could not be activated because it triggered a fatal error.  in the header of your template. You can easily do this yourself by placing Fatal error: Call to undefined function ezMigrate_getFullUrl() in C:\xampp\htdocs\1910Metal.com\wp-content\plugins\ezmigrate\ezMigrate.php on line 43

Not sure where to go from here.  I use the Weaver theme.  Can you help?</description>
		<content:encoded><![CDATA[<p>I&#8217;m stumped.  Your plug-in seems to be JUST the thing I need.  I cannot get it installed however.  </p>
<p>Added this to my header.php &#8211; no problem:<br />
&lt;base href=&quot;/&#8221; /&gt;</p>
<p>Tried to make the recommended changes to wp-config.php and it puts a ton of code above my page.  Also tried to activate the plugin and get this message:<br />
Plugin could not be activated because it triggered a fatal error.  in the header of your template. You can easily do this yourself by placing Fatal error: Call to undefined function ezMigrate_getFullUrl() in C:\xampp\htdocs\1910Metal.com\wp-content\plugins\ezmigrate\ezMigrate.php on line 43</p>
<p>Not sure where to go from here.  I use the Weaver theme.  Can you help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving wordpress using the ezmigrate plugin by Onno Marsman</title>
		<link>http://techblog.triptic.nl/moving-wordpress-using-the-ezmigrate-plugin/comment-page-1/#comment-63066</link>
		<dc:creator>Onno Marsman</dc:creator>
		<pubDate>Mon, 17 Jan 2011 13:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.triptic.nl/?p=81#comment-63066</guid>
		<description>@Nik: you should be able to deactivate the plugin without any problems. There have been issues with this in the past so make sure you have the current version of the plugin.
@Matt: The standard export of wordpress does not contain blogroll information. If you also want to migrate this information you need to look at another way of dumping you datbase. For example with phpmyadmin.
I will contact you by email about the error, so we can resolve this.
@Paul: Uri&#039;s stored or configured in plugins are not changed by this plugin, so this is also the case for nextgen galleries.</description>
		<content:encoded><![CDATA[<p>@Nik: you should be able to deactivate the plugin without any problems. There have been issues with this in the past so make sure you have the current version of the plugin.<br />
@Matt: The standard export of wordpress does not contain blogroll information. If you also want to migrate this information you need to look at another way of dumping you datbase. For example with phpmyadmin.<br />
I will contact you by email about the error, so we can resolve this.<br />
@Paul: Uri&#8217;s stored or configured in plugins are not changed by this plugin, so this is also the case for nextgen galleries.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

