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 fi