<?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; Topic: Importing Blogs from Blogger</title>
		<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger</link>
		<description>WordPress.com Forums &#187; Topic: Importing Blogs from Blogger</description>
		<language>en</language>
		<pubDate>Wed, 19 Jun 2013 23:35:30 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/importing-blogs-from-blogger" rel="self" type="application/rss+xml" />

		<item>
			<title>nutellaboyy on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-10945</link>
			<pubDate>Fri, 12 May 2006 05:35:04 +0000</pubDate>
			<dc:creator>nutellaboyy</dc:creator>
			<guid isPermaLink="false">10945@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>hey. i am a new user on wordpress, &#38;i have been trying to import my blog from blogger. but it always displays this message when i try to import. "Couldn't resolve host 'fetish-.blogspot.com'Your Blogger blog did not take the new template or did not respond." what does it mean? please help me!
</p>
]]></description>
					</item>
		<item>
			<title>chadhouck on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-6986</link>
			<pubDate>Fri, 07 Apr 2006 21:37:07 +0000</pubDate>
			<dc:creator>chadhouck</dc:creator>
			<guid isPermaLink="false">6986@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>only speaking on my own experience, but I just imported mine and it didn't overwrite anything.  Just put them into chrono sequence with what was there.<br />
I'm a new guy though, so don't take my word on it until confirmed!
</p>
]]></description>
					</item>
		<item>
			<title>jcruenv on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5955</link>
			<pubDate>Thu, 23 Mar 2006 15:00:38 +0000</pubDate>
			<dc:creator>jcruenv</dc:creator>
			<guid isPermaLink="false">5955@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Does importing an old blogger account overwrite existing posts on the WordPress blog?
</p>
]]></description>
					</item>
		<item>
			<title>radhakrishna on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5787</link>
			<pubDate>Tue, 21 Mar 2006 05:28:38 +0000</pubDate>
			<dc:creator>radhakrishna</dc:creator>
			<guid isPermaLink="false">5787@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>i clicked wordpress reset link and log in to blogger again,<br />
then it works</p>
<p>thanks for help
</p>
]]></description>
					</item>
		<item>
			<title>radhakrishna on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5786</link>
			<pubDate>Tue, 21 Mar 2006 05:16:22 +0000</pubDate>
			<dc:creator>radhakrishna</dc:creator>
			<guid isPermaLink="false">5786@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>i have successfully imported one blog a few days before.</p>
