<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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"
		>
	<channel>
		<title>WordPress.com Forums &#187; Tag: export content - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/export-content</link>
		<description>WordPress.com Forums &#187; Tag: export content - Recent Posts</description>
		<language>en</language>
		<pubDate>Thu, 23 May 2013 12:03:41 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/export-content" rel="self" type="application/rss+xml" />

		<item>
			<title>richardcarter on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported/page/2#post-997925</link>
			<pubDate>Tue, 04 Sep 2012 13:33:30 +0000</pubDate>
			<dc:creator>richardcarter</dc:creator>
			<guid isPermaLink="false">997925@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks, much appreciated.</p>
<p>I just spoke with the hosting company tech support, and they (as usual) put me on hold and did the mysqldump while I waited, all in about 5 minutes.  (That's why we stay with them.  No excuses, no attitudes, just great service.)<br />
I will ftp it and run the test again.</p>
<p>Thanks again.  You explanation and assistance was great.  Easy to understand, complete, and appreciated.</p>
<p>RC
</p>
]]></description>
					</item>
		<item>
			<title>dllh on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported/page/2#post-997909</link>
			<pubDate>Tue, 04 Sep 2012 13:05:13 +0000</pubDate>
			<dc:creator>dllh</dc:creator>
			<guid isPermaLink="false">997909@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>We have a custom internal exporter that relies on code bits that aren't more widely available, so it's unfortunately not really portable.</p>
<p>There are rumblings internally of trying to do some improvements to the exporter, but given the problem here -- which amounts to resource issues that will naturally vary from host to host -- I don't know that there's really a silver bullet. In other words, any changes we contribute would maybe make the exporter more easily extended but not necessarily more useful on shared hosting for large sites, since you'd still run into resource issues. In those cases, a mysqldump is generally cleaner anyway.</p>
<p>Another option, by the way, would be to export by date range and do smaller chunks, though I believe this can leave file attachments behind (something we do hope to work on eventually). Since you'll be able to copy your file directory over, that may be a lesser concern, however.
</p>
]]></description>
					</item>
		<item>
			<title>richardcarter on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-997904</link>
			<pubDate>Tue, 04 Sep 2012 12:55:30 +0000</pubDate>
			<dc:creator>richardcarter</dc:creator>
			<guid isPermaLink="false">997904@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>dllh,<br />
Didn't see your last post before I posted last.</p>
<p>Thanks.  I'll bounce that off the hosting company.</p>
<p>1.  Can you give me a hint as to which command line exporter you use?......</p>
<p>2. Any chance we can look forward to a better fix for this issue from WP in the near future?</p>
<p>Thanks again,  you very fast reply is appreciated.
</p>
]]></description>
					</item>
		<item>
			<title>richardcarter on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-997902</link>
			<pubDate>Tue, 04 Sep 2012 12:50:03 +0000</pubDate>
			<dc:creator>richardcarter</dc:creator>
			<guid isPermaLink="false">997902@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>BTW, our xml file size consistantly stops at 19,083KB.</p>
<p>We also tried adding the fix of:<br />
/**<br />
* Dynamically increase allowed memory limit for export.<br />
*<br />
*/<br />
function my_export_wp() {<br />
  ini_set('memory_limit', '1024M');<br />
}<br />
add_action('export_wp', 'my_export_wp');</p>
<p>As stated at:  <a href="http://beerpla.net/2012/04/13/how-to-fix-incomplete-wordpress-wxr-exports/" rel="nofollow">http://beerpla.net/2012/04/13/how-to-fix-incomplete-wordpress-wxr-exports/</a>.</p>
<p>Didn't work.  (Acknowledging we had a different error message.)</p>
<p>We are using WordPress 3.4.1
</p>
]]></description>
					</item>
		<item>
			<title>dllh on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-997890</link>
			<pubDate>Tue, 04 Sep 2012 12:26:45 +0000</pubDate>
			<dc:creator>dllh</dc:creator>
			<guid isPermaLink="false">997890@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@richardcarter, the issue here tends to be that the server just runs out of resources before the request can finish and spews out what it's managed to put together so far. I have a method of exporting blogs that gets around browser/request limits by letting me run it at the command line, so I'm able to export full blogs. You could try googling for "WordPress command line exporter" and see if any useful tools surface (I found <a href="http://www.ericmichaelstone.com/?p=4607">this one</a> but haven't tested and can't say whether or how well it works). </p>
