原文:Recommendations for webmaster friendly freehosts
发表于: 2009 年9月14日星期一,下午4:17
除了提交投稿之外,很多论坛用户还通过跟贴和留言的方式与投稿的站长交流,很多朋友在回帖中表达了对投稿文章的欣赏,还表示会把这些心得经验应用到自己的网站中。例如,其中一篇来稿吸引了多达二十多个讨论回帖。
Many of you are looking forward to using MT5 exclusively, but truthfully you may be content with MT4 or maybe you’re unable to upgrade because a plugin you rely upon may not yet be ported to MT5.
So until MT5 is solid and there is little demand for MT4, Six Apart will continue to release new versions of MT4.x as necessary to provide fixes for various security issues and bugs which are major pain points. Small features may be potentially included as well.
MT4.32 fixes a handful of minor bugs which are detailed in the Movable Type 4.32 release notes.
One of the commits in MT4.32 was to bundle the Zemanta plugin. Zemanta has committed to supporting the development of Movable Type; what better partnership than that of a content management system and a service to recommend quality related-content?
While it may not be useful for every blogger, it can be very helpful in the case where you need an image, links to related articles, help with tags for an entry, etc to have a more compelling blog entry. Check out the Zemanta FAQ for more info on how Zemanta’s services may be useful for you or your bloggers. All support or technical questions regarding Zemanta or the Zemanta Plug-in for MovableType should be forwarded to support@zemanta.com.
Zemanta not for you? There are many ways to disable the Zemanta plugin additionally anyone with file-system access can remove the Zemanta plugin from the plugins
directory within the MT install.
Also, you don’t need MT4.32 to use the Zemanta plugin, you can also download Zemanta from the plugin directory.
One known issue which wasn’t in the Zemanta FAQ:
For internal Movable Type deployments behind the firewall the Zemanta functionality will not be available. This will not have impact the operation of Movable Type. However, administrators may see the error message “Can’t connect to Zemanta API service” in the Movable Type system log. To avoid seeing this error, the plug-in should be disabled by the administrator as described above.
Hope the fixes in MT4.32 are useful. If there is a bug or patch that you want committed in a future version of MT4.x
MT5 Beta 3 should be available tomorrow.
There are two distinct sections of this post:
Now on to the technical stuff. If you don't enjoy javascript and regular expressions, you may stop here and ask your webmaster or technical analyst to read further :-)
1- Create a unique Google Analytics account for each domain www.a.com, www.b.com, and www.c.com and then use the account number UA-AAAAAAAA-1 in the code in step 3 and use the accounts UA-BBBBBBBB-1 for www.b.com and UA-CCCCCCCC-1 for www.c.com in the code in step 8.
2- Create a Google Analytics account for the a rollup account that will oversee all domains and sub-domains (use the GA account number UA-XXXXXXXX-1 in the code used in step 3 and 8)
3- Add the following Google Analytics tracking code to the main site (www.a.com) and its sub-domains (blog.a.com, news.a.com, images.a.com, and media.a.com)
About the following code: We have a regular pageTracker object to track activity on each particular subdomain and a rollupTracker to track activity across all subdomains and the third party checkout site. (Click here to learn more about the customizations we made to the standard Google Analytics tracking code)
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-AAAAAAAA-1");
pageTracker._setAllowHash(false);
pageTracker._setDomainName(".a.com");
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
var rollupTracker = _gat._getTracker("UA-XXXXXXXX-1");
rollupTracker._setAllowHash(false);
rollupTracker._setDomainName(".a.com");
rollupTracker._setAllowLinker(true);
rollupTracker._trackPageview();
}
catch(err) {}
</script>
4- Enable E-Commerce Reporting
Analytics Settings > Profile Settings > Edit Profile Information
5- Add the following code* to all shopping cart pages on the store site (www.mystore.com)
*Make sure to add this code to the top of the pages.
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-AAAAAAAA-1");
pageTracker._setDomainName("none");
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
var rollupTracker = _gat._getTracker("UA-XXXXXXXX-1");
rollupTracker._setDomainName("none");
rollupTracker._setAllowLinker(true);
rollupTracker._trackPageview();
}
catch(err) {}
</script>
6- Add the e-commerce tracking code to the confirmation page after the GATC.
Read more about "How to track e-commerce transactions?"
7- Change the links to the store site (www.mystore.com) on the main site (www.a.com) to use _link as following:
If the current link looks like:
<a href="https://www.mystore.com">Buy Now</a>
Change it to:
<a href="https://www.mystore.com" onclick="pageTracker._link(this.href); return false;">Buy Now</a>
8- Repeat step number 3 for domains www.b.com and www.c.com after updating the Google Analytics account number UA-AAAAAAAA-1 and the setDomainName value.
9- Create a profile for each sub-domain (only if needed)
In order to track a sub-domain (ex. blog.b.com) in its own profile, follow the following three steps:
a- Create a filter that include only traffic from Hostname=blog.b.com
b- Create a profile and name it "Blog"
c- Apply the sub-domain filter to the new profile
10- As you might have noticed from the codes that we added so far to all pages, we added an extra Google Analytics account to track all pageviews across domains and sub-domains to one Google Analytics account. We call this account “rollup account”.
var rollupTracker = _gat._getTracker("UA-XXXXXXXX-1");
rollupTracker._trackPageview();
Since in the rollup account, we will track pages from different sites and many of these pages might share the same naming convention, I suggest that you create an advanced filter that adds the hostname to the page name to differentiate between pages with same URI.
Once you apply the filter, the upcoming data will appear as following:
Related Posts
九月 2009 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 日 |
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |