<?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>eCommerce - Webmaster Resource- 电子商务 &#187; English Version</title>
	<atom:link href="http://blog.toplistweb.com/category/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.toplistweb.com</link>
	<description></description>
	<lastBuildDate>Sun, 20 Jun 2010 09:28:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Webpage looks good in IE, but has problem in FireFox</title>
		<link>http://blog.toplistweb.com/2009/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/</link>
		<comments>http://blog.toplistweb.com/2009/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 07:46:10 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[IE FIREFOX]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/webpage-looks-good-in-ie-but-has-problem-in-firefox/</guid>
		<description><![CDATA[ 
I just wrote a webpage. It looked good in IE, but had problem in FireFox
The title was down lower in the page.
After checked the HTML code, I find it&#8217;s because follow code:
&#60;td valign=&#8221;top&#8221;&#62;
VALIGN set in TD is invalid in Fire... ]]></description>
			<content:encoded><![CDATA[<p> <span id="more-192"></span>
<p>I just wrote a webpage. It looked good in IE, but had problem in FireFox</p>
<p>The title was down lower in the page.</p>
<p>After checked the HTML code, I find it&#8217;s because follow code:</p>
<p>&lt;td valign=&#8221;top&#8221;&gt;</p>
<p>VALIGN set in TD is invalid in FireFox.</p>
<p>Changed to:</p>
<p>&lt;td style=&#8221;vertical-align:top&#8221;&gt;</p>
<p>Then the problem is fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to protect articles and images on your website</title>
		<link>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/</link>
		<comments>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 09:35:21 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/how-to-protect-articles-and-images-on-your-website/</guid>
		<description><![CDATA[How to protect articles and images on your wesite from being copyed and pasted? Following methods can make it harder for web content theft.

Method 1: disable right click，disable any paste and copy。
&#60;body topmargin=&#8221;0&#8243; leftmargin=&#82... ]]></description>
			<content:encoded><![CDATA[<p>How to protect articles and images on your wesite from being copyed and pasted? Following methods can make it harder for web content theft.</p>
<p><span id="more-147"></span></p>
<p><span style="COLOR: #ff0000"><span style="COLOR: #ff0000"><span style="COLOR: #ff0000">Method 1: disable right click</span>，disable any paste and copy。</span></span></p>
<p>&lt;body topmargin=&#8221;0&#8243; leftmargin=&#8221;0&#8243; bgcolor=&#8221;#ffffff&#8221; oncontextmenu=&#8217;return false&#8217; ondragstart=&#8217;return false&#8217; onselectstart =&#8217;return false&#8217; onselect=&#8217;document.selection.empty()&#8217; oncopy=&#8217;document.selection.empty()&#8217; onbeforecopy=&#8217;return false&#8217; onmouseup=&#8217;document.selection.empty()&#8217;&gt;</p>
<p>Explain:<br />
oncontextmenu=&#8217;return false&#8217; &lt;!&#8211;disable right click &#8211;&gt;<br />
ondragstart=&#8217;return false&#8217; onselectstart =&#8217;return false&#8217; onselect=&#8217;document.selection.empty()&#8217; oncopy=&#8217;document.selection.empty()&#8217; onmouseup=&#8217;document.selection.empty()&#8217;&lt;!&#8211;//disable select &#8211;&gt;<br />
onbeforecopy=&#8217;return false&#8217; &lt;!&#8211;disable copy&#8211;&gt;<br />
<span style="COLOR: #ff0000">Method 2: disable &#8220;save image as&#8221; function, without disable right click</span></p>
<p><span style="COLOR: #000000">In &#8220;</span>HEAD&#8221; section, add following code:<br />
&lt;meta http-equiv=&#8221;imagetoolbar&#8221; content=&#8221;no&#8221;&gt;</p>
<p>In&#8221;BODY&#8221;section, add following code:</p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;<br />
function Click(){<br />
if(window.event.srcElement.tagName==&#8221;IMG&#8221;)<br />
{<br />
window.event.returnValue=false;<br />
}<br />
}<br />
document.oncontextmenu=Click;<br />
&lt;/script&gt;</p>
<p><span style="COLOR: #ff0000">Method 3: only disable copy and paste function</span> .</p>
<p>&lt;body self.event.returnValue=false onselectstart=&#8221;return false&#8221;&gt;</p>
<p><span style="COLOR: #ff0000">Method 4：disable image toolbar and right click on a image.</span></p>
<p>Disable image toolbar：&lt;img src=&#8221;EXAMPLE.jpg&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; galleryimg=&#8221;no&#8221;&gt;<br />
Disable right click：&lt;img src=&#8221;EXAMPLE.jpg&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; oncontextmenu=&#8221;return false&#8221;&gt;</p>
<p><span style="COLOR: #ff0000">Method 5: disable web cache.</span></p>
<p>First in &#8220;HEAD&#8221; section add following code:<br />
&lt;!&#8211; MICROSOFT/NETSCAPE/MOZILLA BROWSERS all add following tag &#8211;&gt;<br />
&lt;meta http-equiv=&#8221;Pragma&#8221; content=&#8221;no-cache&#8221;&gt;</p>
<p>&lt;!&#8211; MICROSOFT BROWSERS add following tag &#8211;&gt;<br />
&lt;meta http-equiv=&#8221;Expires&#8221; content=&#8221;-1&#8243;&gt;</p>
<p>Second between&lt;/body&gt;and &lt;/html&gt; insert following code:<br />
&lt;/body&gt;<br />
&lt;!&#8211; add additional HEAD code &#8211;&gt;<br />
&lt;head&gt;&lt;meta http-equiv=&#8221;Pragma&#8221; content=&#8221;no-cache&#8221;&gt;&lt;/head&gt;<br />
&lt;/html&gt;</p>
<p><span style="COLOR: #ff0000">Method 6: disable web browser.</span></p>
<p>For example, to disable: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.54<br />
You can add following code in &#8220;JAVA&#8221; setting in &#8220;HEAD&#8221; section:<br />
if(navigator.userAgent.match(/Opera/ig)) {<br />
location.replace(&#8221;opera-not-supported.html&#8221;);<br />
}</p>
<p><span style="COLOR: #ff0000">Method 7: always use frame to hide your real URL.</span></p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;&lt;!&#8211;<br />
if (window == top)top.location.href = &#8220;frames.htm&#8221;; //frames.htm为框架网页<br />
// &#8211;&gt;&lt;/script&gt;</p>
<p><span style="COLOR: #ff0000">Method 8：protect your page from being framed into otherone&#8217;s webpage.</span></p>
<p>&lt;SCRIPT LANGUAGE=javascript&gt;&lt;!&#8211;<br />
if (top.location != self.location)top.location=self.location;<br />
// &#8211;&gt;&lt;/SCRIPT&gt;</p>
<p><span style="COLOR: #ff0000">Method 9：encode your webpage and watermark your images.</span></p>
<p><span style="COLOR: #000000">1-8 methods can only make trouble to web theaf who know little about computers. A more effective method to protect your website content is to encode your webpage and water mark your images.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal start to charge fees on personal account</title>
		<link>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/</link>
		<comments>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:45:01 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[FIREFOX IE 网页设计]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/</guid>
		<description><![CDATA[In the past years we can use personal account of PayPal to send and receive money conveniently.
But now PayPal start to charge fees on personal account. This is really a bad news.
 
PayPal fee: 2.4%-3.0%+0.30USD
For more information, see paypal.... ]]></description>
			<content:encoded><![CDATA[<p>In the past years we can use personal account of PayPal to send and receive money conveniently.</p>
<p>But now PayPal start to charge fees on personal account. This is really a bad news.</p>
<p> <span id="more-197"></span>
<p>PayPal fee: 2.4%-3.0%+0.30USD</p>
<p>For more information, see <a href="https://www.paypal.com/row/mrb/pal=DR24S99LFBVNA" target="_blank">paypal</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 simple steps to recover your wordpress admin password</title>
		<link>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/</link>
		<comments>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/#comments</comments>
		<pubDate>Thu, 07 May 2009 02:43:45 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/3-simple-steps-to-recover-your-wordpress-admin-password/</guid>
		<description><![CDATA[When you lost your wordpress password, just use following method to recove it.
1.Login you cpanel, use phpmyadmin to edit your database/userdata, set a email to receive the password.
2.Go to ***.com/wp-login.php, click &#8220;lost your password&#8221; an... ]]></description>
			<content:encoded><![CDATA[<p>When you lost your wordpress password, just use following method to recove it.</p>
<p><span id="more-135"></span>1.Login you <strong>cpanel</strong>, use <strong>phpmyadmin</strong> to edit your <strong>database/userdata</strong>, set a <strong>email</strong> to receive the password.</p>
<p>2.Go to ***.com/wp-login.php, click &#8220;lost your password&#8221; and then input your <strong>username</strong> or <strong>email.</strong></p>
<p>3.Check your email, you&#8217;ll get your password then.</p>
<p>You can login your wordpress blog now.</p>
<p id="nav"> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swift Code of  bank</title>
		<link>http://blog.toplistweb.com/2009/05/swift-code-of-bank/</link>
		<comments>http://blog.toplistweb.com/2009/05/swift-code-of-bank/#comments</comments>
		<pubDate>Wed, 06 May 2009 08:45:50 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/swift-code-of-bank/</guid>
		<description><![CDATA[When you want to withdraw money from paypal/moneybookers to you bank account, you will need to input the Swift Code of the bank.

What&#8217;s Swift Code?
SWIFT is the Society for Worldwide Interbank Financial Telecommunication.
Over 8,300 banking organi... ]]></description>
			<content:encoded><![CDATA[<p>When you want to withdraw money from paypal/moneybookers to you bank account, you will need to input the Swift Code of the bank.</p>
<p><span id="more-138"></span></p>
<p>What&#8217;s Swift Code?</p>
<p>SWIFT is the Society for Worldwide Interbank Financial Telecommunication.<br />
Over 8,300 banking organisations, securities institutions and corporate customers in more than 208 countries join Swift to exchange financial information securely and reliably.<br />
Every bank has unique swift code.</p>
<p>Where to find Swift Code of the bank?</p>
<p>Online search swift code here:<br />
<a href="http://www.swift.com/bsl/freequery.do">http://www.swift.com/bsl/freequery.do</a></p>
<p>Input following and search:<br />
Institution keyword: BANK NAME<br />
City heading : CITY NAME<br />
Country name: YOUR COUNTRY</p>
<p>You can also call the bank and get the Swift Code.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/swift-code-of-bank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add php code in html files</title>
		<link>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/</link>
		<comments>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:43:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/?p=128</guid>
		<description><![CDATA[To insert php code in a html file, just use the following method:

1. in your html file use
html Code:
&#60;script src=&#8221;/script.php&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;
2. then in the php file, make sure you use
php Code:... ]]></description>
			<content:encoded><![CDATA[<p>To insert php code in a html file, just use the following method:<br />
<span id="more-128"></span></p>
<p>1. in your html file use<br />
html Code:<br />
&lt;script src=&#8221;/script.php&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>2. then in the php file, make sure you use<br />
php Code:<br />
&lt;?phpheader(&#8221;content-type: application/x-javascript&#8221;);?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit your website to famous Chinese search engines: BAIDU, Google,Yahoo China, Iask(SINA),Sougou etc</title>
		<link>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/</link>
		<comments>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/#comments</comments>
		<pubDate>Mon, 04 May 2009 05:30:23 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/</guid>
		<description><![CDATA[1.BAIDU-the biggest Chinese search engine
 
Submit url：http://www.baidu.com/search/url_submit.html Time to include：a week to a month
2.Google-the biggest search engine in the world There are 3 methods to submit you website to google. submit url：htt... ]]></description>
			<content:encoded><![CDATA[<p><br/>1.BAIDU-the biggest Chinese search engine</p>
<p> <span id="more-182"></span>
<p>Submit url：<a href="http://www.baidu.com/search/url_submit.html">http://www.baidu.com/search/url_submit.html</a> <br/>Time to include：a week to a month</p>
<p>2.Google-the biggest search engine in the world <br/>There are 3 methods to submit you website to google. <br/>submit url：<a href="http://www.google.com/addurl/?hl=zh-CN">http://www.google.com/addurl/?hl=zh-CN</a></p>
<p>You can also submit your Sitemap or Site Feed directly .</p>
<p>For example, if your Sitemap is <a href="http://www.example.com/sitemap.gz">http://www.example.com/sitemap.gz</a>， <br/>Just in put this url in your internet browser and using an HTTP request to submit: <a href="http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz">http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz</a></p>
<p>If you have a google account, you can log in here:： <br/><a href="http://www.google.com/webmasters/sitemaps">www.google.com/webmasters/sitemaps</a></p>
<p>Time to include： 2 to 3 days</p>
<p>3.Yahoo China-blong to alibaba</p>
<p>Submit url：<a href="http://search.help.cn.yahoo.com/h4_4.html">http://search.help.cn.yahoo.com/h4_4.html</a> <br/>Time to include：a week to a month</p>
<p>4.Yahoo! Search-Yahoo Search in English, You can submit your website url，as well as Site Feed. <br/>Before submission, you need to log in your yahoo account。 <br/>Submit url：<a href="https://siteexplorer.search.yahoo.com/submit/">https://siteexplorer.search.yahoo.com/submit/</a> <br/>Time to include: weeks</p>
<p>5.Microsoft&#8217;s Live Search</p>
<p>Submit url：<a href="http://search.live.com/docs/submit.aspx">http://search.live.com/docs/submit.aspx</a> <br/>Time to include: weeks</p>
<p>6.Sogou-blong to sohu</p>
<p>Submit url：invalid now. It&#8217;s said now sogou get data automaticly from Google. <br/>Time to include: a month</p>
<p>7.Iask-blong to sina</p>
<p>Submit url：<a href="http://iask.com/guest/add_url.php">http://iask.com/guest/add_url.php</a> <br/>Time to include: a month</p>
<p>8.zhongsou</p>
<p>Submit url：<a href="http://ads.zhongsou.com/register/page.jsp">http://ads.zhongsou.com/register/page.jsp</a> <br/>Time to include: a month</p>
<p>9.TOM</p>
<p>Submit url：<a href="http://search.tom.com/tools/weblog/log.php">http://search.tom.com/tools/weblog/log.php</a> <br/>Time to include: N/A</p>
<p>10.AlltheWeb-Yahoo!</p>
<p>Submit url：<a href="http://www.alltheweb.com/help/webmaster/submit_site">http://www.alltheweb.com/help/webmaster/submit_site</a> <br/>Time to include: N/A <br/></p>
<p>Following are some search engine directoris: <br/>1.Dmoz /Google：</p>
<p>Submit url：<a href="http://directory.google.com/Top/World/Chinese_Simplified/dmoz">http://directory.google.com/Top/World/Chinese_Simplified/dmoz</a>， <br/>Time to include: N/A . It&#8217;s dfficult to be included in this directory.</p>
<p>2.Yahoo Chinese</p>
<p>Submit url： <a href="http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/">http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/</a> <br/>Time to include: N/A . Only accept websites if they meet some requirements.</p>
<p><br/>Other site submission related site：</p>
<p>1.Alexa rank</p>
<p>Submit url :<a href="http://www.alexa.com/site/help/webmasters#crawl_site">http://www.alexa.com/site/help/webmasters#crawl_site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 steps to make money from your blog</title>
		<link>http://blog.toplistweb.com/2009/04/3-steps-to-make-money-from-your-blog/</link>
		<comments>http://blog.toplistweb.com/2009/04/3-steps-to-make-money-from-your-blog/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 03:35:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/?p=132</guid>
		<description><![CDATA[3 steps to add adsense to your blog and make money. 
1.Create a blog on topic you really interested in, or on topic you have good knowledge. Then start add articles on your blog. Update your blog articles every few days. 2.Add adsense to your blog. You c... ]]></description>
			<content:encoded><![CDATA[<p>3 steps to add adsense to your blog and make money. <br/><span id="more-132"></span></p>
<p>1.Create a blog on topic you really interested in, or on topic you have good knowledge. Then start add articles on your blog. Update your blog articles every few days. <br/>2.Add adsense to your blog. <br/>You can edit your wordpress theme files to add adsense code directly ,ff you know something about php/html code.</p>
<p>If you have no idea about how to insert adsense code, you can just use Easy-Adsense plugin. It is recommended by Google Adsense officially nowadays. Easy-Adsense is very easy to use and has the option to select show only three ads per page.Easy-Adsense has author links under the adds but you can remove it by set the option . <br/>There are many other plugins such as: mightyadsense, Adsense manager.all very easy to use.</p>
<p>3.Get traffic to your blog. <br/>Subbmit you blog to seach engines, directories, rss, digg etc to get traffic.</p>
<p>Remember &#8216;content is the king&#8217;. It&#8217;s important to have unique content on your blog to earn more.</p>
<p>It&#8217;s so simple, you see. Now just start creating your blog and making money . Good Luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/04/3-steps-to-make-money-from-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload and change your wordpress hearder  image without FTP</title>
		<link>http://blog.toplistweb.com/2009/04/upload-and-change-your-wordpress-hearder-image-without-ftp/</link>
		<comments>http://blog.toplistweb.com/2009/04/upload-and-change-your-wordpress-hearder-image-without-ftp/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 00:43:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/?p=52</guid>
		<description><![CDATA[1. login to your blog and go to &#8216;Dashboard/Settings/Miscellaneous Settings/Uploading Files&#8217; 
2. save uploading folder, for example: &#8216;images&#8217; folder&#8217;, then click &#8220;save change&#8221;.
3. Login to your host account using ... ]]></description>
			<content:encoded><![CDATA[<p>1. login to your blog and go to &#8216;Dashboard/Settings/Miscellaneous Settings/Uploading Files&#8217; <br/><span id="more-52"></span></p>
<p>2. save uploading folder, for example: &#8216;images&#8217; folder&#8217;, then click &#8220;save change&#8221;.</p>
<p>3. Login to your host account using cpanel/FTP software, right click the &#8216;images&#8217; folder, and change your permissions to &#8216;All Write&#8217; privileges, or &#8220;chmod 777&#8243;.</p>
<p>4. In your Dashboard, go to &#8216;Post/Add New&#8217; , click button beside &#8220;upload/insert &#8220;, your image/media has now been uploaded to your host account.</p>
<p>5. Copy the url of the images and insert it in post or header. To change header, just go to &#8216;Dashboard/Appearance/editor&#8221; and edit head.php file.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/04/upload-and-change-your-wordpress-hearder-image-without-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Websites for Webmasters</title>
		<link>http://blog.toplistweb.com/2009/04/useful-websites-for-webmasters/</link>
		<comments>http://blog.toplistweb.com/2009/04/useful-websites-for-webmasters/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 09:52:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Domain]]></category>
		<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/?p=39</guid>
		<description><![CDATA[1. Domain registration: 
GoDaddy
Low price domain registration
NameCheap.com
Accept Paypal
2. Domain buy, sale and parking sites
Sedo
Fabulous
Domainsponsor
3. Webmaster Related Forums
DigitalPoint
WebDeveloper.com
DnForum
GetPaidForum
4. Freelance Sites... ]]></description>
			<content:encoded><![CDATA[<p>1. Domain registration: <br/><span id="more-39"></span></p>
<p><a href="http://www.godaddy.com/">GoDaddy</a></p>
<p>Low price domain registration</p>
<p><a href="http://www.namecheap.com/">NameCheap.com</a></p>
<p>Accept Paypal</p>
<p>2. Domain buy, sale and parking sites</p>
<p><a href="http://www.sedo.com/">Sedo</a></p>
<p><a href="http://www.fabulous.com/">Fabulous</a></p>
<p><a href="http://www.domainsponsor.com/">Domainsponsor</a></p>
<p>3. Webmaster Related Forums</p>
<p><a href="http://forums.digitalpoint.com/">DigitalPoint</a></p>
<p><a href="http://www.webdeveloper.com/forum/">WebDeveloper.com</a></p>
<p><a href="http://www.dnforum.com/">DnForum</a></p>
<p><a href="http://www.getpaidforum.com/">GetPaidForum</a></p>
<p>4. Freelance Sites</p>
<p><a href="http://www.scriptlance.com/cgi-bin/freelancers/r.cgi?gonewithwind"><span style="COLOR: #005ec8">ScriptLance</span></a></p>
<p><a href="http://www.getafreelancer.com/affiliates/farawaystar/"><span style="COLOR: #005ec8">GetAFreelancer</span></a></p>
<p><a href="http://www.rentacoder.com/RentACoder/Default.asp?txtFromURL=AId_2163905"><span style="COLOR: #005ec8">RAC</span></a></p>
<p><a href="http://www.proz.com/">ProZ</a></p>
<p>5. Online payment</p>
<p><a href="https://www.paypal.com/row/mrb/pal=DR24S99LFBVNA"><span style="COLOR: #005ec8">Paypal</span></a></p>
<p><a href="https://www.moneybookers.com/app/?rid=2519090"><span style="COLOR: #005ec8">Moneybookers</span></a></p>
<p><a href="http://www.e-gold.com/e-gold.asp?cid=3521891"><span style="COLOR: #005ec8">E-gold</span></a></p>
<p><a href="http://www.epayxchange.com/">ePayXchange</a></p>
<p>6. Shopping</p>
<p><a href="http://www.amazon.com/gp/redirect.html?link_code=ur2&amp;tag=toplistweb-20&amp;camp=1789&amp;creative=9325&amp;location=http://www.amazon.com/gp/homepage.html/">Amazon</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/04/useful-websites-for-webmasters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