<p>Or, perhaps the simpler thing if your hosting company is willing to help, would be to have them do what's called a mysqldump of the database, which they can then slurp into the new database on the new server. This in fact will provide a better snapshot of your old site, as it'll include things like options and any plugin data that the exporter itself won't grab.
</p>
]]></description>
					</item>
		<item>
			<title>richardcarter on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-997886</link>
			<pubDate>Tue, 04 Sep 2012 12:17:20 +0000</pubDate>
			<dc:creator>richardcarter</dc:creator>
			<guid isPermaLink="false">997886@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>dllh,<br />
I've read the thread above.</p>
<p>We are also having the same problem.</p>
<p>We are not hosted on wordpress.com, but on a commercial hosting service.<br />
They are a large, well-known hosting company, one of the largest, and we have had excellent tech services from them for over four years.  In other words, they are extremely capable, and knowledgeable with WordPress.<br />
We have had exhaustive discussions with them as we have been running a trial move of a domain from a shared account onto its own separate hosting account.  The test has been marked and hampered many times by this same problem:  the xml file is incomplete.</p>
<p>We have the same problems agrorama describes, as do a number of other WP users.</p>
<p>I would like to know what you did differently that allowed you to export agrorama's xml file and email it to them, that they were not able to do, or was not covered in the forums or codex.</p>
<p>I am leaning to the conclusion that if wordpress.com can do it, there is a solution, but the process is not evident in the wordpress.org forums.</p>
<p>Can your provide the process please???
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-957947</link>
			<pubDate>Thu, 26 Jul 2012 18:52:28 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">957947@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks a lot<br />
Have a nice day!
</p>
]]></description>
					</item>
		<item>
			<title>dllh on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-957926</link>
			<pubDate>Thu, 26 Jul 2012 18:42:43 +0000</pubDate>
			<dc:creator>dllh</dc:creator>
			<guid isPermaLink="false">957926@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've just sent that off for you.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-957879</link>
			<pubDate>Thu, 26 Jul 2012 18:13:36 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">957879@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The domain name transfer was completed a couple of hours ago. Could you please export all the content from lesvosnews.net and send it over to my IT collaborator's email? He just send you an email (Orion Web) as well.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-955303</link>
			<pubDate>Tue, 24 Jul 2012 07:28:25 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">955303@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I just downloaded the XML - it's fine :)</p>
<p>I'll ask you once more to download the XML for me during the next couple of days.</p>
<p>Thanks a lot
</p>
]]></description>
					</item>
		<item>
			<title>dllh on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-955179</link>
			<pubDate>Tue, 24 Jul 2012 02:26:06 +0000</pubDate>
			<dc:creator>dllh</dc:creator>
			<guid isPermaLink="false">955179@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>A reply here is fine, or you can reply to the email I sent the export links in, and I'll be glad to re-export for you.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-955095</link>
			<pubDate>Mon, 23 Jul 2012 23:43:06 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">955095@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi and thank you very much for that.</p>
<p>During the next 2-5 days, just after the domain name transfer is completed, I'll need another, updated export . May I post again here to ask for it or should I contact you in another way?</p>
<p>Thanks again
</p>
]]></description>
					</item>
		<item>
			<title>dllh on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954949</link>
			<pubDate>Mon, 23 Jul 2012 22:20:49 +0000</pubDate>
			<dc:creator>dllh</dc:creator>
			<guid isPermaLink="false">954949@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi, agrorama. I've sent you an email with a link to your export file.
</p>
]]></description>
					</item>
		<item>
			<title>macmanx on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954830</link>
			<pubDate>Mon, 23 Jul 2012 21:13:26 +0000</pubDate>
			<dc:creator>macmanx</dc:creator>
			<guid isPermaLink="false">954830@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hm, this is no good then. I'll see if I can get one of our developers to generate a full export for you.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954787</link>
			<pubDate>Mon, 23 Jul 2012 20:26:57 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">954787@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It's even worse now, the file is only 60.1 MB.</p>
<p>Only 7430 posts (out of total around 9151 published articles) are included. </p>
<p>The latest article included in the file was published on 26th of December, 2011.
</p>
]]></description>
					</item>
		<item>
			<title>macmanx on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954771</link>
			<pubDate>Mon, 23 Jul 2012 20:16:21 +0000</pubDate>
			<dc:creator>macmanx</dc:creator>
			<guid isPermaLink="false">954771@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Ok, that's odd. Would you please try one more time now and let me know what you get?
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954755</link>
			<pubDate>Mon, 23 Jul 2012 20:06:47 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">954755@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Latest XML (yesterday): 92.3 MB<br />
