<?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>action online&#187; Content Management</title>
	<atom:link href="http://www.actiononline.biz/category/web/content-management/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.actiononline.biz</link>
	<description>Technology &#038; Business blog of YDS Web Solution</description>
	<lastBuildDate>Wed, 18 Aug 2010 06:52:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>_pingme, _encloseme, headers sent WordPress Error</title>
		<link>http://www.actiononline.biz/web/_pingme-_encloseme-headers-sent-wordpress-error/</link>
		<comments>http://www.actiononline.biz/web/_pingme-_encloseme-headers-sent-wordpress-error/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 07:44:19 +0000</pubDate>
		<dc:creator>Benj Arriola</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://webgasm.actiononline.biz/content-management/2006/07/30/_pingme-_encloseme-headers-sent-wordpress-error/</guid>
		<description><![CDATA[I was hosting this site isulongseoph.com on a server running cPanel and I used Fantastico scripts installer to install and upgrade my WordPress blog to version 2.0.3. But I needed to transfer this site to another server. This time on a Plesk server and it had an application vault where there was also an installable [...]]]></description>
			<content:encoded><![CDATA[<p>I was hosting this site <a target="_blank" title="Isulong Seoph WordPress Error" href="http://www.isulongseoph.com">isulongseoph.com</a> on a server running cPanel and I used Fantastico scripts installer to install and upgrade my WordPress blog to version 2.0.3. But I needed to transfer this site to another server. This time on a Plesk server and it had an application vault where there was also an installable WordPress just like Fantistico, but along the way, I had a bunch of problems.</p>
<p>To cut the story short, I got stuck with one problem. Whenever I post something new on the blog, I got this error:</p>
<blockquote><p>WordPress database error: [Duplicate entry â€˜0? for key 1] INSERT INTO wp_postmeta (post_id,meta_key,meta_value) VALUES (â€™0?,â€™_pingmeâ€™,&#8217;1?)</p>
<p>WordPress database error: [Duplicate entry â€˜0? for key 1] INSERT INTO wp_postmeta (post_id,meta_key,meta_value) VALUES (â€™0?,â€™_enclosemeâ€™,&#8217;1?)</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at /isulongseoph/wp-includes/wp-db.php:102) in /isulongseoph/wp-admin/post.php on line 60</p></blockquote>
<p>After searching online, all I got was other people with the same problem but not with a solution.</p>
<p>For people knowledgeable about databases, it was pretty obvious that in the statements above, the <em>post_id</em> is a unique key and writing over it was not allowed. It this is the case, why was this happening all of sudden? Tracing back the problem&#8230;</p>
<p>I checked my database and it used to run on MySQL 4.1.19. And on the new servers I was running, it was MySQL 3.23. And I needed to export the data of my WordPress blog to be MySQL 3.23 compatible using phpMyAdmin.</p>
<p>And after doing so, everything seemed to be fine after importing it to MySQL 3.23 except for one thing I havent noticed. All primary keys in the database that had auto_increment properties were all removed and the auto_increment was no longer working.</p>
<p>If you are experiencing the same problem and is running WordPress 2.0.3, all you need to do is run the following query in MySQL, you can do this in phpMyAdmin or through MySQL command prompt commands:</p>
<p><code>ALTER TABLE `wp_categories` CHANGE `cat_ID` `cat_ID` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_comments` CHANGE `comment_ID` `comment_ID` BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_linkcategories` CHANGE `cat_id` `cat_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_links` CHANGE `link_id` `link_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_options` CHANGE `option_id` `option_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_post2cat` CHANGE `rel_id` `rel_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_postmeta` CHANGE `meta_id` `meta_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_posts` CHANGE `ID` `ID` BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_usermeta` CHANGE `umeta_id` `umeta_id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT;</code><br />
<code>ALTER TABLE `wp_users` CHANGE `ID` `ID` BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT;</code></p>
<p>Once that is done, the problem should be fixed already.</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/wordpress-2-subdomain-plugin-problems-solved/" rel="bookmark" title="Permanent Link: WordPress 2 Subdomain Plugin Problems Solved" >WordPress 2 Subdomain Plugin Problems Solved</a></span><div class="aizattos_related_posts_excerpt">When my blog was still running on WordPress 1.5, the subdomain plugin worked perfectly. I needed to ...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/technology/software/i-lost-all-comments/" rel="bookmark" title="Permanent Link: I lost all comments!" >I lost all comments!</a></span><div class="aizattos_related_posts_excerpt">

After a lot of days of work... I was barely able to post anything here. And had it on for some t...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/converting-blogger-to-wordpress-movabletype-to-wordpress-typepad-to-wordpress/" rel="bookmark" title="Permanent Link: Converting Blogger to WordPress, MovableType to WordPress, TypePad to WordPress" >Converting Blogger to WordPress, MovableType to WordPress, TypePad to WordPress</a></span><div class="aizattos_related_posts_excerpt">I can't believe it is all that easy! I had a blog running on Blogger for a long time. And I knew Wor...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/email-contact-form-spamming/" rel="bookmark" title="Permanent Link: Email Contact Form Spamming" >Email Contact Form Spamming</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/php43-to-php520-upgrade-problems/" rel="bookmark" title="Permanent Link: Apache Recompiling with PHP4 to PHP5 Upgrade Problems" >Apache Recompiling with PHP4 to PHP5 Upgrade Problems</a></span></li></ul></div><img src="http://www.actiononline.biz/?ak_action=api_record_view&id=137&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.actiononline.biz/web/_pingme-_encloseme-headers-sent-wordpress-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Converting Blogger to WordPress, MovableType to WordPress, TypePad to WordPress</title>
		<link>http://www.actiononline.biz/web/converting-blogger-to-wordpress-movabletype-to-wordpress-typepad-to-wordpress/</link>
		<comments>http://www.actiononline.biz/web/converting-blogger-to-wordpress-movabletype-to-wordpress-typepad-to-wordpress/#comments</comments>
		<pubDate>Tue, 16 May 2006 13:08:19 +0000</pubDate>
		<dc:creator>Benj Arriola</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://webgasm.actiononline.biz/content-management/2006/05/16/converting-blogger-to-wordpress-movabletype-to-wordpress-typepad-to-wordpress/</guid>
		<description><![CDATA[I can&#8217;t believe it is all that easy! I had a blog running on Blogger for a long time. And I knew WordPress just had a lot of benefits and I once tried installing WordPress 1.5 and was looking for ways to convert my Blogger account to WordPress and I found one procedure that shared [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t believe it is all that easy! I had a blog running on Blogger for a long time. And I knew WordPress just had a lot of benefits and I once tried installing WordPress 1.5 and was looking for ways to convert my Blogger account to WordPress and I found one procedure that shared a script, and had you set your blogger template in a certain way. The import went on fine, but I did not convert yet and still kept using my Blogger account. And since I have been doing SEO, and finding all the customizations I can work on with WordPress, I told myself, I will make the switch. And I did, but this time, WordPress 2.0 just came out and had an import function straight from Blogger.</p>
<p>So I just entered my Blogger login and password and that was it. Everything else was all self-explanatory and the transition was simply waiting until everything is transferred. I can&#8217;t remember how many months ago this was, but I have had no problem with my <a target="_blank" title="Web Hosting" href="http://www.ydswebsolution.com/web.host/competitive/cheap/p/hosting/plans/packages/">hosting</a> clients who wanted to do the same thing.<br />
Now this month, I got a new web hosting client who wanted her blog on WordPress too and had an existing blog on Typepad. Typepad owned by 6Apart who are the people behind MovableType where the opensource project of it has been discontinued and is offering the updated licensed version for a certain fee. I checked the WordPress Import function, and under MovableType, it just had an upload box. And I said to myself, what is this? So it looks like I need to login to TypePad and do an export.</p>
<p>I went to my clients Typepad using her login and password she shared so I can set everything up. After doing an export, it brought me to a page that looked like a preformatted plain text page with all post. And again I said to myself, what is this? I simply saved the file and uploaded it in the upload box on Wordress&#8217; import function for MovableType and that was it. It was that simple.</p>
<p>One thing I want to try is importing from TextPattern. And I wonder when the impossible will come out&#8230; a Xanga to WordPress conversion. Xanga is just so different and templates can get so wild that I imagine the import can be done if the Xanga blog is designed in a certain way. Or maybe some XML or RSS way can be done?</p>
<div class="aizattos_related_posts"><span class="aizattos_related_posts_header" >Related Posts</span><ul><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/wordpress-2-subdomain-plugin-problems-solved/" rel="bookmark" title="Permanent Link: WordPress 2 Subdomain Plugin Problems Solved" >WordPress 2 Subdomain Plugin Problems Solved</a></span><div class="aizattos_related_posts_excerpt">When my blog was still running on WordPress 1.5, the subdomain plugin worked perfectly. I needed to ...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/seo/wordpress-google-sitemap-generator/" rel="bookmark" title="Permanent Link: WordPress Google Sitemap Generator" >WordPress Google Sitemap Generator</a></span><div class="aizattos_related_posts_excerpt">If you are unfamiliar with Google's Sitemap tool for webmasters, you may visit https://www.google.co...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/blog/avoiding-comment-spam-on-wordpress/" rel="bookmark" title="Permanent Link: Avoiding Comment Spam on WordPress" >Avoiding Comment Spam on WordPress</a></span><div class="aizattos_related_posts_excerpt">Comment spam keeps on increasing, especially in blogs like these. Comment spammers usually use softw...</div></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/web/_pingme-_encloseme-headers-sent-wordpress-error/" rel="bookmark" title="Permanent Link: _pingme, _encloseme, headers sent WordPress Error" >_pingme, _encloseme, headers sent WordPress Error</a></span></li><li><span class="aizattos_related_posts_title"><a href="http://www.actiononline.biz/technology/software/i-lost-all-comments/" rel="bookmark" title="Permanent Link: I lost all comments!" >I lost all comments!</a></span></li></ul></div><img src="http://www.actiononline.biz/?ak_action=api_record_view&id=88&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.actiononline.biz/web/converting-blogger-to-wordpress-movabletype-to-wordpress-typepad-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
