Super Archives Plugin for WordPress
Comments have been closed as the plugin has not been updated almost forever. I would refer people to the Extended Live Archive which is the Super Archives with extra features.
As I mentioned earlier I had problems with javascripts interfering with each other while loading. While I sorted out my problems with regards to the javascript, the reason why I was playing around with javascripts has already been leaked, and by none other than Michael Heilemann of Binary Bonsai. Since this is inspired by his ideas I guess it’s only fair.
Introduction overwith, I hereby give you: The Engineered Boulderer’s Super Archives Plugin to WordPress
For a demonstration, head over to Michael’s archives page, I am going to put it on my archives page, but it requires a minor redesign before I do.
IMPORTANT The javascript functions in my script have been tested, however, if there are other function set to run when the body loads, and they have problems then the super archive Will Not Run. The process of debugging javascripts is arduous work as they simply fail silently, because of this I do not have time to perform technical support on other people’s javascripts. That said, if Michael could get Super Archives to run on the B with the combination of javascripts he uses, then you can too.
I have included some documentation below, and in the plugin package.
Changelog
Version 1.6.2: Fixed a bug where draft posts in a month would make it show up in the list of months, thanks for the heads up Matthew. Requires a rebuild of the cache (edit a post or post a comment to rebuild).
Version 1.6.1: Fixed a regression which would prevent the php script from reading the settings and cache.
Introduced a more robust Javascript method of attaching events to the loading of the window.
Version 1.6: Fetches the character set from the blog to show international characters correctly.
New functionality for truncating post titles, see documentation below or with the plugin.
Version 1.5.2: Added a missing " in the description. Check the result from each use of document.getElementById() so as to not call null objects.
Version 1.5.1: Put a more stringent check on the FAT object for the Fade Anything Technique.
Version 1.5: Fixed bug where moderated comments were counted. Also, made sure cache was updated for new comments, and post deletions, and pingbacks, etc.
Updated cache structure so the cache can update (for example due to a new comment) while people are browsing the archives without requiring a reload (the plugin should automatically update your cache if you are using an old version).
Included new functionality, see the documentation included below or with the plugin.
Version 1.2: Implements support for Internet Explorer. Many thanks to Chris Boulton for his solution which worked wonders.
Version 1.1: Fixed a bug in the javascript (simple typo, oops).
System Requirements
- Wordpress 1.5 or later
- PHP 4.3.0 or later
Documentation for The Engineered Boulderer’s Super Archive Plugin
The Super Archive plugin is one selfcontained bundle called teb-super-archive, which should be put into the plugin folder to yield the following structure:
wp-content/ ... plugins/ ... teb-super-archive/ includes/ super-archive.js tsa.php tsaAddLoadEvent.js teb-super-archive.php ... ...
The plugin writes some javascript information to the header of each page, and provides a single template function called teb_super_archive(). The function teb_super_archive() takes arguments in the url format as seen in wp_list_cats(), the tags in the arguments are described below.
If teb_super_archive() is called with the standard (empty) argument the following will be output
<div id="teb-super-archive">
<ul id="teb-super-archive-year">
<li id="teb-super-archive-year-2005">2005</li>
...
</ul>
<ul id="teb-super-archive-month">
<li id="teb-super-archive-month-5">May</li>
...
</ul>
<ul id="teb-super-archive-post">
<li id="teb-super-archive-post-...">...</li>
...
</ul>
</div>
which can be styled. The obvious result of the template tag is the <div id="teb-super-archive"></div>, the remaining code is written by javascript and is not visible by viewing source in the browser, it can be styled easily enough though.
The plugin provides an additional template function teb_sa_reset_cache() which deletes the cache files. As with any function which delete files, this function should only be used in an emergency! I have tested it on my test blog and with the help of Michael Heilemann, but there could still be bugs. Use with caution.
Tag parameters
newest_first
(boolean) Sets the sort order of years, months and posts. If true it will show the newest year, month, and post first.
- 1 (true – default)
- 0 (false)
id
(string) The id attribute for the base div of the archive, defaults to ‘teb-super-archive’.
selected_text
(string) The text that is shown after the currently selected year or month (the > sign in your example), defaults to ‘’. If you wish to use html entities (fx. » for ») you should encode it using urlencode().
selected_class
(string) Class for the currently selected year or month, defaults to ‘selected’.
num_entries
(boolean) Sets whether the number of entries for each year and month should be shown.
- 1 (true)
- 0 (false – default)
num_comments
(boolean) Sets whether the number of comments for each entry should be shown.
- 1 (true)
- 0 (false – default)
day_format
(string) A date format string to show the day (or date) for each entry (ie. ‘jS’ to show 1st, 3rd, and 14th), defaults to ‘’ (show no day). Format string is in the php date format.
number_text
(string) String to show for number of entries, can contain HTML, % is replaced with number of entries, defaults to ‘(%)’.
comment_text
(string) String to show for comments, can contain HTML, % is replaced with number of comments, defaults to ‘(%)’.
closed_comment_text
(string) String to show if comments are closed on an entry, can contain HTML, % is replaced with number of comments, defaults to ‘’ (empty string).
fade
(boolean) Sets whether changes should fade using the Fade Anything Technique, note that all elements on the page that have the class “fade” will fade, even those not in the archive.
- 1 (true)
- 0 (false – default)
error_class
(string) Class to put on paragraphs containing errors, defaults to ‘alert’.
hide_pingbacks_and_trackbacks
(boolean) Sets whether pingbacks and trackbacks should influence the number of comments on an entry. Changing this value does not take hold until the cache files are rebuilt. A true value will hide trackbacks and pingbacks from the comment number.
- 1 (true)
- 0 (false – default)
truncate_title_length
(number) Length at which to truncate titles, defaults to 0 (titles are not truncated).
truncate_title_at_space
(boolean) Sets whether at title should be truncated at the last space before the length to be truncated to, or if words should be truncated mid-senten… Has no effect if truncate_title_length is 0.
- 1 (true – default)
- 0 (false)
truncate_title_text
(string) The text that will be written after the titles that have been truncated, defaults to … (…). Same rule applies as for selected_text, use urlencode() to encode it.
May 8th, 2005 at 9:49 pm
Beautifully implemented on the B, by the way. Well done, Jonas.
May 9th, 2005 at 1:13 am
[…] ur Nose, 3 June 2005 Live Archives beep beep Check out the new BB Live Archives, so good that I got ‘em too. […]
May 9th, 2005 at 1:52 am
Bug #1: Not resizing when going from, say, a 20-entry month to a 5-entry month
Firefox 1.0.3 Windows.
May 9th, 2005 at 1:52 am
But very very nice job !
May 9th, 2005 at 4:06 am
This is so slick. Totally changes the way I was going to try doing archives on Zoroaster. You’re a mad genius.
May 9th, 2005 at 4:20 am
hi i just installed this plugin, but for some reason only
is showing up when i runMay 9th, 2005 at 5:12 am
so im calling just the basic tag like you said to but im only getting the opening and closing div. can you explain why and how to fix this?
May 9th, 2005 at 7:54 am
[…] 6 months ago. Remarkable, as Jonas is only 4 days into WordPress! Oh, you want them too? Run along over to Jonas for your fix then. My Implementation […]
May 9th, 2005 at 9:27 am
Arno,
Could you provide a screenshot, or somewhere I can see the behavior? I, unfortunately, don’t have access to a PC so I can’t test it.
Nat,
Only the opening and closing div will show up in the source code. The rest of the data is written by the javascript. You can try to insert some
alert();statements in the javascript (for example in thetsaLiveReqInit()andtsaLiveReqProcessReqChange()functions) to see if it gets initialized and called.May 9th, 2005 at 11:40 am
Live Archives
Quite possibly the best plug-in for Wordpress ever, Live Archives, allows for “live” browsing through the archives. I have implemented it here on my archive page and it is fabulous. Shouts definitely go out to BB for the wicked implement…
May 9th, 2005 at 12:06 pm
My congrats again Jonas.
Just wanna let you know that the script outputs an error on IE 6 (line 105) causing the script not to run…
Hope you solve this soon!
May 9th, 2005 at 2:23 pm
[…] Live archives are now implemented, as mentioned here, here and of course by the author, here.
Technorati Tags: wordpress, plugi […]
May 9th, 2005 at 3:56 pm
[…] 5/9/2005 WP Plugin: Super Archives Plugin Categories – General — Mark WP Plugin: Super Archives Plugin Javascript based “live […]
May 9th, 2005 at 3:57 pm
[…]
davidbisset.com
Super Archives Plugin for WordPress Very cool script for WordPress 1.5 for blog archives. You can […]
May 9th, 2005 at 4:49 pm
From the B : after I clicked April 2005 and then back on May 2005.
Notice the large blank section: this is the space that the post of april were covering
May 9th, 2005 at 5:02 pm
This appears to be a general problem with Firefox (or Gecko based browsers in general?). Does anyone know of a way to reflow content in firefox using javascript?
May 9th, 2005 at 5:13 pm
[…] n WordPress: Cosmos Link Plugin WordPress: Super Archives Plugin Super Archives Plugin è un plugin, basato su javascript, per […]
May 9th, 2005 at 5:14 pm
Nope and this has been my major issue since I began working on a plugin called … LiveArchives
I guess my pain stopped yesterday with your awesome job. But I am sure there is a way to solve that : I’ll d/l and play along with your code tonight to see if I can help figuring this out.
May 9th, 2005 at 5:22 pm
Any help is welcome. If nothing else I guess I might spring for the rhino book in a few days time.
May 9th, 2005 at 6:06 pm
[…] t Artikelüberschrift und Anzahl Kommentare. Interesse an einer Implementierung? Quelle: The Engineered Boulderer Demo: binarybonsai Archive
Stich […]
May 9th, 2005 at 9:31 pm
[…] latest and greatest thing to hit blogs; Live Archives. Technically they are being called Super Archives by the pl […]
May 10th, 2005 at 12:36 am
Wonderful plugin. Thank you very much.
There is a small bug however in which moderated (or in moderation) comments are counted in the total, offsetting the correct amount dramatically in some cases.
May 10th, 2005 at 5:41 am
I may be dumb, infact I’m pretty sure I am. But why am I not able to create a page and call this function? Should I go about getting the super-archives to work besides doing ‘make page’ with this as it’s body?
May 10th, 2005 at 7:17 am
hmm still not working…
so now ive resorted to teb_super_archive(‘num_comments=1&fade=0&num_entries=1&closed_comment_text=”-”’) teb_sa_header()
of course those are called noramlly but its slow and doesnt look right. see it here: http://www.pseudoweb.net/wordpress/314/ any suggestions?
May 10th, 2005 at 10:18 am
Thanks for the cool plugin. I was wondering if it is at all possible to hack the plugin to filter out a particular category, or even treat a particular category different to the others?
Basically I want to either keep my remainder links out of the super archive list or brand them with a different css style so they stand out as being different from normal posts.
Any help/suggestions would be most welcome.
May 10th, 2005 at 10:39 am
Jeff Wheeler,
Thanks, I’ll look at it. At present I don’t check the comment status. I’ll have to look at it but that shouldn’t be too hard.
scud,
You will have to put the php code with the function call to
teb_super_archive()in a template for it to work. As far as I know, php code entered into the page contents will just be displayed, it won’t be run. Hope that helps.Nat,
That problem, in your case, is that the Fade Anything Technique javascript is called after the Super Archives javascripts. If you look in the bottom of the twFAT.js file it says:
window.onload = function ()
{
Fat.fade_all();
}
This overwrites the cumulative created by the Super Archives. Either the inclusion of the twFAT.js file should be moved above the Super Archive javascripts, or the Fade Anything Technique should be initialized the same way as the Super Archive.
About the speed, it seems alright when I try it. The feeling of lag is mostly connected to the fetching from the cache by the javascript, the faster your connection and javascript implementation, the faster it feels.
Stephen Carr,
It can be done, but it’s a quite large code change (think v. 1.5 / 2.0) as it has to do with the way the cache is structured, ie. either the cache has to be changed for each exclusion, or the categories for each post has to be cached too. It’s on my feature wishlist, but it’s not something that’s coming tomorrow. You are welcome to look at the code if you want to.
May 10th, 2005 at 4:30 pm
Hi. So, I have installed, and the resulting page outputs only the DIV tags, with no content between. One comment above suggests that this may be due to a javascript conflicts (and you suggest, rather understandably, that it is not your fault if our bad js conflicts with yours).
I just want to confirm that the problem I am seeing is due to this, and that I should start trying to debug, etc.
Thanks,
Danny.
May 10th, 2005 at 4:32 pm
[…] 8217;t normally that useful (they just never work that well) but the drill down lists from Jonas Rabbe are really handy. Try them yourself here or follo […]
May 10th, 2005 at 4:45 pm
It does indeed seem like that is the case. There might be a problem with the png fix javascript on for windows machines (I am on a mac so my browser doesn’t even see that javascript). The problem, however, is with the
onload="..."in the body tag. You could create a javascript function which performs the functions in the onload attribute, and use thetsaAddLoadEvent()function to call this new function when the page has loaded.May 11th, 2005 at 2:34 am
well i found the first plugin conflict with your plugin
Twilight Fade anything Plugin at http://twilightuniverse.com/2005/05/twilight-fade-anything/
does not work with your plugin. if you deactivate it. everything works fine.
May 11th, 2005 at 4:41 am
[…] y need some time so i can run through it and clean it up. The Digital Archive of Babylon Official “Super Archives” page Live Archioves at […]
May 11th, 2005 at 10:35 am
Jonas,
The plugin RunPHP allows you to put PHP code into a post or page, and have it ‘evaluated. Just checkmark the “eval() Ccontent” box when creating a post or page.
May 11th, 2005 at 1:55 pm
I have a “FAT not defined error” on IE.
Any help on solving it?
May 11th, 2005 at 2:07 pm
Try version 1.5.1 which checks if the variable FAT is ‘undefined’ instead of simply checking the implicit value of the object.
May 11th, 2005 at 5:05 pm
Running tag at http://deep.mastersfamily.org/?page_id=346 and getting the message: “Could not open cache file for years” appearing in the body of the page where the tag resides. I’m guessing it may a permissions problem, but I’ve played around with that and not had success. Any suggestions?
May 11th, 2005 at 5:09 pm
It appears that the plugin cannot write to your wp-content folder. The web server must have write permissions to your wp-content folder for the plugin to work.
May 11th, 2005 at 11:32 pm
I am using 1.5.1 and still no luck solving the “FAT not defined error”
I just don’t get. BB and other sites are ok in IE with the script! Why isnt mine!
Thanks Jonas
May 12th, 2005 at 12:48 am
Hello Jonas. I was using your plugin fine, but all of the sudden, I started getting this error:
Error: uncaught exception: Permission denied to call method XMLHttpRequest.open
in Firfox’s Java Console. Is this a server problem or a browser problem, because I have no idea…
thanks for your fine work. Live Archives is the best thing I’ve seen in a very long time.
May 12th, 2005 at 3:07 am
nevermind.
May 12th, 2005 at 4:50 am
[…] with this new theme for to long now. I was browsing over at The B earlier and say the new Live Archives plu […]
May 12th, 2005 at 4:59 am
Love this plugin man. Great job! Any chance there could be a feature in the works to truncate post titles to a user defined length? A few of my posts go over the length of the post div width.
May 12th, 2005 at 11:05 am
Vitor,
I meant version 1.5.1 of the plugin (see the changelog above). Sorry for the confusion.
BoBB,
I’ve written it on the feature request list. It should make it into the next feature update, I don’t have any timeline though.
May 12th, 2005 at 10:59 pm
Awesome
I will keep my eye out for it!
May 12th, 2005 at 11:15 pm
Thanks!
May 13th, 2005 at 6:28 am
John, in a nutshell and without warranty : change the chmod to 755 line 185 in teb-super archives.
if( !is_dir($teb_sa_cache_path) ) {
if( !mkdir($teb_sa_cache_path, 0755) ) {
return false; }}
Btw, not sure why the group should get writting write : 99% of the PHP server I have seen have a uname to root when it come to file system actions…
May 13th, 2005 at 11:35 am
Great plugin.
However, it appears to have a problem with special characters such as æøåôõö (not sure these characters show up in this comment since they’re stripped from the comment preview – but being danish you’ll know what I talk about).
Also the names of the months do not respect the custom settings made in locale.php.
May 13th, 2005 at 5:23 pm
Mine is the remaining 1%. When I upload to my server am usually the owner and the webserver is the group. To make sure the plugin can write my cache I need the web server to have write permissions.
There are problems, and they stem from the use of Unicode being passed back and forth between the web server and the javascript. I haven’t done anything in particular to be nice to special characters, so I’m sure they are FUBAR.
The month names are written by the
tsa.phpscript and does not take the settings in WordPress into account at all. I’ve written it into the feature list so I’ll look at it next time I work on it.May 13th, 2005 at 8:00 pm
Look no further than the new version 1.6 of the plugin, released today. It also fixes one of the problems mentioned by Martin:
As you can see I’ve also fixed the use of internation characters in the live preview (which I have communicated to Jeff Minard), and in Textile 2 (Improved). If anyone knows how to get in touch with Adam Gessaman who has made Textile 2 (Improved), I can’t seem to comment on his blog, and most of the new comments are spam.
May 13th, 2005 at 10:05 pm
Indeed, the international characters now show up. Thanks for your help
May 15th, 2005 at 7:53 am
[…]
May 15th, 2005
Awesome Date Archives
Michael’s implimentation of the Super Archives Plugin (which was his original […]
May 15th, 2005 at 7:57 pm
I am just wondering what I need to do to fix this error:
Warning: mkdir(/home/sarcasmi/public_html/backlog/wp-content/teb-super-archive-cache/): Permission denied in /home/sarcasmi/public_html/backlog/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 82Could not open cache file for years
What file should I make writable because there is no file called teb-super-archive-cache included in your plugin, unless it is the main file teb-super-archive, which is automatically defaulted 755.
Anyway, I am sort of confused so any help would be greatly appreciated.
May 15th, 2005 at 8:23 pm
Alisha,
It’s the wp-content directory which must be writeable by the web server. The line in question creates the teb-super-archive-cache directory in the wp-content directory.
May 15th, 2005 at 9:19 pm
Thanks for answering my question. The plugin works now.
May 16th, 2005 at 1:57 pm
I have set all the correct permissions, but still get “Could not open cache file for years”. Any tips?
May 16th, 2005 at 3:28 pm
I have the same issue as Henrik. Permissions set correctly – in fact version 1.2 worked a treat – the latest one keeps on erroring with “Could not open cache file for years”. Any help would be greatly appreciated.
May 16th, 2005 at 3:52 pm
Henrik and Ian,
It seems that the plugin still can’t create the the cache folder in wp-content. At least the teb-super-archive-cache folder doesn’t exist inside wp-content on both sites.
Since I can’t duplicate this behavior without changing the permissions on wp-content, I don’t have a solution, sorry. If anyone with php and debugging experience see this, I would appreciate some more feedback.
May 16th, 2005 at 7:11 pm
[…] ios, recibiendo un correo electrónico cuando se añada un nuevo comentario a ese hilo. […]
May 16th, 2005 at 11:30 pm
Thanks for the plugin it’s awesome but I’m having some problems with it as can be seen on this site:
http://hansr.net/archives/
I can’t seem to get rid of the bulletin
I’ve tried everything I can think of and it doesn’t seem to be related to any CSS sheet so I thought it might be part of the plugin but I have no idea how to remove it. This is the code I’m using for the page:
%&comment_text=
%&closed_comment_text= – &selected_text=’.urlencode(’‘)); ?>
May 16th, 2005 at 11:33 pm
Okay the code didn’t come out correctly in the above comment so here it is:
http://hansr.net/myndir/livearchives.png
May 17th, 2005 at 8:05 am
Hansi,
This seems to be a pure CSS problem. You should use the CSS property
list-stylewith the propertynoneon each list that is returned.you have a CSS rule that specifies the id
teb-super-archiveand then the tagul, in this rule thelist-style: noneshould be included.(I found out that textile doesn’t play well with hash marks, I guess it’s a good thing I don’t write about c-sharp).
May 17th, 2005 at 12:40 pm
Okay thanks a lot, that worked
May 17th, 2005 at 11:52 pm
I got it working. Was just using the wrong code to call the script.
May 18th, 2005 at 12:26 pm
But now something else is wrong. The archive worked great, but now the page appears empty without having made any changes. You can see it at http://henriksand.com/archives/. Any suggestions to what I can do?
May 18th, 2005 at 12:32 pm
You have two occurences of the body tag in the HTML of your archives page. For one, the double occurrence of the body tag might confuse the javascript. Also, the onload attribute of the second body tag means the super archive javascript is never initialized, as in comment 65 above.
May 18th, 2005 at 5:11 pm
Fixed it. The problem was the second body tag. Thanks for a nice archive solution!
May 18th, 2005 at 6:46 pm
[…] manage image uploads for and Wordpress writer MonthChunks Customizable Comment Listings Super Archives – I can’t get it to fully work […]
May 19th, 2005 at 6:26 am
[…] amente tiraba mucho tiempo y queries (cosa ridícula) y también la mejoré con el plugin Super Archives de Jonas Rabbe […]
May 19th, 2005 at 7:06 pm
not sure if I am just stupid but… whenever I try to display it on a page, all I get is some text with the year, then the months in that year, then the post, but they are all vertical, none are displayed sideways and expands like I think it should.
I might have just missed something somewhere but could some one please tell me what to do to fix it?
May 19th, 2005 at 8:37 pm
Bobd,
The behavior you explain is a CSS “issue”. You can start by looking at the CSS that Michael uses as described on the Binary Bonsai. Alternatively you could look at some of the CSS books about, look for authors like Dan Cederholm, Dave Shea, or Eric Meyer.
May 20th, 2005 at 4:44 pm
Great script— I’ve been looking for an archives organization solution like this for a while now, but I’m having some problems.
I’m pretty sure that it’s something that I’ve forgotten to do, since this seems like an isolated incident, but I’m getting a
Fatal error: Call to undefined function: teb_super_archive() in /home/geremolo/public_html/archives2.php on line 78"error when I try to call the function.The function that I am using is the same as the one that Michael listed on BB, and I’m pretty sure that I’ve put the files in the correct directory structure.
Thanks
May 20th, 2005 at 4:54 pm
You should turn the plugin on in the WordPress adminstration interface.
May 20th, 2005 at 7:57 pm
I just realized that I was using the wrong vesion of wordpress… I should’ve checked the requirements first. Now I’m having a problem with the script only displaying the div tags in the source code, but I’ll look in to it a little deeper later on.
May 21st, 2005 at 10:36 pm
I’m having the same problem with no ul showing up between the div… I’m not using any other javascript and am not sure how to tackle this…..
May 22nd, 2005 at 2:00 am
ok for some strange reason, the scripts werent being embedded in the head of my doc, so I linked them manually and it works fine, odd tho as I tried it also on the default them and the scripts were embedded fine. maybe this is the same prob others might be having when no ul appears in the div…
nice work on this.. it rocks….
May 22nd, 2005 at 10:08 am
clint,
Make sure that you have a call to
wp_head();as the last thing before your </head> tag in your header. Otherwise, plugins won’t be able to include things like scripts.May 23rd, 2005 at 4:58 am
Hi There
Thanks for great plugin. It was pretty easy to get it working on Beta Thoughts . I seem to have run into a benign bug but never the less a bug. Archives work beautifully when I use the following URI
http://www.pnarula.com/archives
But fail to show anything when I use the URI without www i.e.
http://pnarula.com/archives
Any help would be greatly appreciated.
Cheers
Pankaj Narula
May 23rd, 2005 at 9:15 am
Pankaj Narula,
That is the weirdest bug. I’ve looked at it and can’t see anything that should trigger it. The only thing I can think of, is that the browser will not load the javascript since it is essentially a different site (the one with www compared to the one without), and could be an example of cross-browser scripting. if you look at the function
teb_sa_header()in the plugin fileteb-super-archive.php. and change the plugin path from$plugin_path = get_settings('siteurl') . '/wp-content/plugins/teb-super-archive';to
$plugin_path = '/blog/wp-content/plugins/teb-super-archive';as it would specifically be in your case. See if this works. If it does. let me know and I’ll look at it.
May 23rd, 2005 at 2:39 pm
Hi!
Love your plugin but I was wondering if there is a way to hide specific posts or posts from a specific category…
May 24th, 2005 at 1:56 am
Jonas
Yes it worked. Please check
May 24th, 2005 at 8:19 am
henna,
Not at present. It’s on the feature request list, but I don’t have a timeline.
Pankaj Narula,
That’s cool, I’ll look at using relative paths in a future upgrade, to prevent this kind of problem. Thanks for helping me isolate the bug.
May 24th, 2005 at 1:32 pm
I think I must be slow on this one. Why do I not have a link to /archive when I impliment this? I don’t appear to have an archive.php as well. Using WordPress 1.5.1.1.
Any help would be greatly appreciated.
May 25th, 2005 at 4:16 am
[…] 装经验
归类于 杂感杂谈 — 海 @ 10:20 am 收藏到黄页书签
Super Archive是wordpress的一个插件。其效果如我的 […]
May 25th, 2005 at 10:08 am
Tracy,
To get an archives page you have to create a page in WordPress 1.5 or later. The archive.php we are talking about is a theme template you would use for the archives page. It is with a theme in the wp-content/themes folder. The Codex has more information about templates and using static pages.
May 25th, 2005 at 1:12 pm
There appears to be a slight bug in your fantastic Super Archives, if you look at my archives (you may have to refresh the page or click on the header then ‘archives’ to get it to load – maybe another bug?) – there is an entry for September 2005 with ‘0’ posts. This, I guess is due to the draft post I have there – just a heads up.
May 25th, 2005 at 1:49 pm
matthew,
Thanks for the heads-up. I’ve released 1.6.2 which should fix this bug. It requires a rebuild of the cache, the cache is rebuilt if a post is saved or a comment is posted.
May 25th, 2005 at 3:17 pm
A fixed, cool
May 25th, 2005 at 7:17 pm
has anyone been able to get this to work in IE5x? eg, the archive year and archive months clickable… the site i’m dev’ing will have a predominant modern browser base (FF if my advocacy/evangelism pays off), but I’d like to shoot for 5x if possible, and if not then a subtle info message with a link to ff…
May 26th, 2005 at 10:58 pm
It depends on which version of IE 5 (mac or windows). There is an article on the javascript event models over at Apple’s developer site. This was used as background info when developing Super Archive.
May 27th, 2005 at 5:09 pm
New Archives Implemented
After fiddling around for ages (due to my complete and utter lack of knowledge of how stuff works), I’ve managed to implement the Super-Archive by Jonas Robbe. It’s a beautiful and convenient way of looking through my archives, and much bet…
May 29th, 2005 at 3:16 pm
Love the plugin. I had a slight error with special characters.
May 29th, 2005 at 11:43 pm
I believe I have set up everything correctly but the page only shows the code, (
), vice the output of the archives.I currently run WP 1.5 and plugin version 1.6.2
You can see the result here.
The js scripts are being called into the header and I have tried both with/without using Runphp for the page.
Thanks for any help you can give.
May 29th, 2005 at 11:56 pm
Oops, never mind Jonas. I just inserted Binary Bonsai’s code and everything is working.
May 30th, 2005 at 7:25 am
[…] e.net/~diogenes/meaning1.htm”>The Meaning of Life The Engineered Boulderer » Blog Archive » Super Archiv […]
May 31st, 2005 at 6:15 pm
I would very much like to use this plugin. It installs and activates without problems, but when I create a PAGE with the following:
teb_super_archive();
and view the page, it displays a page with only the word “Archive” as a header on it. Nothing else. IE tells me that the page has errors, and when I click to see them, I get the following:
Line: 126
Char: 3839
Error: Object required
Code: 0
URL: http://www.drewvogel.com/index.php/archives/
Can anyone shed any light on this for me?
May 31st, 2005 at 7:57 pm
When I access the page in Safari I can see that there is a javascript exception. The problem seems to be that the web server cannot read the super-archive.js file, at least the exception is as follows:
May 31st, 2005 at 10:27 pm
THANK YOU! A quick permissions check revealed that ownership was wrong. It’s working now.
Can you describe what I need to do to make my archive page (http://www.drewvogel.com/index.php/archives/) look like Michael’s (http://binarybonsai.com/archives/)?
May 31st, 2005 at 10:29 pm
Hrm. I noticed that I am still getting an error on the page (though the archive items are now displaying), but cannot display what the error is…
May 31st, 2005 at 11:27 pm
I only see the error once and a while (and I’ve only seen it on your site).
Anyway, for the look and feel of Michael’s archive I can only refer to his writeup where he gives away his secrets (the code and css).
June 2nd, 2005 at 10:16 am
[…] upport onto the server. Live Comment Preview no nofollow Popularity Contest Dofollow Super Archive Theme Switcher S […]
June 3rd, 2005 at 8:18 am
Great plug-in it works like an absolute charm.
The display though had one bug that I can’t seem to figure out, I am sure it has something to do with my implementation as compared to the code, but would appreciate any feedback. Preceeding any title, (either month name or post name) there is this little icon, more like a circle within a circle. Would you know what could be causing it? Or how I could fix it?
For my implementation of the plug in go here.
June 3rd, 2005 at 11:07 am
mbablogger,
The “problem” stems from this rule in your stylesheet:
#content ul li {
background: url('img/bullet.png') no-repeat 0 7px;
padding-left: 1.5em;
}
you should be sure to reset the background property for the list items in the Super Archive.
June 3rd, 2005 at 9:04 pm
Jonas,
You are a genius!
It worked like a charm.
I am a newbie at css and php but I knew enough to go through the style sheet for the super archive tag, but I stopped there pulling my hair out in frustration when I couldn’t find any image references. I wasn’t smart enough to think that it was a global variable.
Thanks once again for the great plug in and super fast response over a bug not even caused by your plug in.
Regards!
June 3rd, 2005 at 10:37 pm
[…] o. The missing piece fell into place thanks to Jonas Rabbe, who has developed the ‘super-archive‘ plug in for word press that is currently […]
June 5th, 2005 at 8:31 pm
I have no idea what this error is:
Error: [Exception… “‘Permission denied to call method XMLHttpRequest.open’ when calling method: [nsIDOMEventListener::handleEvent]” nsresult: “0×8057001e (NS_ERROR_XPC_JS_THREW_STRING)” location: “” data: no]
but in shows up in my Javascript inspector (within Firefox) everytime I call my Archives page. The end result being that Live Archives doesn’t work.
June 5th, 2005 at 9:43 pm
I get the following error:
Could not open cache file for years
http://robot.f2o.org/live-archives/
June 5th, 2005 at 10:11 pm
Steven,
The cache files could not be created, verify that the permissions on the wp-content directory are correct. Contact your system administrator if necessary.
June 6th, 2005 at 12:50 am
What should the permissions be?
June 6th, 2005 at 12:54 am
I changed the permissions and now there is nothing…
http://robot.f2o.org/live-archives/
June 6th, 2005 at 10:53 am
Hi.
Having some problems. I’ve tried to update to 1.6.2 but no luck. I often use the function to publish ahead of time. But the forward published enties show up in the Super Archives. See http://www.bojko.dk/arkiv.php for a glance.
Is it me who’s been messing up. I’ve implemented the Super Archive after instructions on The B. Everything else works like a charm.
Now if there was a way to setup the categories the same way…. But that’s another story.
June 6th, 2005 at 7:31 pm
[…] :dark 在海豚的帮助下安装成功。 效果见俺页首的archives页面。 1,在下载最新版本。 2,解压,把teb-super-archive文件 […]
June 8th, 2005 at 1:39 pm
[…] earchive dan nicetitle. LiveArchive Pertama ambil terlebih dahulu plugin SuperArchive di sini. Kemudian urai berkas tersebut , dan kirim ke folde […]
June 16th, 2005 at 8:08 pm
It looks like javascript is having some problems with the tsa.php in my installation of 1.6.2 — don’t know what’s going wrong. I’ve setup an alert for the responseText on http://webmages.com/archives/ so the errors are visible.
I’ve checked, and it is able to write to the cache directory (I’ve blown it away a few times).
June 16th, 2005 at 8:11 pm
Another problem – it appears to run on every page of the blog, causing excess server hits (don’t need to hit tsa.php if we’re not actually on an archives page).
June 16th, 2005 at 8:38 pm
Ok, so, if it looks like you’re getting no output, but there don’t appear to be any javascript errors, it’s likely an issue with PHP. The tsa.php causes notices to be thrown about a whole bunch of variables, and if you have your error messages set in PHP to display those, the script fails (it’s unable to parse the errors out of what’s being returned).
I’d suggest the author might want to fix the tsa.php to run without notice/error/warning (E_ALL).
Also, here’s an updated tsaLiveReqInit() function that checks to see if teb_super_archive() has been called, and if not halt processing (preventing the xmlhttprequests from running on every page load).
function tsaLiveReqInit() {
// check to see if the teb-super-archive id exists in the document.
// if not, then no need to send a request.
var test_obj = document.getElementById(‘teb-super-archive’);
if (test_obj) {
if (navigator.userAgent.indexOf(“Safari”) > 0) {
// branch to get to internet explorer
} else if (navigator.product == “Gecko”) {
// branch to get to internet explorer
} else {
tsaIsIE = true;
}
tsaLiveReqDoReq(’‘);
}
}
June 17th, 2005 at 12:04 am
Mark,
Thanks for all the debugging. I’ve been busy with other projects and haven’t laid eyes on Super Archive for almost a month. I’ve tried being nice in the php with regards to errors, but I guess there are places I could prevent warnings from cropping up.
Thanks also for the update of the
tsaLiveReqInit()function. It’s is certainly nice to prevent the javascript calling tsa.php on every page, I’ll be sure to include it with the plugin soon. My intention was to clean up the code after the initial release (which was a bit rushed with Michael breathing down my neck), but with one thing and the other I never got around to it. If my more pressing projects get cleared up this weekend, I’ll make sure to look at it.June 17th, 2005 at 12:39 am
[…] ge in the archives page (only viewable on certain themes). I changed what plugin I used to Super Archives. The Archives will continue to develop with mo […]
June 19th, 2005 at 10:07 pm
[…] ary Bonsai for several things. I spotted his Live Archives, which are a script from “The Engineered Boulder”, although Michael had done a lo […]
June 25th, 2005 at 8:18 am
[…] ension I really enjoyed. Del.icio.us Direc.tor is amazing! This is something similar to a super archives plugin for WordPress. It was amusing to comme […]
June 26th, 2005 at 3:41 pm
[…] tent yet, but trust me you’ll like it when I do). Credit for this plugin belongs to Jonas Rabbe who took the time to code it, and Michael Heilema […]
June 28th, 2005 at 7:39 pm
Hey Jonas,
I don’t know what’s going on with this… but I’ve been getting this error in Firefox:
The script works and shows up fine in Safari, but doesn’t appear at all in Firefox. Mike’s archives show up fine, so I have no idea what could be wrong.
July 2nd, 2005 at 1:16 am
Hi,
It’s not really working for me. Well, it doesn’t display the menu. Have a look at the little screenshot so you get what I’m saying.
http://img119.imageshack.us/img119/5215/arch8ss.png
That’s all I get. :S
July 2nd, 2005 at 10:56 am
Bilal,
Your image shows that your lists have not been styled. Look at the CSS Michael has made available to try and get it to work.
July 2nd, 2005 at 7:57 pm
[…] it was way too muggy to have been held outdoors. And, finally… Why won’t the plugin on my archives page work?! Arrrghe!! It stopped puttin […]
July 3rd, 2005 at 10:32 pm
Thanks Jonas. It worked!
July 3rd, 2005 at 11:02 pm
By the way, they don’t really work properly in IE for me. Is there a fix for it?
Thanks.
July 5th, 2005 at 8:10 am
Test Code
2005
...
May
...
...
...
July 7th, 2005 at 12:38 am
So is there a fix for it in IE?
July 7th, 2005 at 12:52 am
Bilal,
I have no clue what the problems are in IE, as I have only tested it in Firefox and Safari. If I have to deliver a fix I need some more information to find out what the cause of the problem is.
July 7th, 2005 at 4:35 am
Sorry, I’m annoying you.
Check this page in IE, if you can. http://xeenat.com/wordpress/archives
Sometimes, the Live Archive work properly and sometime they don’t. =/
Right now, I can’t even see them.
All perfect in Firefox though. If you don’t know what the problem is, then I can leave it like that.
July 12th, 2005 at 8:11 am
[…] Arno went ahead and added category support to Jonas’ Super Archives plugin; releasing it as the Extended Live Archives Plugin; fantastic! […]
July 12th, 2005 at 11:26 am
[…] 我現在 Archives page 內使用的是 Super Archives 的 WordPress plugin,本來我都很滿意的,但今天我發現 Arnaud Froment 將 Super Archives Plugin 改良成為 Extended Live Archive,不但擁有 Super Archives Plugin 的用年和月搜尋有關文章的功能。 […]
July 12th, 2005 at 11:47 am
[…] I have implemented an advanced version of live archives, based on Jonas’ original, as mentioned briefly by Michael – check it out. […]
July 12th, 2005 at 12:03 pm
[…] I’ve implemented Jonas’ Super Archives plugin, which makes it a breeze to sort through the Apostrophe S archives. Go ahead, try it. Just click on “archives.” It’s pretty cool. […]
July 12th, 2005 at 3:25 pm
[…] 之前介紹的 Super Archives Plugin 已經讓我很滿意了, 沒想到有人將這個 plugin 加強, 除了按照月份以外, 還可以依照分類顯示過往文章, 效果請看這, 我就不貼圖了. […]
July 12th, 2005 at 4:55 pm
[…] Super Archive, par Jonas Rabbe […]
July 12th, 2005 at 5:30 pm
[…] Extended Live Archive可以生成动态的存档显示,这里有一个演示。这个插件和我使用的Super Archives Plugin有一定关系,相比之下它多了按照Categories分类的功能很实用。 […]
July 13th, 2005 at 4:26 am
[…] Super Archive:用以製作 Live Archive 。 […]
July 13th, 2005 at 8:12 am
[…] 昨天晚上,把 WordPress 的 Super Archive Plugin 及 Extended Live Archives Plugin 給裝起來 尤於我不是使用預設的 Theme,加上用的 Theme 剛好沒有 archives.php 所以得 hack 一下 除了修改 style.css 外(其實就是把那些 Plugins 附的 css 剪下貼上) 由於沒有 archives.php,所以我只好直接從 index.php 下手了 加上底下這段來判斷: […]
July 13th, 2005 at 8:28 am
[…] 昨天晚上,把 WordPress 的 Super Archive Plugin 及 Extended Live Archives Plugin 給裝起來 由於我不是使用預設的 Theme,加上用的 Theme 剛好沒有 archives.php 所以得 hack 一下 除了修改 style.css 外(其實就是把那些 Plugins 附的 css 剪下貼上) 由於沒有 archives.php,所以我只好直接從 index.php 下手了 加上底下這段來判斷: […]
July 13th, 2005 at 6:56 pm
On my site this is showing a future post that isn’t live yet.
July 16th, 2005 at 5:56 pm
[…] Thanks to binarybonsai.com I was informed about the new plugin Extended Live Archives. This plugin is an addon to the Super Archives plugin, also known as Live Archives, which adds category support into the archive browser. […]
July 17th, 2005 at 12:35 pm
I was looking for a WP archive code and your was sooo awesome for me that i had to try but one problem is that:
Okey i installed the plugin but i dont know how to make it show on my page i tried using and that brought up this error Fatal error: Call to undefined function get_teb_super_archive() in c:\wamp\www\milane\wp-content\themes\once-upon-a-time\sidebar.php on line 48. Sorry i dont know what to do. Your help would surely be nice
July 17th, 2005 at 6:50 pm
Milane,
You must activate the plugin in the plugin section of the WordPress administration panel by clicking the
activatelink.July 18th, 2005 at 8:01 pm
[…] If you know something about .php and a little about javascript, then I need your help: I want to create an “Archives Tree” plugin for my Wordpress blog with the structure described in this picture: The image is self-explanatory. I think it would be a good way to browse the archives, and faster than Ajax scripts like Super Archives (that I use and that I think are great but… slow). […]
July 24th, 2005 at 5:02 am
If you are having problem with “Could not open cache file for years” it is because you dont have an archive more than 1 year. just make a dummy post and change the timestamp to 2002 or 2001.
July 30th, 2005 at 9:10 am
[…] I finally got around to working on my Archives page. Live Archives now officially works, thanks to a little realization on my part that I did not even have the Super Archives plugin installed. Sometimes my doltishness simply astounds me. Anyway, for those of you out there who are befuddled by the rather broken state of your K2 archives page, here are some user-proof (read: idiot-proof) steps to set it up: 1. [Do this only if you get a 404 error when trying to access your achives page] Make like you are going to use WordPress to manually edit your archives page, and, without actually changing anything, press “Edit This Page.” 2. Install either the Super Archives plugin or the Extended Live Archives plugin. 3. Make your wp-content directory world-writable (CHMOD 777). […]
August 5th, 2005 at 10:29 am
I recently seem to be having some problems with your Super Archives plugin on my site at http://blog.nonmundane.org/
Currently anytime I load my archives page up I get a series of error messages in my Apache logfile I would like to eliminate. I am currently running WP 1.5.1.3 and using K2 alpha four theme(yes I know its alpha). This is on an OpenBSD 3.6 system and apache runs under the user www and not root.
In any case when looking at my Apache 1.3 error log I get these messages and was wondering how I could make them go away?
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: posts in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 109
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 152
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 152
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 152
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: fade_year in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 158
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: num in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 179
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: fade_month in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 185
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: cmt_text in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 221
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: cmt_text in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 221
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: cmt_text in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 221
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: cmt_text in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 221
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: cmt_text in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 221
[Fri Aug 5 01:13:19 2005] [error] PHP Notice: Undefined variable: fade_post in /home/nonmundane/docs/wordpress/wp-content/plugins/teb-super-archive/includes/tsa.php on line 227
I also have the Extended Live Archive plugin installed as well. Could they be conflicting by chance?
If you could help I would greatly appriciate it very much. As you can see just one access to my archives page generates a lot of errors and I’d rather see “real” errors as such. Hope you can understand! Thanks!
-Dan S.
August 5th, 2005 at 2:52 pm
[…] With that in mind, I present to you Extended Live Archives – think of it as Super Archives with a bigger cape. The original Super Archives allowed users to browse through posts by date published in a dynamic AJAX-ified way. Live Archives builds upon this foundation and adds the ability to also browse through the blog categories in the same manner. Very cool. Check it out over at my archives page. […]
August 5th, 2005 at 6:44 pm
great work buddy, can we get the header hook to only run on a certain page, er um like could we put a field in the options admin bit that allows us to say which posts, pages or posts it shows up on?
It looks for the div element outputted by the main function.
if i don’t have it on every page, it throws an error saying it can;t find the element, cause i only run it on my archives page, which is a static_page made by the extended static page plugin, so i can use:
if(is_page(‘32’)){
echo ‘’;
}
buit this isn’t working, pro’ly sumfing im doin left as opposed to right. hehe
or can i run the header hook from the static page, thus only loading the script tag when its on the archiove page? proly not cause the output isn;t buffered before rendering. but worth a ? i think.
August 9th, 2005 at 8:26 pm
Daniel Spisak,
Could be. I haven’t played with the XLA, but since they’re based on the SA, there could be something there.
airtonix,
I’ve been thinking the same thing, but at present I don’t have an obvious answer. I don’t have any time presently, but I’ll put it on the todo list for v. 2.0.
August 14th, 2005 at 4:18 am
[…] Super Archive Version: 1.6.2 Plugin url: http://www.jonas.rabbe.com/archives/2005/05/08/super-archives-plugin-for-wordpress/ Author: Jonas Rabbe […]
August 16th, 2005 at 1:58 pm
[…] Super Archives […]
August 17th, 2005 at 5:49 pm
[…] 這個 plugins 究竟有什麼用途呢?在之前的文章談及之餘再在此講解一下,這個 plugin 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較簡單和基本的,而 Extended Live Archive Plugin 就不同了,這個 plugin 是根據 Super Archives Plugin 再作改進,它用了 AJAX 的方式以年份月份及文章分類的形式搜尋文章,它的效果如下: […]
August 25th, 2005 at 9:29 am
Hey Jonas,
Newbie here. I just installed word press and now I’m trying to install your Archive plugin. Problem is I can’t get it work. I unzip te zip file and put the folders in the correct structure as you mention, all within the Plugin Dir. But I have no option to activate the plugin in My Wordpress Admin.
Am I being so stupid, have I missed an instruction…Please help.
Also, Would I have to create a new folder called “Archives” or is it or built using this pluing. Please help, like I say I’m a bit of a noob to PHP.
Thanks
September 18th, 2005 at 7:09 pm
I am having the same problem as you paul. It seems like a lot of the plugins that are published are set up for people who already know a lot about php. I dont know how to write the code to call up the archives. I tried some based on the snippets of examples I’ve seen but I just cant get it to work.
I am getting the “Could not open cache file for years”. My wp-content folder is set to writable so I am assuming it must be the code. Here’s the link to the archives page I am trying to use. If anyone can help me, I would really appreciate it.
http://fivemoreminutes.com/wonderblog/wordpress/?page_id=32
September 18th, 2005 at 8:43 pm
PaulHi,
To use the Super Archives Plugin you have to create a page which will be your archives page. For this page you must create a template that calls the plugin.
Kelly,
It seems the plugin is called allright, but the cache files are not created correctly. If you try to goto /wp-content/teb-super-archive-cache/cache-files/years.dat which is where the yearly cache file should reside, you get a 404. I know you say that the wp-content folder is writable, but it seems the plug-in can’t create the cache files.
September 18th, 2005 at 10:00 pm
As I have it set up now, the plug in package is in my plugin folder in the wp-content directory. The link you post shows a seperate folder in the content directory. Should I set that stuff up manually?
September 19th, 2005 at 6:57 am
Kelly,
If the plugin can write to the wp-content directory, it should set up the cache files and settings files by itself. If the file and directories linked to in the previous post exist and it still doesn’t work, then I don’t know what’s wrong.
September 21st, 2005 at 6:52 pm
[…] Extended Live Archives or Super Archives […]
September 25th, 2005 at 10:49 am
[…] Extended Live Archives or Super Archives […]
September 29th, 2005 at 8:32 am
[…] […]
October 1st, 2005 at 8:23 pm
круто, работает
October 6th, 2005 at 10:08 am
[…] rss_live_archive,另一个存档加强软件,好像也是参考了Super Archives Plugin for Wordpress。 by Scott | posted in WordPress Plugins Trackback URL | Comment RSS Feed Tag at del.icio.us | Incoming links […]
October 15th, 2005 at 6:24 pm
[…] I’ve finally took the step of implementing the runphp-plugin on my site… And it comes out really rewarding to me… As you can now search through my live-archive.. which I owe to the fabulous super-archive plugin… […]
October 21st, 2005 at 5:52 pm
I can’t figure out why this AWESOME plugin works in FireFox but not IE? For some reason the months are not clickable in IE 6 But everything works great in FireFox. Any ideas?
Thanks again for a GREAT plugin!!!
Here is the page: Archive Page
October 22nd, 2005 at 3:16 am
Has anyone implemented this with the Connections Theme?
I’m pretty sure that I’ve got the thing installed correctly, but the output is pretty bad.
October 27th, 2005 at 11:36 pm
Still having a problem with the install. With I get no output.
Headers are being modified with the following files src’ed:
/plugins/teb-super-archive/includes/tsaAddLoadEvent.js
/plugins/teb-super-archive/includes/super-archive.js
/plugins/teb-super-archive/includes/tsa.php
Cache and settings.dat files are being created in wp-content\teb-super-archive-cache
I have put an alert in tsaLiveReqInit() and it fired.
Alert in tsaAddLoadEvent()did not fire.
Environment is XP Pro, IIS5.0, PHP 5 all on local machine so far.
Fresh out of ideas, any help greatly appreciated. And Thanx in Advance.
October 29th, 2005 at 2:18 pm
The reason why the alert in tsaAddLoadEvent() did not fire is because that function isn’t used anymore, I just haven’t gotten around to cleaning up the plugin. That tsaLiveReqInit() is called tells me that the javascript is initialized properly.
If you visit /plugins/teb-super-archive/includes/tsa.php in a browser, what do you then get?
October 29th, 2005 at 2:59 pm
How do you put “By year” or “By Month” or “By Category” into the teb_super_archive() function? I can’t figure out how you do it.
Thanks.
October 29th, 2005 at 4:21 pm
I don’t understand what you mean by “By year” or “By month” and especially not “By Category” as the super archives don’t support categories, I guess you’re looking for the Extended Live Archives plugin which is made by some other cool dude.
October 29th, 2005 at 4:33 pm
re:If you visit /plugins/teb-super-archive/includes/tsa.php in a browser, what do you then get?
a boat load of
“Undefined variable: posts in C:\Sites\Sensient\wp\wp-content\plugins\teb-super-archive\includes\tsa.php on line 109”
num, fade_year, etc.
I must have done something stupid, huh?
October 29th, 2005 at 4:35 pm
My Previous comment amended:
I do get
* 2005
* 2004
* 2003
* October
though.
November 1st, 2005 at 4:40 pm
Jonas,
Any ideas why the above is not working?
Thanx,
billray
November 4th, 2005 at 8:02 am
Jonas,
Thanks for your great plugin—I love it!
One problem however is that posts which are set in WP to be published at a later date, still show up before they are published in the archives plugin.
Can you provide a fix for this please? Thank you again for giving this to the WP community!
November 5th, 2005 at 12:58 pm
[…] Extended Live Archive Plugin(以下簡稱 ELA)究竟有什麼用途呢?ELA 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較陽春的,而 ELA 就不同了,它是根據 Super Archives Plugin 再作改進,現在它的功能已經遠遠超越了 Super Archives Plugin 了。 […]
November 7th, 2005 at 12:21 pm
[…] Juntamente com o novo sistema de gestão de fotos, instalei também um novo sistema de arquivo. Mais uma vez usei um plugin do WordPress para implementar este novo sistema. A ideia é simples, ter um menu navegável por datas em que não é necessário carregar a página sempre que se selecciona um ano ou um mês. Para isso muito contribui o uso de tecnologia AJAX! […]
November 12th, 2005 at 10:47 pm
Is it possible to print the actual links in the source? Cause my layout is getting destroyed because of that, the clear=all I’m using just makes the page stretch all the way to the bottom and it won’t follow the real size
Can anyone help me debug this?
link: my arquive page
November 12th, 2005 at 11:28 pm
@d3×7r0,
I’m sorry, but it looks fine when viewed in Safari or Firefox on my mac. This indicates that you problem is a CSS problem rather than a problem with the Super Archives plugin. If you are seeing the problem in Internet Explorer you should try an look for CSS references in relation to Internet Explorer.
November 14th, 2005 at 3:36 pm
Well I’m using firefox and didn’t you noticed how the box takes up the entire space untill the bottom of the page? It’s not suposed to do that but if I take the br clear=“all” out it will overlap with my footer and the box won’t be big enough for the archives so yes it’s “sort of” a CSS problem but It’s not just mine…
November 18th, 2005 at 4:15 pm
[…] Now another bad part was, the theme had no archive page, I wanted to add super archive but that also didn’t work well with it…so I have kept archive page as pending…will work on it tonight… […]
November 19th, 2005 at 3:23 pm
hi, i’m having problems deleting the settings.dat and cache files created by this plugin. i can’t seem to chmod the files to get adequate permissions to delete them.
when chmoding i get ‘Operation Not Permitted’ in SmartFTP.
i’m not sure how old this version of the plugin was. i did implement it a while ago, and now i’ve closed the site it used i’d like to wipe the webspace clean to use again!
any idea whats causing this?
November 25th, 2005 at 8:23 pm
for those who has questions about “Could not open cache file for years”
solution: JUST DELETE ALL YOUR INTERNET-TEMPORERY-FILES THROUGH IE options.
have a nice day.
BTW: I think http://www.sonsofskadi.net/index.php/extended-live-archive/ is better because of the Catagories.
November 28th, 2005 at 2:19 am
[…] I got Super Archives and LiveSearch plugins working too. […]
November 30th, 2005 at 12:05 am
[…] De archieven hebben ook een AJAX injectie gekregen door de WordPress plugin Super Archives. […]
December 1st, 2005 at 11:35 am
[…] Extended Live Archive Plugin(以下簡稱 ELA)究竟有什麼用途呢?ELA 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較陽春的,而 ELA 就不同了,它是根據 Super Archives Plugin 再作改進,現在它的功能已經遠遠超越了 Super Archives Plugin 了。 […]
December 7th, 2005 at 12:11 am
[…] Now don’t get me wrong, I’m very proud of Kubrick and K2, and I do think they both have contributed (or in K2’s case, will contribute) to the world of blogging. But what started out as my idea of Digging Archives, was coded by Jonas as Super Archives and finally tweaked and re-tweaked by Arnaud and rechristened the Extended Live Archives, I think, is probably a better long-burn idea. […]
December 18th, 2005 at 10:03 am
I hate to say it but most all these WP so-called plug in coders are terrible. They look like kids or rookies who still need to learn the alphabet.
There is no denying all the horrible releases that people continually find database errors on their WP pages.
WP is going down the drain fast unless they can find some decent coders to include a lot of well-meaning suggestions into the core themselves because these ccoders are making a wreck out of everything and sending blogging into a hunt for a new blog software. Ugh
December 18th, 2005 at 1:41 pm
Joseph,
I’m going to have to call troll here, but since the comment is made here and seemingly directed at me, I feel I should address it anyway.
First of all it’s very rude to come into someone’s house (online or otherwise) and make random assumptions about them. If you had bothered to look at all at my site you would better know my background, and wouldn’t feel the need to degrade my person that way. That said, there are a number of very interesting high quality plugins for Wordpress, but I guess you couldn’t be bothered to investigate that either.
It also seems weird to bitch about database errors as a comment here, since there hasn’t been any database errors mentioned above. Only a few coding errors, configuration errors, js errors, and some css problems.
You’re making some mighty big assumptions about Wordpress and the user community. Instead of applauding those who wants to do something (and does), you insult them. All this, seemingly, without a single accomplishment in the Wordpress area to your name.
I’m all for an open discussion on the direction of Wordpress and anything coding, but your comment was not a good way to start it. Finally, I just want to remind everyone commenting here, that this is my online home, and I will kick you out if you go over the line. Just a friendly reminder.
December 20th, 2005 at 11:49 am
[…] This is where a LiveArchive system is perfect (once again, Michael brought this to my attention). But then where does that go? It’s too wide for the sidebar, so once more we’ve fallen into the ‘top or bottom of the content’ problem regardless of how many columns you’re rocking on your blog. Could it go on its own page? No! That negates the point of the LiveArchive system itself. Many would disagree with me, but I think it really should be on every page. It’s just easier to use it that way. […]
December 21st, 2005 at 4:17 am
[…] Super Archive:用 javascripts按年、月显示文章,效果看本blog右边带黑点的英文那一块。 // Used for showing and hiding user information in the comment form function ShowUtils() { document.getElementById(“authorinfo”).style.display = “”; document.getElementById(“showinfo”).style.display = “none”; document.getElementById(“hideinfo”).style.display = “”; } function HideUtils() { document.getElementById(“authorinfo”).style.display = “none”; document.getElementById(“showinfo”).style.display = “”; document.getElementById(“hideinfo”).style.display = “none”; } […]
December 27th, 2005 at 8:46 am
[…] Potom jsem se díval pluginy a objevil jsem The Engineered Boulderer’s Super Archives a protože se mi moc líbí, pokusím se nový systém prohlíženi archívu implementavat na tomto blogu. […]
December 31st, 2005 at 8:28 am
[…] The Engineered Boulderer » Blog Archive » Super Archives Plugin for WordPress Tags […]
January 5th, 2006 at 8:02 pm
When I activate the plugins (who do not work with K2 on my website) and when I post a comment I have the following error, Any Idea? :
Warning: Cannot modify header information – headers already sent by (output started at /home.2/www/wp-content/plugins/teb-super-archive/teb-super-archive.php:193) in /home.2/www/wp-includes/pluggable-functions.php on line 194
January 6th, 2006 at 9:25 pm
[…] Some time ago, Jonas Rabbe released his wonderful Super Archives Plugin. Based on an idea discussed on Binary Bonsai, this plugin implements a dynamic, AJAXified way of digging into the archives of a blog. […]
January 9th, 2006 at 1:58 am
[…] Extended Live Archive Plugin(以下簡稱 ELA)究竟有什麼用途呢?ELA 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較陽春的,而 ELA 就不同了,它是根據 Super Archives Plugin 再作改進,現在它的功能已經遠遠超越了 Super Archives Plugin 了。 […]
January 11th, 2006 at 6:10 am
Henri, I’m getting the same exact problem
Upon installing and activating this plugin, an error pops up when you try and leave a comment.
Anyone have any ideas?
January 11th, 2006 at 6:16 am
Sorry, I just realized I wasn’t very specific. Here is the error I receive:
“Warning: mkdir(/home/.domino/sway/mydomain.com/wp-content/teb-super-archive-cache/cache-files/): No such file or directory in /home/.domino/sway/mydomain.com/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 193”
January 11th, 2006 at 4:17 pm
[…] I’ve been using Wordpress for about a year now. And I’ve messed around with countless templates, learned countless tricks, and watched as the plugins got better and better. I watched in awe the first time I saw Livesearch on Binary Bonsai. I almost pissed myself when I saw Live Archives and then took a huge crap in my pants when it got even better. I’ve watched the monsters of the Wordpress community because I wanted to be like them, emulate them, and maybe even one day become like them. People who have contributed massive amounts of ideas and code to the Wordpress community: Michael, Chris, Khaled, Joen and others. […]
January 13th, 2006 at 12:41 am
I’ve installed properly, I think… hehehehe, and am getting this error after posting a test comment:
Warning: mkdir(/home/h2orange/public_html/Live/wp-content/teb-super-archive-cache/cache-files/): No such file or directory in /home/h2orange/public_html/Live/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 193
I also get warnings after mass deletes. I read somewhere about deleting one of the archive files and believe it may be a fix. I misplaced the link, however, and am hoping someone has a quick fix…
thanks!
January 13th, 2006 at 9:03 am
[…] ・Extended Live Archives or Super Archives ・FlickrRSS ・Gravatars ・Favatars ・Conversational Categories ・Time Since ・Related Posts ・Brian’s Latest Comments ・del.icio.us cached ・Subscribe to Comments ・Bunny’s Technorati Tags […]
January 13th, 2006 at 10:26 am
Am I missing something here? I installed this plugin and activated it… now what? I see nothing.Can someone explain this in simplified terms?
Thanks
January 14th, 2006 at 9:07 am
[…] いまだ発展途中のbeta版、細かなバグの出現と修正を繰り返している状態なので人によっては「イライラ」してしまう部分も多くあるかも知れませんが、オンタイムでバーチャルな「K2」を登っていきたいという方は一度お試しください。いつかは「K2」の頂きにたどり着けるはずです。ほんものの「K2」のように苦労を強いられるかもしれませんが…。 サポートされているプラグインは以下の通りです。 ・Extended Live Archives or Super Archives […]
January 16th, 2006 at 6:52 pm
[…] Extended Live Archive Plugin(以下簡稱 ELA)究竟有什麼用途呢?ELA 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較陽春的,而 ELA 就不同了,它是根據 Super Archives Plugin 再作改進,現在它的功能已經遠遠超越了 Super Archives Plugin 了。 […]
January 18th, 2006 at 10:08 am
[…] Extended Live Archive Plugin(以下簡稱 ELA)究竟有什麼用途呢?ELA 是提供搜尋 archives 功能的,你或許會問:「這個功能 WordPress 不是已經內置嗎?」WordPress 內置的 archives 搜尋功能是比較陽春的,而 ELA 就不同了,它是根據 Super Archives Plugin 再作改進,現在它的功能已經遠遠超越了 Super Archives Plugin 了。 […]
January 18th, 2006 at 7:54 pm
great plugin, works like a charm!
January 22nd, 2006 at 6:12 pm
[…] ・Extended Live Archives or Super Archives ・FlickrRSS ・Gravatars ・Favatars ・Conversational Categories ・Time Since ・Related Posts ・Brian’s Latest Comments ・del.icio.us cached ・Subscribe to Comments ・Bunny’s Technorati Tags […]
January 30th, 2006 at 11:57 am
[…] http://www.jonas.rabbe.com/archives/2005/05/08/super-archives-plugin-for-wordpress/ […]
February 2nd, 2006 at 7:37 am
[…] WordPress Plugin: Super Archives http://www.jonas.rabbe.com/archives/2005/05/08/super-archives-plugin-for-wordpress/ […]
February 2nd, 2006 at 11:40 pm
I had been having the ‘Could not open cache file for years’ problem, no matter what i did.
I found that the mkdir command and the fopen command that makes the settings.dat file and cache-dir folders in the teb-super-archive.php were making the items, but they was being made to be owned by ‘apache’ on the web server. This was resulting in permission errors later. I remedied it by manually creating the folder myself and chmodding it and the removing the rmdir and mkdir commands from within the php. That way, when I edited an entry on my blog, it then created the years.dat files properly without first dropping and recreating the cache-files folder with improper permissions… I suspect that’s why others are having the same issue I was having.
February 7th, 2006 at 3:04 pm
[…] Super Archives Plugin for WordPress […]
February 12th, 2006 at 2:22 pm
[…] 程序:WordPress 2.0 + Jeffrey的中文语言文件 + 几个插件(Adhesive + Emotions +中文 WordPress 工具箱 + Random Quotes (Chinese) + Super Archive)模板:triSexuality Standard + 一些小的改动(模板中加了我站的链接,不喜欢的可以去掉<li><a href=“http://www.moyii.com/press”>Press At Moyii</a></li> ) […]
February 12th, 2006 at 11:27 pm
[…] The archives have changed too, they now work. Shocking. They have mutated into Super Archives [www.jonas.rabbe.com/archives/2005/05/08/super-archives-plugin-for-wordpress/], not really so super and more of a long list. However in its favour it works, unlike any archive plugin I tried. Even narchives failed me, I guess they hate Wordpress 2.x. […]
February 17th, 2006 at 5:57 pm
IE bug:
after i had installed your super archives plugin, it worked fine in Mozilla, but not in IE. When i clicked a year or a month, nothing happened. In the file super-archive.js (function: tsaLiveReqDoReq(query)) , i wrote the following:
if (tsaIsIE) {
tsaLiveReq = new ActiveXObject(“Microsoft.XMLHTTP”);
}
…instead of what was there before…
if (window.XMLHttpRequest) {
// branch for IE/Windows ActiveX version
} else if (window.ActiveXObject) {
tsaLiveReq = new ActiveXObject(“Microsoft.XMLHTTP”);
}
February 24th, 2006 at 12:49 am
Hi Jonas.. i really didnt wanted to bother you with this.. but im getting this error almost every time i post a new entry:
Warning: unlink(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/2002-11.dat): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 126
Warning: unlink(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/2002-7.dat): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 126
Warning: unlink(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/2001-12.dat): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 126
Warning: unlink(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/2001-11.dat): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 126
Warning: unlink(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/0-0.dat): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 126
Warning: rmdir(/home/.kairo/uberbin.net/wp-content/teb-super-archive-cache/cache-files/): No such file or directory in /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 130
Warning: Cannot modify header information – headers already sent by (output started at /home/.kairo/uberbin.net/wp-content/plugins/teb-super-archive/teb-super-archive.php:126) in /home/.kairo/uberbin.net/wp-admin/post.php on line 59
got any idea whats going on?
Many thanks and sorry to bother you :S
March 17th, 2006 at 6:00 am
No matter what I try I get the following:
“Could not open cache file for years”
I have created the diretories. Granted full permissions and I still get it.
I have a shared hosting account with MediaTemple if that helps. Looks like a greta plugin but all I can do is look
Any help would be great.
March 23rd, 2006 at 7:58 am
I have installed Super Archive but am running into some problems. I’m running K2.
1st nothing shows up on the archive page.
2nd when I publich a new post I get these errors:
Warning: mkdir(/home/.jerrie/hubs/artifacting.com/blog/wp-content/teb-super-archive-cache/cache-files/): No such file or directory in /home/.jerrie/hubs/artifacting.com/blog/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 195
Warning: Cannot modify header information – headers already sent by (output started at /home/.jerrie/hubs/artifacting.com/blog/wp-content/plugins/teb-super-archive/teb-super-archive.php:195) in /home/.jerrie/hubs/artifacting.com/blog/wp-admin/post.php on line 59
It seems like the necessary folders and files aren’t getting written. my wp-content folder is chmodded to 777 so it should be writable. Any Ideas what could be goin wrong here?
April 4th, 2006 at 3:14 pm
[…] Extended Live Archives or Super Archives […]
April 10th, 2006 at 7:01 pm
Even after I enable the plugin, the Super Archives options page doesn’t show up. Am I missing it somewhere?
April 17th, 2006 at 12:53 pm
[…] Super Archives […]
April 23rd, 2006 at 9:31 pm
Hello Jonas,
thank you for this great plugin! Beautiful work!
But is there a way to show dates in other languages than English? I would like to show mine in French, and the language file in WP doesn’t seem to have any effect on this plugin. Someone told me about internationalizing the date formats by making it i18n, but I wouldn’t know how to do that myself.
It would be great if you knew how to make this possible. Thank you!
July 21st, 2006 at 10:29 pm
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
July 30th, 2006 at 11:44 pm
I only get some error about the cache: Could not open cache file for years
What can this be?
Birger
August 10th, 2006 at 9:49 am
[…] There are two big areas that MediaTemple does actually fall short for me. The first is php. Unfortunately, php runs in ’safe mode’ on their shared servers. I knew this going in, but I wasn’t sure if it was going to affect my blog or not. As it turns out, it did. I can no longer run two of my favorite (and useful) wordpress plugins… Super Archives, and WP-Cache 2. I’m really missing both of these plugins. […]
August 29th, 2006 at 7:44 pm
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
September 15th, 2006 at 6:10 am
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
September 18th, 2006 at 1:00 am
[…] Super Archive – Arivinizle bir btn olarak alr ve arivinizi dinamik hale getirir. […]
September 18th, 2006 at 1:41 am
[…] Super Archive – Arşivinizle bir bütün olarak çalışır ve arşivinizi dinamik hale getirir. […]
September 25th, 2006 at 4:55 am
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
September 25th, 2006 at 10:53 am
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
September 26th, 2006 at 11:35 pm
http://jaredbares.com/?page_id=146
Only displaying “Could not open cache file for years” and I’ve set all the permissions properly per the notes above, any tips?
September 28th, 2006 at 2:29 pm
[…] Super Archive – Arşivinizle bir bütün olarak çalışır ve arşivinizi dinamik hale getirir. […]
October 11th, 2006 at 4:56 pm
[…] added super-archives stylesheet support […]
October 14th, 2006 at 4:56 am
Hi,
I installed the plugin a while ago (I have wordpress 2.0), but can’t get it to work. I used the style (css) and code from binarybosai, clear the cache, but still nothing worked. Here is what I have so far
1. I copy/paste binarybonsai css style into my style.css
2. I copy/paste the code into my header.php
I bet I miss some major step.
My site is here praguebuzz.com
I want to put “Archive” on the menubar, where “Home” and “About” page are.
Thanks for any help I can get. I hear so much aobut this super-archive can’t wait to use it.
October 20th, 2006 at 1:54 am
I have attempt to add this to my WP site in everyway that I know how and failed. Is there anything that is a specific step by step walkthrough on installation?
Thanks!
October 29th, 2006 at 8:33 pm
[…] «schick» aussehen soll) http://orderedlist.com/articles/wordpress-administration-design-tiger/ permalink | trackback uri| […]
October 30th, 2006 at 9:14 pm
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
November 3rd, 2006 at 1:07 pm
I couldn’t find Your e-mail so I’ll write it here.
and it’s not only title – when you click on it you may see full post.
I found that when useing this plugin – I wrote a post which supose to be published in the future it’s avilable in LIve Archive
November 5th, 2006 at 9:23 pm
[…] New Archives Page By Flexo on Sunday, November 5th, 2006 at 2:22 pm, filed under Consumerism Commentary I’m working on a new page for the Consumerism Commentary archives to make living in the past (or just browsing old entries) easier. It’s powered by JavaScript and the Super Archives plugin for WordPress. […]
November 8th, 2006 at 11:03 am
Is there anyone way to show private posts in super archive? So they’re only visible by you?
November 19th, 2006 at 1:24 pm
[…] SuperArchives […]
November 23rd, 2006 at 1:05 am
[…] Super Archive – 实现动态存档,最好的存档插件 […]
November 29th, 2006 at 6:37 am
[…] Super Archive – 实现动态存档,最好的存档插件 […]
December 10th, 2006 at 11:59 pm
[…] SuperArchives adnie wywietla archiwum postw. […]
December 12th, 2006 at 5:27 am
Even I have the same issue as Henrik. Permissions set correctly – in fact version 1.2 worked a treat – the latest one keeps on erroring with “Could not open cache file for years”. Any help would be greatly appreciated.
December 29th, 2006 at 3:46 am
Love this plug-in. I was wondering how much work it would take to have it dig down further to the days. We get multiple posts a day, and I can see each month winding up with anywhere from 100-500 posts. Would it be possible to do something like:
year -> month -> list of day -> posts of day
January 3rd, 2007 at 1:44 pm
[…] Special thanks to Alvin who kindly pointed out to me that my archives weren’t displaying in either Firefox or IE on a PC. I was using the Super Archives plugin. I first disabled all the CSS specific to the styling on that page. Didn’t help, so it was something in the plugin code itself, although it’s strange because the plugin author’s archive page worked on the PC browsers I tried. […]
January 5th, 2007 at 3:22 pm
Hi
I’m trying to get your great plugin working but none of the sexy formatting is coming through – check out http://www.connectedinternet.co.uk/manage/. I added to my page tempate – what am i donig wrong?
Thanks
EB
January 7th, 2007 at 10:03 pm
Thanks for the plugin8 Working great.
January 8th, 2007 at 7:37 am
I tried to get this to work, following multiple site’s directions but in the end I activate it and I get a blank. No errors, nothing. I’m running Wordpress 2.04. and I put the cache directory in wp-content with permissions set to 755. I really don’t know why it’s not working.
My archive page consists of this:
Thanks for your help.
January 10th, 2007 at 8:44 am
Is there anything to hide the unwanted comments?
January 27th, 2007 at 1:07 am
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
January 27th, 2007 at 1:07 am
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
January 30th, 2007 at 1:37 pm
[…] Super Archive – Implements a dynamic archive, the best archives system i know. […]
February 13th, 2007 at 1:11 am
[…] Super Archive – Arşivinizle bir bütün olarak çalışır ve arşivinizi dinamik hale getirir. […]
February 13th, 2007 at 11:12 pm
[…] Super Archive – Arşivinizle bir bütün olarak çalışır ve arşivinizi dinamik hale getirir. […]
February 17th, 2007 at 2:17 pm
For people that are having the error
Warning: mkdir(/home/.jerrie/hubs/artifacting.com/blog/wp-content/teb-super-archive-cache/cache-files/): No such file or directory in /home/.jerrie/hubs/artifacting.com/blog/wp-content/plugins/teb-super-archive/teb-super-archive.php on line 195
I had this problem also, and used much of my google-fu, however the fix is incredibly easy and horribly stupid.
1. Open up wp-setting.php in the root folder.
2. Scroll to the absolute bottom of the file.
3. Backspace until you get next to the ?>
4. Save and reload
Apparently the whitespace at the end of the file is what causes this error.
February 24th, 2007 at 4:32 pm
[…] Super Archive – 实现动态存档,最好的存档插件 […]
March 18th, 2007 at 8:13 pm
[…] You may also notice the sidebar has changed slightly. A few weeks back I noticed that the Archives section had grown rather large and seemed to obscure the reader from the actual content. So I installed a few archive page plugins and none of them were very intuitive. Then I tried Super Archives. This plugin was neat but was a nightmare to setup, so I changed to Extended Live Archives. The concept is that the archives is a dynamic CSS based AJAX archive component. The default look was exactly the same as the Super Archives, but I found some people had styled them to be very attractive. I tried my hardest to do this alone, but in the end, I ended up using someone else’s CSS as a basis that accomplished the layout I wanted. I would have really loved it if the author had styled it this way from the beginning. Then I modified it to remove the annoyances and fixed the colors. So from now on, all archives can be accessed through the archival page. […]
March 23rd, 2007 at 8:46 pm
[…] Super Archive – 实现动态存档,最好的存档插件 […]
March 24th, 2007 at 7:19 pm
How do I remove the teb-super-archive-cache folder in my wp-content? It doesn’t allow me to delete it at all, saying as I have no permissions and when I try to change them, it does not allow me, saying this operation is not permitted.
Can you help?
March 25th, 2007 at 9:06 am
I’m sorry I cannot help, the plugin creates the archive folders with the permissions of the parent folder, so it sounds like a permission problem at your host.
April 11th, 2007 at 6:10 am
[…] Super Archive – 实现动态存档,最好的存档插件 […]
April 13th, 2007 at 6:44 am
[…] Super Archive – 实现动态存档,最好的存档插件 […]
April 21st, 2007 at 4:24 am
[…] Super Archive – 实现动态存档,最好的存档插件 […]
May 4th, 2007 at 2:21 am
[…] The Engineered Boulderer » Blog Archive » Super Archives Plugin for WordPress (tags: wordpress plugin plugins blog archive archives tools ajax) […]
May 11th, 2007 at 2:39 pm
[…] 25. Super Archive – One of the best archives system. […]
May 11th, 2007 at 8:53 pm
[…] 安装一些插件来优化你的博客 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、Validate your feeds. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
May 11th, 2007 at 10:01 pm
[…] 25. Super Archive – Uno de los mejores sistemas de archivos. […]
May 13th, 2007 at 12:57 am
[…] 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、检查你Feed的语法. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
May 14th, 2007 at 3:19 am
[…] 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、检查你Feed的语法. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
May 14th, 2007 at 12:02 pm
[…] 25. Super Archive – Uno de los mejores sistemas de archivos. […]
May 14th, 2007 at 4:13 pm
[…] 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、检查你Feed的语法. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
May 16th, 2007 at 12:39 am
[…] 25. Super Archive – Uno de los mejores sistemas de archivos […]
May 16th, 2007 at 7:24 pm
[…] 25. Super Archive – Uno dei migliori sistemi di archiviazione. […]
May 19th, 2007 at 7:43 pm
[…] 安装一些插件来优化你的博客 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、检查你feeds的语法. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
May 20th, 2007 at 7:56 pm
[…] Les plate-formes de blogs tels que Wordpress proposent des tags et des plugins à installer (SRG Clean Archives, Super Archives Plugin) pour construire une page Archives complète: liste des titres des articles (d’où l’importance de les soigner) avec mois, jour de publication et nombre de commentaires, catégories, nuages de tags, etc. Il ne faut pas hésiter à fabriquer cette page avec le plus d’informations pour une consultation rapide (scan) et exhaustive de tous les articles. Inspirez-vous des pages Archives FredCavazza.net, SimpleEntrepreneur.com et LukeW.com par exemple, mixez tout ça et construisez votre table de matières, votre index de mots-clés et de catégories. En bref, tout ce qui fait entre autres l’utilisabilité du bon vieux livre. […]
May 25th, 2007 at 5:23 pm
[…] Super Archive – Un des meilleurs systèmes d’archivage. […]
June 4th, 2007 at 2:37 am
[…] 19、Akismet – 用来清除垃圾评论 20、Optimal Title – 用来优化title,提高搜索引擎评价 21、Ultimate Tag Warrior – 最好的标签系统 22、Google Sitemap Generator – 可以自动生成google sitemap 23、Show Top Commentators – 通过链接最活跃评论者的网站,鼓励反馈和评论 24、Related Posts – 这个插件可以找到其他博客与这篇日志相关的文章,这将使你的读者阅读到更多的内容,停留更长的时间。 25、Super Archive – 最好的归档系统之一 26、WP-Cache – 它是非常高效的caching系统,使你的网站更快 27、WP-ContactForm – 这个插件使读者方便的给你发电子邮件,并有回避spam的功能 28、Popularity Contest – 实现热文排行 29、Adsense Deluxe – 在博客中方便的放置Adsense广告 30、Sociable – 帮你在Digg, del.icio.us,reddit等社交书签类网站中传播你的内容 31、Feedburner Feed Replacement – 把你所有的的feed traffic 提交给Feedburner,并告诉你准确的订阅数,这个插件能把任何已有的的订阅者转化为FeedBurner类型 32、专门设计一个独特的博客标志,你的博客是你形象的代表和象征 33、给每个日志加照片或图片 34、使用标签 35、接受友情链接 36、发布全文feed而不是概要feed 37、考虑一个新闻内容,关于你博客的故事,记住新闻撰稿人时刻对独特的内容感兴趣,如果你有一个独特的故事,将得到有一些很好的报道。 38、坚持不懈是关键,坚持6个月,然后你将从自己的辛勤工作中得到回报 39、向知名网站提交独家内容 40、发布新闻稿,花一定时间写一篇吸引眼球并有报道价值的文章,发给知名记者和博客,或者向大型出版社推荐。 41、把你的文章转换为pdscasts 42、利用powerpoint把你的文章转化成幻灯视频,提交给流行的视频网站 43、提交给blog carnivals 44、参与各大著名的web2.0网站,并提交博客 45、把你的文章转换成可下载的电子书 46、参加Blogburst 47、把文章提交给EzineArticles, GoArticles, iSnare,American Chronicle等知名文章目录网站 48、和其他博客一起互相发表介绍性的日志 49、参与关于一个项目的集体写作 50、在Create a Squidoo lens上创建一个反向链接,这会帮你在特定的领域内树立起业界专家的形象。 51、面谈业界专家。 这是一个产生原创内容的最好方法。 52、除了 RSS 之外提供一个电子邮件订阅渠道。邮件订阅将会拉近你和读者的关系,并挽留那些对RSS技术不适应的访客。 53、向访客询问网站改进建议,因为他们是最终使用者。 54、建立一个专门的404page 55、在Technorati上注册你的博客 56、允许automatic trackback and ping等功能 57、如果有人在他们的博客上介绍你的网站,在日志下发表感谢的评论,并给他们发送感谢信。你可以利用Google Alerts, Technorati, and Blogpulse等方法监控任何提及你博客的事。 58、与相关博客建立在线和离线的联系。 59、利用StumbleUpon Ads建立你的博客读者圈 60、亲自写作 61、把网站翻译成多种语言,这是一个好战略,不过使用的人还不多 62、你的博客用ReviewMe了吗 63、经常看别人的博客 64、使用Google Analytics. 65、检查你Feed的语法. 66、在Feedster上提交你的博客 67、与你的读者互动。 博客是一个双向沟通工具。 最成功的博客与他们的读者互动。 他们答案读者电子邮件和意见而且定期询问读者建议。 68、写你喜欢的东西,做你不喜欢的工作你不会成功。卡内基曾经说, “人很少地成功除非他们做他们喜欢做的事。” 69、叁加博客会议。 70、邀请你的读者提交文章 […]
June 4th, 2007 at 6:51 am
Fatal error: Maximum execution time of 30 seconds exceeded in /Volumes/Macintosh_HD1/Web-Sites/Jonas-Web/wp-content/plugins/textile-2/class/classTextile.php on line 511