Previous attempt (a week ago): 65.5 MB
</p>
]]></description>
					</item>
		<item>
			<title>macmanx on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954743</link>
			<pubDate>Mon, 23 Jul 2012 20:01:07 +0000</pubDate>
			<dc:creator>macmanx</dc:creator>
			<guid isPermaLink="false">954743@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>What is the file size of the export file you're receiving?
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954723</link>
			<pubDate>Mon, 23 Jul 2012 19:49:28 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">954723@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The migration tool I'm using to convert WP posts to Drupal nodes transfers works with attachments only with the full export XML. If I export separate months, image paths are not converted correctly. So no, partial exports will not work for my case (and for every WP to Drupal 7 Migration scenario).</p>
<p>I'm exporting the content to my local server, having increased all necessary limits (download limit, max execution time etc) in php.ini configuration file. Everything seems to work fine from my side, so I think that it's a WP issue, as the downloaded XML is missing the closing &#60;channel&#62; and &#60;rss&#62; tags. For some reason, some WP posts are not included in the XML. </p>
<p>For example, I tried again 2 days ago and the last article included in the XML file was from July 16, which is a better result compared to my previous attempt, during which many thousand articles were missing (everything after January 2012).</p>
<p>I would appreciate it if you could provide me with some help in order to get a final &#38; <strong>full XML export</strong> (sometime during the next couple of days, after the domain name transfer proxess is confirmed) or make it easier (WP server configuration?) for the whole process not to be interrupted during my next &#38; final export.
</p>
]]></description>
					</item>
		<item>
			<title>macmanx on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-954633</link>
			<pubDate>Mon, 23 Jul 2012 18:55:04 +0000</pubDate>
			<dc:creator>macmanx</dc:creator>
			<guid isPermaLink="false">954633@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You may have too many posts for a single export shot. Have you tried only exporting specific months? Does that work for you?
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-950397</link>
			<pubDate>Fri, 20 Jul 2012 11:35:33 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">950397@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I understand that and apologize for posting more than once, it's just that I really need help on that.</p>
<p>OK, I'll be patient, thank you :)
</p>
]]></description>
					</item>
		<item>
			<title>ardpete on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-950381</link>
			<pubDate>Fri, 20 Jul 2012 11:10:54 +0000</pubDate>
			<dc:creator>ardpete</dc:creator>
			<guid isPermaLink="false">950381@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Be patient. The thread has been tagged for staff to look at it. You continually posting won't make them read it any quicker.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-950376</link>
			<pubDate>Fri, 20 Jul 2012 11:02:47 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">950376@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Can I please have some support over this? If not now, can you please inform me when help will be available?
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949881</link>
			<pubDate>Thu, 19 Jul 2012 21:36:12 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">949881@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I understand, but this thread was flagged for their attention 24 hours ago. Is it normal to wait so long for a support request?
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949872</link>
			<pubDate>Thu, 19 Jul 2012 21:29:13 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">949872@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm sorry but Staff are away on their meet-up until July 23rd and they are currently monitoring threads. They only show up here periodically to deal with the threads that we Volunteers have flagged for their attention.
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949865</link>
			<pubDate>Thu, 19 Jul 2012 21:24:46 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">949865@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>??
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949519</link>
			<pubDate>Thu, 19 Jul 2012 17:23:36 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">949519@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>anyone?
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949281</link>
			<pubDate>Thu, 19 Jul 2012 14:51:29 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">949281@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Unfortunately, I retried to export the content of my blog but again, the export is incomplete. More than 2500 posts are missing. </p>
<p>Can I have some official support for this please??
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-949110</link>
			<pubDate>Thu, 19 Jul 2012 10:01:59 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">949110@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Update:<br />
I changed my php.ini settings for max downloads, max execution time etc and I'll try to download again the XML. I'll post my findings here but I still need some info regarding the possible reasons why not all articles were not transfered on my 1st attempt. I guess I'm not the onlyone facing this issue...
</p>
]]></description>
					</item>
		<item>
			<title>agrorama on "Export all content: not all content is actually exported!"</title>
			<link>http://en.forums.wordpress.com/topic/export-all-content-not-all-content-is-actually-exported#post-948466</link>
			<pubDate>Wed, 18 Jul 2012 21:45:22 +0000</pubDate>
			<dc:creator>agrorama</dc:creator>
			<guid isPermaLink="false">948466@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thousands of articles are missing from the XML. Latest article included in the file was posted on January 2012. Some thousands (probably 4-5000 articles are missing). </p>
<p>Also, channel and rss tags are not closed at the end of the XML (probably because of the partial export).
</p>
]]></description>
					</item>

	</channel>
</rss>
