Help - Search - Members - Calendar
Full Version: Recent Entries
Movable Type Community Forum > Additional Resources > Tips and Tricks
strangedame
Hi: Since I'm a total novice and have no idea what I'm doing, I need your help. For some reason, all my recent entries are not working. No matter which I click on, I get the same post. I have not messed with the default language at all. The only thing I've done was to add some new categories and then re-edited specific posts to be filed under the new categories.

Please let me know what to do. My URL is strangedame.com

Thanks! biggrin.gif
girlie
Make sure you are not using <MTEntries> and </MTEntries> tags in your Individual Entry Archive template (i.e., remove them).
strangedame
sad.gif As I said earlier, I'm a total novice, so when you tell me to go to the Individual Entry Archive Template and remove
CODE
<MTEntries> and </MTEntries>
I understand, but cannot for the life of me find an Indvidual Entry Archive , in order to do so.

Right now, I'm feeling really stupid. I have searched all the Archive Files and cannot find it anywhere. I went to the Main Index File and found the Recent Entries listing, but did not see anything regarding Individual Entries.

Please, explain to me, in layman terms, just what I have to do in order to correct the problem with the Recent Entries, showing the same post, regardless what post name is being clicked.

My URL is strangedame.com should someone care to check it out. Thanks! ohmy.gif
strangedame
Hi: Since I'm a total novice and have no idea what I'm doing, I need your help. For some reason, all my recent entries are not working. No matter which I click on, I get the same post. I have not messed with the default language at all. The only thing I've done was to add some new categories and then re-edited specific posts to be filed under the new categories.
When you tell me to go to the Individual Entry Archive Template and remove
CODE
<MTEntries> and </MTEntries>  

I understand, but cannot for the life of me find an Indvidual Entry Archive , in order to do so.

Right now, I'm feeling really stupid. I have searched all the Archive Files and cannot find it anywhere. I went to the Main Index File and found the Recent Entries listing, but did not see anything regarding Individual Entries.

Please, explain to me, in layman terms, just what I have to do in order to correct the problem with the Recent Entries, showing the same post, regardless what post name is being clicked.

My URL is strangedame.com should someone care to check it out. Thanks!
markpasc
There should be an option like this one.
girlie
Multiple topics merged.

Please post only once for the same problem, thanks!! smile.gif
strangedame
I really need someone's help. All my recent entries, when clicked, go straight to my last post. I had asked about this yesterday and was told to go to my Individual Entry Archive Template and see if this code was there and to remove it if it was.[CODE]

I could not find it on the template, so now I'm back to where I started. I'm a total novice and need some very basic steps, in layman's language. Please tell me what to do to fix my Sidebar's Recent Entry listings. My URL is
strangedame.com

I will be forever in your debt if you will help me with my problem. Thanks! biggrin.gif
girlie
Merged a third post into the first two.
strangedame
Hi Girlie:

Believe me, I'm not trying to be a pest, but apparently you did'nt read the full content of my last post. Yes, I found Mark's advice very helpful, and I did find the archive, but as I said, in that post, I checked it out and the codes I was told to remove were not there, so as I said, I'm right back where I started. I still need to know what I can do to correct my recent entries so they work, as they're supposed to.

As to my double posting earlier today, that was purely accidently, and I didn't know how to change it.

I have worked with too many people for too many years to ever try and make a pest of myself. As I said earlier, I'm a novice, but I'm trying to learn. Believe me I exhaust a lot of time and utilize other resources, before I let my total lack of CSS show for all the world to see, by posting in this forum. ohmy.gif
girlie
Merging post number four now.

Please paste the HTML from your Individual Entry Archive template here. Use the CODE buttons to do this: press CODE, paste the HTML, press CODE again.
strangedame
Hi Again, Girlie:

I thank you so much for trying to help me. Here's the code, as you requested. Any help at all will be greatly appreciated. Thanks biggrin.gif

CODE
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<$MTPublishCharset$>" />

<title><$MTBlogName$>: <$MTEntryTitle$></title>

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

<link rel="start" href="<$MTBlogURL$>" title="Home" />
<MTEntryPrevious>
<link rel="prev" href="<$MTEntryPermalink$>" title="<$MTEntryTitle encode_html="1"$>" />
</MTEntryPrevious>
<MTEntryNext>
<link rel="next" href="<$MTEntryPermalink$>" title="<$MTEntryTitle encode_html="1"$>" />
</MTEntryNext>

<script type="text/javascript" language="javascript">
<!--

function OpenTrackback (c) {
   window.open(c,
                   'trackback',
                   'width=480,height=480,scrollbars=yes,status=yes');
}

var HOST = '<$MTBlogHost$>';

// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function setCookie (name, value, expires, path, domain, secure) {
   var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
   document.cookie = curCookie;
}

function getCookie (name) {
   var prefix = name + '=';
   var c = document.cookie;
   var nullstring = '';
   var cookieStartIndex = c.indexOf(prefix);
   if (cookieStartIndex == -1)
       return nullstring;
   var cookieEndIndex = c.indexOf(";", cookieStartIndex + prefix.length);
   if (cookieEndIndex == -1)
       cookieEndIndex = c.length;
   return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));
}

function deleteCookie (name, path, domain) {
   if (getCookie(name))
       document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
}

function fixDate (date) {
   var base = new Date(0);
   var skew = base.getTime();
   if (skew > 0)
       date.setTime(date.getTime() - skew);
}

function rememberMe (f) {
   var now = new Date();
   fixDate(now);
   now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
   setCookie('mtcmtauth', f.author.value, now, '', HOST, '');
   setCookie('mtcmtmail', f.email.value, now, '', HOST, '');
   setCookie('mtcmthome', f.url.value, now, '', HOST, '');
}

function forgetMe (f) {
   deleteCookie('mtcmtmail', '', HOST);
   deleteCookie('mtcmthome', '', HOST);
   deleteCookie('mtcmtauth', '', HOST);
   f.email.value = '';
   f.author.value = '';
   f.url.value = '';
}

//-->
</script>

<$MTEntryTrackbackData$>

<MTBlogIfCCLicense>
<$MTCCLicenseRDF$>
</MTBlogIfCCLicense>

</head>

<body>

<div id="banner">
<h1><a href="<$MTBlogURL$>" accesskey="1"><$MTBlogName$></a></h1>
<span class="description"><$MTBlogDescription$></span>
</div>

<div id="container">

<div class="blog">

<div id="menu">
<MTEntryPrevious>
<a href="<$MTEntryPermalink$>">« <$MTEntryTitle$></a> |
</MTEntryPrevious>
<a href="<$MTBlogURL$>">Main</a>
<MTEntryNext>
| <a href="<$MTEntryPermalink$>"><$MTEntryTitle$> »</a>
</MTEntryNext>
</div>

</div>


<div class="blog">

<h2 class="date"><$MTEntryDate format="%x"$></h2>

<div class="blogbody">

<h3 class="title"><$MTEntryTitle$></h3>

<$MTEntryBody$>

<a name="more"></a>
<$MTEntryMore$>

<span class="posted">Posted by <$MTEntryAuthor$> at <$MTEntryDate$>
<MTEntryIfAllowPings>
| <a href="<$MTCGIPath$><$MTTrackbackScript$>?__mode=view&entry_id=<$MTEntryID$>" onclick="OpenTrackback(this.href); return false">TrackBack</a>
</MTEntryIfAllowPings>
<br /></span>

</div>

<MTEntryIfAllowComments>

<div class="comments-head"><a name="comments"></a>Comments</div>

<MTComments>
<div class="comments-body">
<$MTCommentBody$>
<span class="comments-post">Posted by: <$MTCommentAuthorLink spam_protect="1"$> at <$MTCommentDate$></span>
</div>
</MTComments>

<MTEntryIfCommentsOpen>

<div class="comments-head">Post a comment</div>

<div class="comments-body">
<form method="post" action="<$MTCGIPath$><$MTCommentScript$>" name="comments_form" onsubmit="if (this.bakecookie[0].checked) rememberMe(this)">
<input type="hidden" name="static" value="1" />
<input type="hidden" name="entry_id" value="<$MTEntryID$>" />

<div style="width:180px; padding-right:15px; margin-right:15px; float:left; text-align:left; border-right:1px dotted #bbb;">
    <label for="author">Name:</label><br />
    <input tabindex="1" id="author" name="author" /><br /><br />

    <label for="email">Email Address:</label><br />
    <input tabindex="2" id="email" name="email" /><br /><br />

    <label for="url">URL:</label><br />
    <input tabindex="3" id="url" name="url" /><br /><br />
</div>