<p>The following is the code of that page after i click the hyperlink of the selected blog to import</p>
<p>==============</p>
<p>&#60;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&#62;<br />
&#60;html&#62;</p>
<p>&#60;head&#62;<br />
&#60;style&#62;<br />
a:link			{font:8pt/11pt verdana; color:red}<br />
a:visited		{font:8pt/11pt verdana; color:#4e4e4e}<br />
&#60;/style&#62;<br />
&#60;meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252"&#62;<br />
&#60;title&#62;HTTP 404 Not Found&#60;/title&#62;<br />
&#60;/head&#62;<br />
&#60;script&#62; </p>
<p>function Homepage(){<br />
// in real bits, urls get returned to our script like this:<br />
// res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm </p>
<p>	//For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"<br />
	DocURL = document.location.href;</p>
<p>	//this is where the http or https will be, as found by searching for :// but skipping the res://<br />
	protocolIndex=DocURL.indexOf("://",4);</p>
<p>	//this finds the ending slash for the domain server<br />
	serverIndex=DocURL.indexOf("/",protocolIndex + 3);</p>
<p>		//for the href, we need a valid URL to the domain. We search for the # symbol to find the begining<br />
	//of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.<br />
	//urlresult=DocURL.substring(protocolIndex - 4,serverIndex);<br />
	BeginURL=DocURL.indexOf("#",1) + 1;<br />
	if (protocolIndex - BeginURL &#62; 7)<br />
		urlresult=""</p>
<p>	urlresult=DocURL.substring(BeginURL,serverIndex);</p>
<p>	//for display, we need to skip after <a href="http://" rel="nofollow">http://</a>, and go to the next slash<br />
	displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);</p>
<p>	// Security precaution: must filter out "urlResult" and "displayresult"<br />
	forbiddenChars = new RegExp("[&#60;&#62;\'\"]", "g");	// Global search/replace<br />
	urlresult = urlresult.replace(forbiddenChars, "");<br />
	displayresult = displayresult.replace(forbiddenChars, "");</p>
<p>	document.write('&#60;A target=_top HREF="' + urlresult + '"&#62;' + displayresult + "");</p>
<p>}<br />
function doSearch()<br />
{<br />
    saOC.NavigateToDefaultSearch();<br />
}</p>
<p>function initPage()<br />
{<br />
    document.body.insertAdjacentHTML("afterBegin","&#60;object id=saOC CLASSID='clsid:B45FF030-4447-11D2-85DE-00C04FA35C89' HEIGHT=0 width=0&#62;&#60;/object&#62;");<br />
}</p>
<p>&#60;/script&#62;</p>
<p>&#60;body bgcolor="white" onload="initPage()"&#62;</p>
<p>&#60;table width="400" cellpadding="3" cellspacing="5"&#62;<br />
  &#60;tr&#62;<br />
    &#60;td id="tableProps" valign="top" align="left"&#62;&#60;img id="pagerrorImg" SRC="pagerror.gif"<br />
    width="25" height="33"&#62;&#60;/td&#62;<br />
    &#60;td id="tableProps2" align="left" valign="middle" width="360"&#62;&#60;h1 id="errortype"<br />
    style="COLOR: black; FONT: 13pt/15pt verdana"&#62;&#60;span id="errorText"&#62;The page cannot be found&#60;/span&#62;&#60;/h1&#62;<br />
    &#60;/td&#62;<br />
  &#60;/tr&#62;<br />
  &#60;tr&#62;<br />
    &#60;td id="tablePropsWidth" width="400" colspan="2"&#62;&#60;font<br />
    style="COLOR: black; FONT: 8pt/11pt verdana"&#62;The page you are looking for might have been<br />
    removed, had its name changed, or is temporarily unavailable.&#60;/font&#62;&#60;/td&#62;<br />
  &#60;/tr&#62;<br />
  &#60;tr&#62;<br />
    &#60;td id="tablePropsWidth2" width="400" colspan="2"&#62;&#60;font id="LID1"<br />
    style="COLOR: black; FONT: 8pt/11pt verdana"&#62;&#60;hr color="#C0C0C0" noshade&#62;<br />
    &#60;p id="LID2"&#62;Please try the following:
<ul>
      &#60;li id="list1"&#62;If you typed the page address in the Address bar, make sure that it is<br />
        spelled correctly.&#60;br&#62;</p>
<p>      &#60;li id="list2"&#62;Open the &#60;script&#62; Homepage(); &#60;/script&#62; home page, and then look for links to the information<br />
        you want.<br />
      &#60;li id="list3"&#62;Click the <a href="history.back(1)">&#60;img valign=bottom border=0 src="back.gif"&#62; Back</a> button to try another link.<br />
      &#60;li ID="list4"&#62;Click <a href="doSearch()">&#60;img border=0 src="search.gif" width="16" height="16" alt="search.gif (114 bytes)" align="center"&#62; Search</a> to look for information on the Internet.
</ul>
<p>    &#60;br&#62;</p>
<p>    &#60;h2 id="ietext" style="font:8pt/11pt verdana; color:black"&#62;HTTP 404 - File not found&#60;br&#62;<br />
    Internet Explorer &#60;BR&#62;<br />
    &#60;/h2&#62;<br />
    &#60;/font&#62;&#60;/td&#62;</p>
<p>  &#60;/tr&#62;<br />
&#60;/table&#62;<br />
&#60;/body&#62;<br />
&#60;/html&#62;
</p>
]]></description>
					</item>
		<item>
			<title>drmike on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5744</link>
			<pubDate>Mon, 20 Mar 2006 17:03:32 +0000</pubDate>
			<dc:creator>drmike</dc:creator>
			<guid isPermaLink="false">5744@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Please check your page source for your blank page to see if it's truely blank.  There may be an actual error there that for some reason isn't showing up.  Also remember to change your blogger theme to one of the basic ones so not to throw off the importer.</p>
<p>-drmike
</p>
]]></description>
					</item>
		<item>
			<title>radhakrishna on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5733</link>
			<pubDate>Mon, 20 Mar 2006 16:13:51 +0000</pubDate>
			<dc:creator>radhakrishna</dc:creator>
			<guid isPermaLink="false">5733@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>but the page title is </p>
<p>Oops, we can't open "https://radhakrishna.wordpress.com/wp-admin/login.do"
</p>
]]></description>
					</item>
		<item>
			<title>foodcrazee on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5720</link>
			<pubDate>Mon, 20 Mar 2006 13:10:14 +0000</pubDate>
			<dc:creator>foodcrazee</dc:creator>
			<guid isPermaLink="false">5720@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>i thinjk its bloggers problem. I had the same problem yesterday but now its back to normal. Try importing again
</p>
]]></description>
					</item>
		<item>
			<title>radhakrishna on "Importing Blogs from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/importing-blogs-from-blogger#post-5719</link>
			<pubDate>Mon, 20 Mar 2006 12:37:55 +0000</pubDate>
			<dc:creator>radhakrishna</dc:creator>
			<guid isPermaLink="false">5719@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Importing Blogs from Blogger blogs<br />
the importing function did not work in recent days</p>
<p>is it just me ?</p>
<p>[Link removed]</p>
<p>after i click the selected blog,<br />
a few seconds later,<br />
it goes to a blank page with this URL on the browser address line </p>
<p>[Link removed]</p>
<p>Please do not post links into your admin screens. -drmike
</p>
]]></description>
					</item>

	</channel>
</rss>
