<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>HOME PAGE MAKER</title>
    <link rel="alternate" type="text/html" href="http://www.homepagemaker.biz/" />
    <link rel="self" type="application/atom+xml" href="http://www.homepagemaker.biz/atom.xml" />
    <id>tag:www.homepagemaker.biz,2008-11-19://1</id>
    <updated>2008-12-25T09:24:37Z</updated>
    <subtitle>Movable Type Plugins, Hacks</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.21-en</generator>

<entry>
    <title>Access Counter</title>
    <link rel="alternate" type="text/html" href="http://www.homepagemaker.biz/mt-plugins/access-counter.html" />
    <id>tag:www.homepagemaker.biz,2008://1.2</id>

    <published>2008-11-19T09:46:36Z</published>
    <updated>2008-12-25T09:24:37Z</updated>

    <summary><![CDATA[This plugin enables Access Ranking: tally up the accessed count. Additionally, you can sort entries by their accessed count. &lt;mt:Entries sort_by="accessed_count"&gt; ... &lt;/mt:Entries&gt;...]]></summary>
    <author>
        <name>Masato Mori</name>
        
    </author>
    
        <category term="MT Plugins" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en-US" xml:base="http://www.homepagemaker.biz/">
        <![CDATA[<p>This plugin enables Access Ranking: tally up the accessed count. Additionally, you can sort entries by their accessed count.</p>

<pre><code>&lt;mt:Entries sort_by="accessed_count"&gt;
...
&lt;/mt:Entries&gt;
</code></pre>
]]>
        <![CDATA[<p>&nbsp;  </p>

<h3>Requirements</h3>

<ul>
<li><p><a href="http://appnel.com/code/mt-rebuild">mt-rebuild</a>...A command-line tool for publishing Movable Type templates.  </p></li>
<li><p>Movable Type 4.2+</p></li>
</ul>

<p>&nbsp;  </p>

<h3>Installation</h3>

<ol>
<li><p><a href="#download">Download</a> Plugin File.  </p></li>
<li><p>Upload the AccessCounter folder to your plugins/ folder in your Movable Type installation.  </p></li>
<li><p>Change the permissions on the AccessCounter.cgi to 755 (CHMOD 755)</p></li>
</ol>

<p>&nbsp;  </p>

<h3>Configuration</h3>

<ol>
<li><p>From the dashboard, go to <strong>Tools > Plugins</strong>  </p></li>
<li><p>Scroll down to the "Access Counter 1.0" section</p></li>
<li><p><strong>Settings > Save Changes</strong>  </p></li>
<li><p>Rebuild it </p></li>
</ol>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.homepagemaker.biz/assets_c/2008/11/ac1.html" onclick="window.open('http://www.homepagemaker.biz/assets_c/2008/11/ac1.html','popup','width=680,height=327,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.homepagemaker.biz/assets_c/2008/11/ac1-thumb-500x240.gif" width="500" height="240" alt="ac1.gif" class="mt-image-none" style="" /></a></span></p>

<ul>
<li>Tracking...Start Tracking your Blog </li>
<li>Deny IP Addresses...Remote IP Address to deny tracking</li>
</ul>

<p>&nbsp;  </p>

<h3>Check for Access Count</h3>

<p>Check for Accessed Count field.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.homepagemaker.biz/assets_c/2008/11/ac2.html" onclick="window.open('http://www.homepagemaker.biz/assets_c/2008/11/ac2.html','popup','width=680,height=400,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.homepagemaker.biz/assets_c/2008/11/ac2-thumb-500x294.gif" width="500" height="294" alt="ac2.gif" class="mt-image-none" style="" /></a></span></p>

<ul>
<li>Counts...access counts  </li>
<li>Last Accessed...last accessed on date time.</li>
</ul>

<p>&nbsp;  </p>

<h3>Edit Template</h3>

<ol>
<li>Create widget template. [Access Ranking]</li>
</ol>

<h5>Sample Code</h5>

<p><pre><code>&lt;mt:If tag="BlogEntryCount"&gt;
    &lt;mt:Entries sort_by="accessed_count" sort_order="descend" limit="10"&gt;
        &lt;mt:EntriesHeader&gt;
&lt;div class="widget-recent-entries widget-archives widget"&gt;
    &lt;h3 class="widget-header"&gt;Access Ranking&lt;/h3&gt;
    &lt;div class="widget-content"&gt;
        &lt;ul&gt;
        &lt;/mt:EntriesHeader&gt;
            &lt;$mt:setvar name="rank" value="1" op="++"$&gt;
            &lt;li&gt;&lt;a href="&lt;$mt:EntryPermalink$&gt;"&gt;#&lt;$mt:var name="rank"$&gt; &lt;$mt:EntryTitle$&gt;&lt;/a&gt;&lt;/li&gt;
        &lt;mt:EntriesFooter&gt;
        &lt;/ul&gt;
    &lt;/div&gt;
&lt;/div&gt;
        &lt;/mt:EntriesFooter&gt;
    &lt;/mt:Entries&gt;
&lt;/mt:If&gt;
</code></pre></p>

<p>&nbsp;  </p>

<h3>Changelog</h3>

<h5>December 25, 2008: version 1.03 release:</h5>

<ul>
<li>Add Function Tag <$mt:AccessedCount$></li>
</ul>

<h5>December 4, 2008: version 1.02 release:</h5>

<ul>
<li>Bug Fixed</li>
</ul>

<h5>December 2, 2008: version 1.01 release:</h5>

<ul>
<li>accessed count on the Manage Entries page</li>
</ul>

<h5>November 20, 2008: version 1.0 release:</h5>

<ul>
<li>First version available on movabletype.org</li>
</ul>

<p>&nbsp;  </p>

<p><div id="download"></div></p>

<h3>Download</h3>

<p><a href="http://www.homepagemaker.biz/download/access_counter.html" target="_blank">Access Counter v1.03</a></p>

<ul>
<li><p>Free for Personal Use  </p></li>
<li><p>If you wish to use Access Counter for commercial use, a commercial license must be purchased for $10:  </p></li>
</ul>

<div style="margin-left:20px">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="1298197">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynow_SM.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
]]>
    </content>
</entry>

</feed>
