I’m trying to create an Individual Entry Archive using the smarty plugin. I have the smarty directory configured correctly as I was able to run the test script.

When I create and rebuild the template, I get the following error. I've looked for resolution all over the board and I can't find the solution. Any help would be sincerely appreciated!

Error Message:
Build error in template 'Author Archive': Error in <MTEntries> tag: No such author '`$smarty.request.author`'

Here’s the Code for the Author Template:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<$MTPublishCharset$>" />
<meta name="generator" content="Movable Type <$MTVersion$>" />

<link rel="stylesheet" href="<$MTBlogURL$>styles-site.css" type="text/css" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="<$MTBlogURL$>atom.xml" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<$MTBlogURL$>index.xml" />

<title><$MTBlogName encode_html="1"$>: {{$smarty.request.author}} Archives</title>

<link rel="start" href="<$MTBlogURL$>" title="Home" />
</head>
<body class="layout-one-column">
<div id="container">
<div id="container-inner" class="pkg">


<div id="pagebody">
<div id="pagebody-inner" class="pkg">
<div id="alpha">
<div id="alpha-inner" class="pkg">

<h2>{{$smarty.request.AuthorDisplayName}} Archives</h2>

<p align="right">
{{if $smarty.request.start > 0}}
<a href="?author={{$smarty.request.author}}&start={{$smarty.request.start-5}}">Previous</a>
{{/if}}

<MTEntries lastn="1" offset="`$smarty.request.start+25`">
{{if $smarty.request.start > 0}} | {{/if}}
<a href="?author={{$smarty.request.author}}&start={{$smarty.request.start+5}}">Next
</MTEntries>

<MTEntries author="`$smarty.request.author`" lastn="5" offset="`$smarty.request.start`">
<$MTEntryTrackbackData$>

<MTDateHeader><h2 class="date-header"><$MTEntryDate format="%x"$></h2></MTDateHeader>
<div class="entry" id="entry-<$MTEntryID$>">
<h3 class="entry-header"><$MTEntryTitle$></h3>
<div class="entry-content">
<div class="entry-body">
<$MTEntryBody$>
<MTEntryIfExtended>
<$MTEntryMore$>
</MTEntryIfExtended>
<p class="entry-footer">
<span class="post-footers">Posted by <$MTEntryAuthorDisplayName$> at <$MTEntryDate format="%X"$></span> <span class="separator">|</span> <a class="permalink" href="<$MTEntryPermalink$>">Permalink</a>
<MTIfCommentsActive>| <a href="<$MTEntryPermalink$>#comments">Comments (<$MTEntryCommentCount$>)</a></MTIfCommentsActive>
<MTIfPingsActive>| <a href="<$MTEntryPermalink$>#trackback">TrackBacks (<$MTEntryTrackbackCount$>)</a></MTIfPingsActive>
</p>
</div>
</div>
</div>
</MTEntries>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>