Remember personal info?<br />
<input type="radio" id="bakecookie" name="bakecookie" /><label for="bakecookie">Yes</label><input type="radio" id="forget" name="bakecookie" onclick="forgetMe(this.form)" value="Forget Info" style="margin-left: 15px;" /><label for="forget">No</label><br style="clear: both;" />

<label for="text">Comments:</label><br />
<textarea tabindex="4" id="text" name="text" rows="10" cols="50"></textarea><br /><br />

<input type="submit" name="preview" value=" Preview " />
<input style="font-weight: bold;" type="submit" name="post" value=" Post " /><br /><br />

</form>

<script type="text/javascript" language="javascript">
<!--
document.comments_form.email.value = getCookie("mtcmtmail");
document.comments_form.author.value = getCookie("mtcmtauth");
document.comments_form.url.value = getCookie("mtcmthome");
if (getCookie("mtcmtauth")) {
   document.comments_form.bakecookie[0].checked = true;
} else {
   document.comments_form.bakecookie[1].checked = true;
}
//-->
</script>
</div>
</MTEntryIfCommentsOpen>
</MTEntryIfAllowComments>

<div align="center">
Powered by<br /><a href="http://www.movabletype.org" target="_blank">Movable Type <$MTVersion$></a><br /><br />
 <!--this template was modified from the original movable type templates by
 Kristine of Love-productions and blogstyles.
 I'd appreciate it if you would keep a link back to blogstyles with this template!-->
design by <a href="http://blogstyles.com" target="_blank">blogstyles</a>.
</div>

</div>
</div>

</body>
</html>
markpasc
If you go to Blog Config in the sidebar, then "Archiving" in the links across the top, in the "Individual" row, what templates do you have, and what are their Archive File Templates? The highlighted parts here are what I'm asking about.

You may only have one row of stuff there, and the Archive File Templates may be blank; I'd just like to know what you have there. smile.gif
strangedame
I'm sorry about the delay in getting back to you, but I had a minor emergency that had to be attended to. I went to the area that you said I should and here's what I found. The Archive Type is checked, The Individual Entry is also checked, but the area under Archive File Template is totally blank. That's probably my problem, but I don't have a clue as to what goes there. Hope I'm not too much of a drag. Thanks for all your time and if you can help further, please know that it's appreciated. wink.gif
kadyellebee
One other thing that you might check, although it can't be the only thing wrong... in the Weblog Config under Preferences, see what the "Preferred Archive Type" dropdown says.

The pages that your blog is making look more like Date-based Archives than Individual Archives (there's no comment form directly on the page like there should be.)

Kristine ohmy.gif
strangedame
Much to my dismay, here I am again. All of you have been very helpful in your suggestions, but I'm still at the same place as before. I continue getting the same post, over and over, regardless which entry title I click on in my Recent Entrie's sidebar.

I have followed all suggestions, but to no avail. Here's where I stand: In my Archiving Preferences, Individual is selected. In my Archive configurerations, Archive Type: Individual is checked and Individual Entry Archive is also checked, but there is nothing entered in the windows to the right of either of the checked entries.

I am feeling so dumb and distressed because I simply don't know what else to try. I'm sure there is something very simple that will put it back the way it should be, but I'm not privy to it, I have searched this forum and have found some helpful info, which I tried, but didn't work. I also spent hours trying out things from the users manual, but always ended, back at square one. Please, someone, tell me how to resolve this, so I can quit bugging all of you and get back to posting. Here's the link to my site:Strange Dame

I'm ill and need to lie down for awhile, but will check back in a few hours. Thank you in advance for any help you might give me. smile.gif
markpasc
In your archiving selections, do you have any other rows besides Individual checked, perhaps with <MTEntryID pad="1">.html for the Archive File Template?

Try doing a complete rebuild to make sure the problem's really still there.

Don't suppose you'd want to let me take a look for myself, eh? You'd need to make a new account on your system with Edit Templates and Configure Weblog privileges and email or IM me the name and password. I understand if you'd rather not, but I can't think of what else it could be; maybe I'd see something I'm not thinking of.
markpasc
strangedame had a second Individual archive type set up, using the Category Archive template; neither had Archive File Templates set, so they were both using the default of <MTEntryID pad="1">.html. The archive files using the Category Archive template were being written over the ones with the correct Individual Archive template.
girlie
Thanks, Mark. smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.