Skip past navigation, straight to the content

Post Levels 1.0

Version 1.0 of the Post Levels plugin has been released. This is a release for WordPress 2.0, and is not compatible with earlier versions of WordPress.

Download

Post Levels 1.0

Installation Instructions

  1. Save the file post-levels.php in your wp-content/plugins/ directory
  2. Activate the plugin within WordPress in your Plugins section

See the WordPress documentation if you’re having issues installing the plugin.

Upgrade Instructions

If you are upgrading from a previous version of WordPress, you should follow these steps:

  1. Deactivate the Post Levels plugin
  2. Upgrade your WordPress installation to 2.0 (this exercise is left to the reader)
  3. Download post-levels.php, replacing the previous version
  4. Activate the plugin
  5. Click on the new Post Levels Configuration tab in the Plugins admin area:

    The WordPress plugin administrative area, with a menu tab that says 'Post Levels Configuration'

  6. Scroll to the bottom of the page, and check the box labeled Copy user information …, then click Migrate User Levels

    Post Levels administrative UI with a button that says 'Migrate User Levels'

  7. Now go to the Users section in your WordPress admin. Click on the a new User Levels section.

    The WordPress users administrative area, with a menu tab that says 'User Levels''

  8. Confirm that all your user levels are appropriate
  9. You can now go to the Authors & Users section in order to change user permissions as necessary. I recommend changing all non-posting users to “Subscriber”

New Features

Version 1.0 has many frequently-requested features, including:

  • Private posts over RSS: By adding http_auth=yes to the query string of any WordPress URL, you can now use HTTP authentication to get private posts. Since most RSS readers support HTTP authentication, you can attach this query string to your feed URL and see private posts. The amount of data shown in the post is user-configurable: You can show just the title, excerpt, or give the full content.
  • Independent User Level Control: The previous version of Post Levels used WordPress’ built-in user level property. This was a problem for many people because giving a user access to private posts also gave them administrative capabilities. This version assigns levels to users that are completely independent from the WordPress administrative functions.
  • New Adminstrative UI for controlling plugin options: Control options such as the default post level, user level, etc

163 Comments

  1. Drama Queen

    Thanks for the update - this was one plugin I surely would have missed with WordPress 2.0 - I’ll report back with my results :)

    Posted Dec 27, 2005 at 11:26am | Permalink
  2. Drama Queen

    One other question - usage is still the same as the previous plugin, correct?

    So, if I want to publish a private entry, I list it as “Private” and add “post_level” and to the custom field?

    Posted Dec 27, 2005 at 11:31am | Permalink
  3. Steve

    @Drama Queen: Correct — except now there’s also a drop down menu in the editing window that you can also use to set the post level.

    Posted Dec 27, 2005 at 11:32am | Permalink
  4. Daisyhead

    I’m sorry to leave this question on this entry, but comments are closed on the entry I wanted to post it on. I have not upgraded to V2.0 yet as I don’t have the time and won’t any time soon. In the meantime, I implemented V0.2.1 but I have a question regarding this particular version.

    Is there a way in V0.2.1 to modify something, ANYTHING, so that registered members cannot edit posts or ANYTHING at all on my blog? Even if it means tweaking hard code, I don’t mind. This is a really great plugin, but I do not like giving access to my blog to just anyone.

    Thank you!

    Posted Dec 27, 2005 at 8:57pm | Permalink
  5. Rocky

    This is the error I get when I activating the plugin. Do you know what cause this?

    Warning: Cannot modify header information - headers already sent by (output started at /home/rocky/public_html/wp-content/plugins/post-levels.php:772) in /home/rocky/public_html/wp-content/plugins/post-levels.php on line 103

    Warning: Cannot modify header information - headers already sent by (output started at /home/rocky/public_html/wp-content/plugins/post-levels.php:772) in /home/rocky/public_html/wp-content/plugins/post-levels.php on line 104

    Posted Dec 27, 2005 at 9:07pm | Permalink
  6. Daisyhead

    Rocky, make sure you have no whitespace at the beginning or end of the file. See if that helps.

    Posted Dec 27, 2005 at 9:18pm | Permalink
  7. Rocky

    Daisy, you are correct there are two whitespaces in the end of the file which causes the problem error.
    Thanks

    Posted Dec 28, 2005 at 6:45am | Permalink
  8. Steve

    Thanks for the update! It’s working beautifully!

    Posted Dec 28, 2005 at 7:31am | Permalink
  9. Daisyhead: WP 1.5 didn’t make this very easy to do, but it is of course possible if you’re willing to update the code.

    I ended up editing the following files:

    * wp-admin/menu.php (change the second parameter for all the menus to 10)
    * wp-admin/profile.php (check for user_level = 10 before showing a user’s level)
    * wp-admin/user-edit.php (change it so only user_level = 10 can edit [look for if ($edituser->user_level >= $user_level)]

    That worked reasonably for me, but is probably not foolproof.

    Posted Dec 28, 2005 at 7:44am | Permalink
  10. Joe

    Does this version fix the problem with the posts not showing up in Catagores/Archives for authorized users?

    Posted Dec 28, 2005 at 9:48am | Permalink
  11. McShelby

    Great you’ve provided a version for WP2, but why not using the new role and capability model instead of some selfdefined userlevels?

    Posted Dec 28, 2005 at 1:14pm | Permalink
  12. Joe: No, that issue is not fixed in this version. It’s an outstanding bug in WordPress. The fix isn’t very tough, I may code it myself — but since I don’t have submit privileges, I can’t make the change in WP myself.

    McShelby: I debated trying a role-based implementation, but decided against it for two selfish reasons: 1) My blog is already set up to use integer-based levels (and it works well for me) and 2) that kind of implementation is a little bit trickier and will require more code.

    Feel free to extend the plugin to do so if that fits your needs.

    Posted Dec 28, 2005 at 1:30pm | Permalink
  13. Joe

    Cool. If you can just post a hack seperately from the normal plug-in (just the diff file or instructions on what to change), then i’d be a happy camper.

    Posted Dec 28, 2005 at 7:53pm | Permalink
  14. Joe

    OH yeah. I mean hack because you will have to alter the wordpress files

    Posted Dec 28, 2005 at 7:54pm | Permalink
  15. Daisyhead

    Thanks so much Fil! Your code tweaking worked like a charm. I am upgrading this weekend, but wanted to put this into place now. Thanks again for such a great plugin!

    Posted Dec 29, 2005 at 5:25pm | Permalink
  16. thesuperstar

    can you hide it from non registered, but still show something in the title like , this “this post is only for registerd users” for new people / nonregistered?

    Posted Dec 29, 2005 at 9:23pm | Permalink
  17. Tony

    Could I use this plugin to leave my blog public, but my extra wordpress ‘pages’ viewable by registered users only?

    Posted Dec 30, 2005 at 8:23am | Permalink
  18. Anonymous

    Is it possible to change the code so that by default all posts get post_level = 1 ?

    Posted Dec 30, 2005 at 1:32pm | Permalink
  19. Daisyhead

    I’m a bit confused. I just upgrade my WP to 2.0. To me, I see no difference. I have the plugin set so that those with a user level of 1 or above can see the private entries, but anyone with a user level of 1 or above can still create posts on my blog. I don’t see any way around this, other than to tweak the files you mentioned above Fil.

    Am I missing something on how this version of the plugin works with the new version of WP?

    Posted Dec 30, 2005 at 8:07pm | Permalink
  20. stian

    Would you consider the possibility to set a default post level for posts to a category? This way I could have a category called private, you get the picture I guess (great for postie posts!).

    Maybe for a future version?

    Thanks for a great plugin, works on http://www.barmen.nu with wp 2.0 no problems at all!

    Posted Jan 3, 2006 at 4:03pm | Permalink
  21. Alex

    Same Question from me like Tony: Is it possible to use the plugin also for the static pages? I’d like to use it for various Gallerypages which should only be accessable to my friends.

    Posted Jan 4, 2006 at 8:08am | Permalink
  22. Alex

    Nobody reading the comments? Guys, please, give me at least a headup, I have no clue on how to change it to use it with static pages.

    Posted Jan 6, 2006 at 11:47am | Permalink
  23. igobypaul

    I think there is a bug in this plugin. If I set ‘default post level’ to cirtain level, new posts have status Published and no post level is set as a default. So when I write a post I have to remember to set post level manualy.

    Posted Jan 11, 2006 at 5:34am | Permalink
  24. Quartz

    Same question as Tony and Alex ! I would also be very interested to use the plugin for my static pages !

    Posted Jan 11, 2006 at 1:02pm | Permalink
  25. Bryan

    This is a great extension for Wordpress.

    Can you post a fix to the Wordpress files that corrects the problem of Categories which contain only private posts not appearing for logged in users?

    Many thanks.

    Posted Jan 12, 2006 at 1:16am | Permalink
  26. Deb

    Thank you for this plug-in - I would not have upgraded to WP2.0 if I hadn’t known that Post Levels would work. But it works beautifully - I can do exactly what I want with it. Great :-)

    Posted Jan 14, 2006 at 8:59am | Permalink
  27. Kaitlin

    I have this plugin installed, but my “private” posts can still be seen by accessing blogurl/wp-rss2.php How can I prevent this?!

    Posted Jan 25, 2006 at 4:55pm | Permalink
  28. John

    Hello & thanks for this great plugin. I just found a small bug:
    The feed links are not rewritten correctly, I get
    /?feed=rss2?http_auth=yes

    There must be something wrong with this function, probably because when it is called, $output is still empty?

    function postlevels_feed_link($output)
    {
    $delim = (strpos(’?', $output) === false) ? ‘?’ : ‘&’;
    return $output . $delim . ‘http_auth=yes’;
    }

    I’m using wp 2.0.

    Any ideas how to fix this?

    Posted Jan 28, 2006 at 5:11am | Permalink
  29. claire Cannon

    thanks - this works great!

    Posted Feb 2, 2006 at 5:01pm | Permalink
  30. Echo

    Okay, so there is a problem with my user levels plugin and no one so far has been able to help me. People are finding the links to my protected posts in their referrer logs, clicking the links, and reading my protected posts. They don’t even have to be logged in, which is just absolutely crazy. You can’t see the posts unless you are on that user level, but if you have a link, you’re in.

    Also, someone told me that they clicked a link to a protected post once they logged in and were at the dashboard. She was able to read the protected post as well.

    I switched those entries to drafts, but guess what? THEY CAN STILL BE SEEN BY CLICKING THE URL. Even if the person is not logged in.

    HELP!

    Posted Feb 3, 2006 at 12:51pm | Permalink
  31. @Echo: I’ve never seen this happen (I use the plug in on my site and the hidden posts are hidden even if you know the URL). Are you sure you’re not viewing the site somewhere where you’re logged in? Have you set the post status to private? Is it this plugin, or some one elses?

    @John: Looks like a bug in my code. I’ll fix it in the next release.

    @Kaitlin: Make sure you’re not logged in when viewing your RSS — try it from a different computer even — you should not see the private posts.

    Posted Feb 3, 2006 at 12:56pm | Permalink
  32. @Daisyhead: Change the roles of your users to “Subscribers” — that should do what you’re looking for.

    Posted Feb 3, 2006 at 12:57pm | Permalink
  33. Echo

    I’m sure it’s this one. Here is a entry marked ‘draft’ whose level is set to 3 or 4: http://www.echoleigh.com/blog/?p=1215

    I can see that after logging out, clearing cookies, and clearing cache.

    Posted Feb 3, 2006 at 1:26pm | Permalink
  34. @Echo: Post Levels only works if you mark the entry as “Private” — the fact that you can see drafts (regardless of post level) is an issue in WordPress.

    Posted Feb 3, 2006 at 1:29pm | Permalink
  35. Echo

    The others were marked as private, though. Here’s one marked as private and set to level three: http://www.echoleigh.com/blog/?p=1218

    Posted Feb 3, 2006 at 1:49pm | Permalink
  36. Echo: I have no idea why you’re seeing that behavior since I can’t reproduce it on any of my WP test installations.

    Are you using any other plugins? It’s hard for me to tell what’s going wrong here …

    Posted Feb 3, 2006 at 6:02pm | Permalink
  37. Echo

    It’s adhesive that’s causing the problem! I deactivated it and tried to view the post again and this time it is private! I don’t use Adhesive much, so I’m just going to uninstall.

    Posted Feb 3, 2006 at 7:16pm | Permalink
  38. eyetag

    hi! since i installed pp 1.0 my feeds are not accessible without logging in (although im the blogs admin, recognised as such by wp by cookie)… rss should be public, only posts with a certain user level should not be included. thanks!

    Posted Feb 5, 2006 at 3:15am | Permalink
  39. Steve

    @Bob: One of the options let’s you control whether the RSS feed links get re-written — that should fix your problem.

    Fil: You may want to change the default here …

    Posted Feb 6, 2006 at 11:04am | Permalink
  40. Olli

    I have little suggestion, something that would help me out somewhat:
    It would be great if you could assign a name or an alias to your postlevels, so that it becomes more clear for the admin who’s who :) Great plugin, thanks

    Posted Feb 6, 2006 at 7:04pm | Permalink
  41. Mick

    Great Plugin! Is there any way to get it to control the wordpress static pages as well?

    Posted Feb 8, 2006 at 6:08am | Permalink
  42. franky

    I am a little confused about how to automately assign a user level. Now my register user (author) is no level at beginning. I have to go to Users->User level to manually assign a level to them. Do I miss sth? thanks.

    Posted Feb 10, 2006 at 8:09pm | Permalink
  43. Gina

    Works perfectly. Thank you!

    Posted Feb 11, 2006 at 7:24am | Permalink
  44. Rich Kolker

    When I go to the “User levels” tab to set the user levels of various users, all the rows are blank. Am I missing something?

    Posted Feb 13, 2006 at 9:42am | Permalink
  45. eyetag

    still in trouble with my rss-feeds - they only work after logging in…
    anyone knows about that? please, havin functionable rss is crucial for a good blog! thanks!

    Posted Feb 14, 2006 at 10:44pm | Permalink
  46. eyetag

    me again,
    looking for the right syntax to append something like:
     exclusive
    in the private post prefix/postfix option.
    in this case color won´t be displayed by the output, when i try to append an image by tag, the php gets messed up…
    how could this work?

    Posted Feb 14, 2006 at 11:32pm | Permalink
  47. joh

    lovely
    thanks
    :)
    joh
    http://blog.truthbeauty.info/

    Posted Feb 16, 2006 at 7:37pm | Permalink
  48. Christopher

    Like Rocky a while back; I’m getting ‘cannot modify headers…103…104′ messages. I checked for spaces at the beginning and end, but the messages still remain at the top of my blog when I’m logged in. Do you have any other insights about this?

    Posted Feb 17, 2006 at 1:47pm | Permalink
  49. joh

    one problem :
    i am using the minblog plugin for an asides like feature but for some reason the post levels plug in assigns the Private Post Title Postfix to all the miniblog entries even though these posts are not in fact private and there is actually no way to save the miniblog posts as private…

    i hope miniblog and post levels plug ins are not just simply incompatible because i’d really like to use both :|

    Posted Feb 17, 2006 at 5:34pm | Permalink
  50. Shig Unmentionable

    Hey, I absolutely love this plugin. It means the difference between continuing to use LiveJournal, and switching to my own WordPress blog.

    One question, though: When I try to use html tags in the prefix, it gives me the full post title without any of the html code, followed by an extraneous ‘ “>’ , then the full title with html code properly applied. When I try it in the postfix, it does the same thing but with only the postfix sans code, followed by the extraneous characters and the correct post title.

    Is this a bug, or am I doing something wrong? Or are html codes just not fully supported in the prefix/postfix?

    Thanks again, it really is a great plugin.

    Posted Feb 19, 2006 at 5:20pm | Permalink
  51. Preston

    I’m using the Post Levels 1.0 with WordPress 2.0.1, and I’m a little confused. My understanding is that if a post is marked “private” only I can see it - if a post is published and marked with a post level, only users with access to that post level can see it (in effect, it’s marked “friends only” or “subscribers only” and requires a login). Is that correct? When I do exactly that (assign a post level to a post and then hit “publish”) it appears when I’m logged in but not when I’m logged out.

    Posted Feb 20, 2006 at 6:31am | Permalink
  52. Anonymous

    i narrowed down the problem of rss login request (see aboe) to firefox, in IE it works normal

    Posted Feb 21, 2006 at 4:11am | Permalink
  53. eyetag

    hi! anyone still reading?
    in archive template (next post link) will append the private-marking even though next one is not private?
    do you know why?

    Posted Feb 21, 2006 at 4:13am | Permalink
  54. eyetag

    my mistake about the rss, works fine, sorry, too many things at the same time;)

    Posted Feb 21, 2006 at 6:25am | Permalink
  55. yohyoh

    so is there a way to make posts in a certain category default to a specified userlevel? that would be cool!

    Posted Mar 15, 2006 at 8:21am | Permalink
  56. Tracy

    any idea how/when it will be released with a version that lets logged in readers see locked posts in archive list???

    Posted Mar 27, 2006 at 12:34pm | Permalink
  57. InfoCynic

    With the option to rewrite feed links on in WP 2.02, registered users were seeing the feed URL with ?http_auth=yes but it wouldn’t take any logins, no matter what we tried, so I had to disable the feature. Anyone else have this problem?

    Posted Apr 2, 2006 at 8:44pm | Permalink
  58. Barbara

    Hi! the plugin works, I’m testing it just now and apart some issue with the rss feed all is fine. Now, I would make all my archives private with a “1″ level. Is there a way to do this with a sql query on the db? I tried to set the post_status to ‘private’ with an update query but this hasn’t had any effect on the level. Thank you!!! Barbara

    Posted Apr 17, 2006 at 1:59pm | Permalink
  59. pielgrzym

    Hi,
    great plugin, but it doesn’t work properly - no matter how I set privilages (0-10) no registered ’subscriber’ can see the post. Only I can see it (like in usual ‘private’ post). I’m using WP 2.0.2. Is there a way to fix it? :) thanks for help :)

    Posted Apr 20, 2006 at 12:56pm | Permalink
  60. pielgrzym

    It’s me again :) I set the private level to ‘public’, it automatically reset the private level to 0 and suddenly everything started to work ok :) thanks for one of the best WP plugs :)

    Posted Apr 20, 2006 at 1:17pm | Permalink
  61. chris

    Hi, thanks for the nice plugin!

    There is indeed an error in the code that rewrites links to feeds to support HTTP Authentication.
    Line 351 of post-levels.php is
    $delim = (strpos(’?', $output) === false) ? ‘?’ : ‘&’;

    but in fact it should be
    $delim = (strpos($output,’?') === false) ? ‘?’ : ‘&’;

    i.e., the position of the strpos arguments has to be swapped.

    thanks again!
    chris

    Posted May 2, 2006 at 7:18am | Permalink
  62. Olli

    Hey man,

    As somebody else posted before there is an issue with displaying the categories which contain only ‘private’ posts, they simply won’t display in the sidebar, even if that user is logged in (or even if you’re the admin). Is there a workaround?

    Posted May 8, 2006 at 3:44pm | Permalink
  63. WordDiva

    I LOVE this plugin!! But I have one small problem. I have WP 2.0.1 and Post Levels works great in IE, but I primarily use Firefox. Whenever I try to view my blog, edit an entry, or login to dashboard, I get a pop-up login window. I can hit cancel three times and the blog will appear as normal. Is there a way I can get rid of that login box altogether? Here’s my blog: http://www.tiastyle.net/personal/

    Any advice/guidance would be appreciated. Thanks!

    Posted May 13, 2006 at 5:16pm | Permalink
  64. moonbatty.com

    A nice feature would be to have the ability to display the number of posts that are above a user level. Ie: “if the logged in user is level 0, count the number of posts that are in all levels above 0, and display a note that says ‘there are 102 posts above your user level. Want to see them? Log in!”‘

    Posted May 16, 2006 at 1:06pm | Permalink
  65. Anonymous

    is there anything still happening with this plugin? any new version thought of? although it is one of the most usefull plugs around private blogging, it still has several flaws. all i can see on this page are unanswered questions…

    Posted Jun 4, 2006 at 1:22am | Permalink
  66. Jacob

    Well the plugin seems to be working great, for the most part. Using the role manager plugin my friend’s new site can keep certain posts hidden. But I tried to subscribe to the RSS feed and it doesn’t accept my password. I tried it on Feeddemon and NetNewsWire. Removing the authentication portion of course works fine and no hidden posts are seen. Am I doing something wrong? I know I’m entering the correct username/password. Is this a problem with wordpress or the plugin? I’m not sure. Thanks.

    Posted Jun 10, 2006 at 7:26pm | Permalink
  67. Jacob

    I opened up a forum post on wordpress.org… anybody else experienceing this? I tried logging in with Firefox and still couldn’t get it to correctly authenticate my username/password.
    http://wordpress.org/support/topic/75644

    Posted Jun 11, 2006 at 10:17am | Permalink
  68. Jacob

    A little update, I found out the problem is my host running PHP in CGI mode. the two credential variables are never sent. Has anyone come up with a solution in this predicament? I did get my credentials through with a little script modification, but it just gives me a 404 error now.

    Thanks!

    Posted Jun 15, 2006 at 11:21am | Permalink
  69. Dave

    I noticed that even when I’m logged in (with admin level) private posts are omitted from the Category listings and that if all posts in a certain category are private it doesn’t even list the category.

    Is that correct or have I got something incorrectly configured? If that is the way it should work, can I suggest that for a next release perhaps you could have it so that this remains so for the non-registered readers but that for logged in users with the appropriate user levels it does list those posts and categories?

    Beyond that though - well done. I’m using it in combination with Owen’s Role Manager, since that combo allows me to ‘privatize’ both my Flickr photos and individual posts without having to give people post abilities.

    Posted Jun 15, 2006 at 4:14pm | Permalink
  70. Marcos

    Well, comment 61 definitely is a necessary fix to make the authenticated RSS urls correct.

    What I find interesting is the regular rss feeds show private posts in Safari if I was logged in already anyway viewing the web page. Safari must use the site’s login info when reading the rss feed. I tested the regular feeds in curl and NetNewswire and without the auth=yes part and logging in, the private posts don’t show up, so this seems Safari-specific.

    Still, an interesting thing to note about Safari’s RSS ability. It seems to persist in the cache for a while too. I logged out, went back to the default rss url and my private posts were still there. I had to empty cache, quit and run Safari again before it reloaded the URL without authentication and the private post was gone.

    Posted Jun 20, 2006 at 6:23am | Permalink
  71. uisjo uvdsybzpg

    jwqnidc ilcgwuehk ocptj czjapwsgr btkhvuicm ycxjvn ksmqhv

    Posted Jun 20, 2006 at 7:39am | Permalink
  72. Ananda

    Awesome plugin. Does exactly what I needed it to do….

    Posted Jun 27, 2006 at 9:42pm | Permalink
  73. Matt

    For the problem mentioned earlier wtih categories not displaying properly (Category does not display if all posts in category are marked private.)

    One workaround is too add an argument ‘hide_empty=0′ to the wp_list_cats function call. This will display all categories.
    Usually the call is made in your template - possibly in sidebar.php.
    If you use widgets then this can be found in plug-ins/widgets/widgets.php in function widget_categories:
    Wherever the function call is made change
    wp_list_cats(”sort_column=name&optioncount=$c&hierarchical=$h”);
    to
    wp_list_cats(”sort_column=name&optioncount=$c&hierarchical=$h&hide_empty=0″);

    For more read: http://codex.wordpress.org/Template_Tags/wp_list_cats

    Posted Jun 29, 2006 at 5:40am | Permalink
  74. Matt

    Example above is for the widgets.php file.
    In other template files the call would look like
    wp_list_cats(’sort_column=name&optioncount=1&hierarchical=0&hide_empty=0′);
    (ie no variables($c, $h) - for people not familiar with php)

    Posted Jun 29, 2006 at 5:45am | Permalink
  75. Jacob

    I updated my post in the Wordpress forums…

    I’m not really any closer to solving my problem. But, and I’m not sure this has nothing to do with my htaccess hacking, while fiddling with the urls I randomly got to see the post if I was already logged in. Though I’ve only witnessed this in Firefox. I’m kinda surprised that no one has seen this type of problem before. :( Can anybody help?

    Posted Jun 29, 2006 at 11:54am | Permalink
  76. Ben

    Great plugin…. thanks a lot. But please please please make it work with static pages too!!! Thanks, Ben

    Posted Jun 30, 2006 at 1:08pm | Permalink
  77. Nic

    This looks like it’ll mostly do the trick for me, thanks for your work.

    However, I wish I knew php to modify it. Perhaps you’d consider adding this in as an option?

    I would like to display the excerpt, or the bit of text before the More, to everyone, even for those private posts (to incite people to register). Short of that, a default bit of text, showing the tile and “you must be a subscriber to see this content”.

    Cheers

    Posted Jul 5, 2006 at 3:03am | Permalink
  78. rich

    Hi
    The plugin seems to me exactly that what I need.
    But when I want to download it, there only comes an website with advertisement.
    Bye

    Posted Jul 20, 2006 at 12:12pm | Permalink
  79. shmrete

    When I installed the plugin and tried to activate it, it says this:

    Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/kevinp/public_html/notjustanotherday/wp-content/plugins/post-levels.php on line 7

    Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/kevinp/public_html/notjustanotherday/wp-content/plugins/post-levels.php on line 29

    Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/kevinp/public_html/notjustanotherday/wp-content/plugins/post-levels.php on line 30

    Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/kevinp/public_html/notjustanotherday/wp-content/plugins/post-levels.php on line 31

    Parse error: syntax error, unexpected T_IF in /home/kevinp/public_html/notjustanotherday/wp-content/plugins/post-levels.php on line 34

    Any idea how I can fix this?
    Thanks!

    Posted Aug 2, 2006 at 6:01am | Permalink
  80. Jenny

    Hey, thanks so much for making this plugin! It’s just what I was looking for!

    Posted Aug 3, 2006 at 2:01am | Permalink
  81. Joefish

    This plugin is fantastic. I absolutely love it.

    Posted Aug 5, 2006 at 11:48am | Permalink
  82. Carrie

    All of my private posts are showing up in the feeds even if you arent logged in or logged in as someone who shouldnt have access to them. Appending auth=no to the rss2 feed works… but that doesnt work for the atom and rss feed. I’m viewing the feeeds in firefox. Any ideas?

    Posted Aug 7, 2006 at 3:22am | Permalink
  83. Helgi

    Great Great Plugin.

    So useful, so needed, so everything. Thanks as lot, seriously the best plugin that I have for WP!

    Like others here it would be nice to have a static page for post levels but just that, nice. On the other hand I am using Mobile Blog with pictures and that always goes to the Mobile category and I would like that to be privite always; and as I am doing this through my phone I cant set the Post Level. Is there any soltion to this, either that certain categories are always Private or the text for the post could include some short cut:

    i.e.”PostLevel:5″ at the start of the moblog could trickert the post to belong to that level.

    All suggestions welcomed, and again, great work!

    Posted Aug 8, 2006 at 11:07pm | Permalink
  84. neubeedoo

    New to WP and the world of plug-ins - used this and it installed great - but I have a mod question..
    Currently, if the post-level is set to 2, any user with a post level of 2 or GREATER can see the post.
    Would it be possible to have post-level 2 (and 10-admin) postings only visible to level 2 (and 10) users - not level 3-9(or maybe some other known plug-in) meaning levels set for the post are exact(+admin) designations? - I am trying to isolate subgroups of users somehow …

    Posted Aug 20, 2006 at 12:58pm | Permalink
  85. Mike

    %5Burl%3Dhttp%3A%2F%2Fwww.mhef.org%2FMembers%2Fpereved%2Ffile.2006%2D09%2D09.2908054200%5Dhow+to+play+poker%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Fwww.zopeuk.org%2FMembers%2Fpereved%2FVideo%2DStrip%2DPoker.html%5Dvideo+strip+poker%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fboston.tie.org%2FMembers%2Fpereved%2FPoker%2DSites.html%5C%22%3Epoker+sites%3C%2Fa%3E%0D%0A%5Burl%3Dhttp%3A%2F%2Fwww.zopeuk.org%2FMembers%2Fpereved%2FLive%2DStrip%2DPoker%2DGirls.html%5Dlive+strip+poker+girls%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Fboston.tie.org%2FMembers%2Fpereved%2FLas%2DVegas%2DCasinos.html%5Dlas+vegas+casinos%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Fwww.mhef.org%2FMembers%2Fpereved%2Ffile.2006%2D09%2D09.7941042246%5Dgambling+offshore%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.zopeuk.org%2FMembers%2Fpereved%2FLive%2DStrip%2DPoker%2DGirls.html%5C%22%3Elive+strip+poker+girls%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fboston.tie.org%2FMembers%2Fpereved%2FLas%2DVegas%2DCasinos.html%5C%22%3Elas+vegas+casinos%3C%2Fa%3E%0D%0A%5Burl%3Dhttp%3A%2F%2Fboston.tie.org%2FMembers%2Fpereved%2FPoker%2DSites.html%5Dpoker+sites%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.mhef.org%2FMembers%2Fpereved%2Ffile.2006%2D09%2D09.7941042246%5C%22%3Egambling+offshore%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.zopeuk.org%2FMembers%2Fpereved%2FVideo%2DStrip%2DPoker.html%5C%22%3Evideo+strip+poker%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.mhef.org%2FMembers%2Fpereved%2Ffile.2006%2D09%2D09.2908054200%5C%22%3Ehow+to+play+poker%3C%2Fa%3E%0D%0As

    Posted Sep 11, 2006 at 12:17am | Permalink
  86. Britney

    %

    Posted Sep 14, 2006 at 4:23pm | Permalink
  87. andrea

    %3Ca+href%3D%5C%22http%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2FLas%2DVegas%2DCasinos.html%5C%22%3ELas+Vegas+Casinos%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2FNo%2DDeposit%2DOnline%2DCasino.html%5C%22%3Eno+deposit+online+casino%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2FLas%2DVegas%2DCasinos.html%5DLas+Vegas+Casinos%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2FNo%2DDeposit%2DOnline%2DCasino.html%5Dno+deposit+online+casino%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2Fonline%2Dcasinos.html%5C%22%3E10+BEST+Online+Casinos%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2Fonline%2Dcasinos2.html%5C%22%3Eatlantic+city+casinos%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2Fonline%2Dcasinos.html%5D10+BEST+Online+Casinos%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.onc%2Drpc.com%2Fforums%2Frpc%2Fuploads%2Fonline%2Dcasinos2.html%5Datlantic+city+casinos%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.stemcellsociety.org%2Fanyboard9%2Fforum%2Fposts%2F44.html%5C%22%3ETurning+Stone+Casino%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.stemcellsociety.org%2Fanyboard9%2Fforum%2Fposts%2F45.html%5C%22%3ECasino+Rama%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fwww.stemcellsociety.org%2Fanyboard9%2Fforum%2Fposts%2F44.html%5DTurning+Stone+Casino%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.stemcellsociety.org%2Fanyboard9%2Fforum%2Fposts%2F45.html%5DCasino+Rama%5B%2Furl%5D%0D%0A

    Posted Sep 18, 2006 at 10:16pm | Permalink
  88. Dnnys

    %3Ca+href%3D%5C%22http%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fxanaxonline%5C%22%3EXanax+Online%2C+Buy+Xanax+Online%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fbuyxanaxonline%5C%22%3EXANAX%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fxanaxonline%5DXanax+Online%2C+Buy+Xanax+Online%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fbuyxanaxonline%5DXANAX%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fphentermine%2F%5C%22%3ECheap+Phentermine+Buy+Phentermine%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fphenterminedp%5C%22%3EPHENTERMINE+DIET+PILLS%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fphentermine%2F%5DCheap+Phentermine+Buy+Phentermine%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.taipeitimes.com%2FNews%2FMembers%2Fphenterminedp%5DPHENTERMINE+DIET+PILLS%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fsmokesigs.com%2Fmessageboard1%2Fposts%2F52138.html%5C%22%3Eonline+sports+betting%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.superiormartialarts.com%2FKarate%5FForum%2Fposts%2F1443.html%5C%22%3Efootball+betting%3C%2Fa%3E+%5Burl%3Dhttp%3A%2F%2Fsmokesigs.com%2Fmessageboard1%2Fposts%2F52138.html%5Donline+sports+betting%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.superiormartialarts.com%2FKarate%5FForum%2Fposts%2F1443.html%5Dfootball+betting%5B%2Furl%5D%0D%0A2

    Posted Sep 19, 2006 at 4:49am | Permalink
  89. Smit

    You have built a good website

    Posted Sep 27, 2006 at 10:09pm | Permalink
  90. jweaks

    I’m getting the login box like #63 above, only in FireFox. I guess it’s some sort of HTTP auth problem. Ideas?

    Posted Sep 28, 2006 at 11:52am | Permalink
  91. Jennifer

    Very good site! I like it! Thanks!N

    Posted Sep 28, 2006 at 7:27pm | Permalink
  92. Nicole

    I like it and the background and colors make it easy to read:

    Posted Oct 2, 2006 at 10:48am | Permalink
  93. Meteor

    Hello+admin%2C+nice+site+%21+Good+content%2C+eautiful+design%2C+thank+%21o

    Posted Oct 3, 2006 at 2:47pm | Permalink
  94. Smit

    The site\’\’s very professional! Keep up the good work! Oh yes, one extra comment - maybe you could add more pictures too! So, good luck to your team!

    Posted Oct 4, 2006 at 7:24am | Permalink
  95. Bill

    Your guestbook is example of middle-class guestbooks. Congratulation! I’ll show your site and guestbook to my friends.

    Posted Oct 4, 2006 at 3:04pm | Permalink
  96. Bill

    i love this site.l

    Posted Oct 7, 2006 at 3:35pm | Permalink
  97. joiz

    As mentioned by someone earlier, this plugin works great in IE but I’m also more of a Firefox user and I’m getting the popups when I’m logged in. Any way I could get rid of those? Thanks so much for this plugin by the way :)

    Posted Oct 10, 2006 at 10:03am | Permalink
  98. Academicus

    Hello, nice site and interesting design.
    my sites:
    buy laptop battery

    Posted Oct 13, 2006 at 6:41am | Permalink
  99. Achivus
    Posted Oct 15, 2006 at 9:18pm | Permalink
  100. Ronny

    %5Burl%3Dhttp%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dnokia%2Dringtone.html%5DFree+nokia+ringtone%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dringtone.html%5DFree+ringtone%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dsprint%2Dringtone.html%5DFree+sprint+ringtone%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dverizon%2Dringtone.html%5DFree+verizon+ringtone%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Ffreenewringtones.blog.espresso.repubblica.it%5DCell+phone+ringtone%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fcingularringtone.blog.espresso.repubblica.it%5DCingular+ringtone%5B%2Furl%5D%0D%0A%5Burl%3Dhttp%3A%2F%2Fdownloadfreeringtone.blog.espresso.repubblica.it%5DDownload+free+ringtone%5B%2Furl%5D+%5Burl%3Dhttp%3A%2F%2Fdownloadringtone10.blog.espresso.repubblica.it%5DDownload+ringtone%5B%2Furl%5D%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Ffreenewringtones.blog.espresso.repubblica.it%5C%22%3ECell+phone+ringtone%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fcingularringtone.blog.espresso.repubblica.it%5C%22%3ECingular+ringtone%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dsprint%2Dringtone.html%5C%22%3EFree+sprint+ringtone%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dverizon%2Dringtone.html%5C%22%3EFree+verizon+ringtone%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fdownloadfreeringtone.blog.espresso.repubblica.it%5C%22%3EDownload+free+ringtone%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fdownloadringtone10.blog.espresso.repubblica.it%5C%22%3EDownload+ringtone%3C%2Fa%3E%0D%0A%3Ca+href%3D%5C%22http%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dnokia%2Dringtone.html%5C%22%3EFree+nokia+ringtone%3C%2Fa%3E+%3Ca+href%3D%5C%22http%3A%2F%2Fwww.plan60.at%2FMembers%2Ffreeringtone%2Ffree%2Dringtone.html%5C%22%3EFree+ringtone%3C%2Fa%3E%0D%0Ar

    Posted Oct 16, 2006 at 7:15am | Permalink
  101. Elza

    Hi, all. Nice site…I really like your site ! Good job man.n

    Posted Oct 16, 2006 at 10:53pm | Permalink
  102. Anna

    Your guestbook is example of middle-class guestbooks. Congratulation! I’ll show your site and guestbook to my friends.

    Posted Oct 17, 2006 at 8:06am | Permalink
  103. Bob

    You have built a good websiteg

    Posted Oct 17, 2006 at 10:47am | Permalink
  104. Bob

    It\’s a great and valuable site!r

    Posted Oct 21, 2006 at 10:16pm | Permalink
  105. Shelby DeNIke

    I dont think this works with wordpress 2.0.4, as when i enabled it i can not see any posts in the admin section.

    Posted Oct 23, 2006 at 3:11pm | Permalink
  106. nprw jbcuxlzw

    tjzahyw fqlzycow nuqc oybfcqa wjrakv muakl moqiy

    Posted Oct 27, 2006 at 12:04am | Permalink
  107. Shelby

    Anyone else having that issue with 2.0.4? or am I not installing this correctly.

    Posted Oct 27, 2006 at 3:06am | Permalink
  108. Joon

    Thanks so very much for taking your time to create this very useful and informative site. I have learned a lot from your site. Thanks!!

    Posted Oct 27, 2006 at 11:18am | Permalink
  109. Mattew
    Posted Oct 29, 2006 at 12:56am | Permalink
  110. Anna

    The site\’\’s very professional! Keep up the good work! Oh yes, one extra comment - maybe you could add more pictures too! So, good luck to your team!

    Posted Oct 29, 2006 at 11:20am | Permalink
  111. Larry
    Posted Oct 30, 2006 at 1:03pm | Permalink
  112. Bill

    I\’m love this great website. Many thanks guyo

    Posted Oct 31, 2006 at 5:09am | Permalink
  113. Henry
    Posted Nov 1, 2006 at 10:26pm | Permalink
  114. Bob

    Cool!.. Nice work…e

    Posted Nov 2, 2006 at 6:21am | Permalink
  115. Smith

    Nice site… Cool guestbook…

    Posted Nov 3, 2006 at 4:03am | Permalink
  116. Smith

    Nice+site…+Cool+guestbook…

    Posted Nov 3, 2006 at 4:04am | Permalink
  117. Wendy
    Posted Nov 3, 2006 at 12:41pm | Permalink
  118. Bill

    Wonderful and informative web site.I used information from that site its great.l

    Posted Nov 4, 2006 at 10:27pm | Permalink
  119. Hans
    Posted Nov 6, 2006 at 5:50am | Permalink
  120. John
    Posted Nov 7, 2006 at 6:09pm | Permalink
  121. Bob

    Your+guestbook+is+example+of+middle%2Dclass+guestbooks.+Congratulation%21+I%92ll+show+your+site+and+guestbook+to+my+friends.

    Posted Nov 9, 2006 at 7:38am | Permalink
  122. Joon

    I you all love!2

    Posted Nov 9, 2006 at 10:34pm | Permalink
  123. Marilyn

    I enjoyed your page. Keep up the good work! Feel free to visit my page. It\’s cool too.2

    Posted Nov 10, 2006 at 6:46am | Permalink
  124. Svetlana

    Lucky to find you, keep on the good workk guys! Best of luck.e

    Posted Nov 10, 2006 at 6:29pm | Permalink
  125. Teddy
    Posted Nov 11, 2006 at 4:42am | Permalink
  126. Smit

    i love this site.+

    Posted Nov 11, 2006 at 6:55am | Permalink
  127. Hillari

    A fantastic site, and brilliant effort. A great piece of work.

    Posted Nov 11, 2006 at 9:59pm | Permalink
  128. Elizabeth

    This is very interesting site…H

    Posted Nov 11, 2006 at 11:09pm | Permalink
  129. Jersey

    Hi%2C+all.+Nice+site…I+really+like+your+site+%21+Good+job+man.l

    Posted Nov 12, 2006 at 6:01am | Permalink
  130. Jersey

    Cool!.. Nice work…

    Posted Nov 12, 2006 at 9:13pm | Permalink
  131. Hillari

    I enjoy your site very much! THANK YOU

    Posted Nov 13, 2006 at 2:23am | Permalink
  132. Elza

    Hi, all. Nice site…I really like your site ! Good job man.

    Posted Nov 13, 2006 at 5:41am | Permalink
  133. www.gewinnspieleplanet.com

    Actually it is something and the weather is good.
    People live here and there, the earth is very big. Trees and
    water is available and normal. Sports is loved by many people.

    Posted Nov 13, 2006 at 10:39am | Permalink
  134. Bill

    I\’l be back… :)s

    Posted Nov 15, 2006 at 9:26am | Permalink
  135. Jesus

    I have been looking for sites like this for a long time. Thank you!o

    Posted Nov 15, 2006 at 10:00pm | Permalink
  136. Bush

    I like it and the background and colors make it easy to readu

    Posted Nov 16, 2006 at 9:00pm | Permalink
  137. Bush

    I+like+it+and+the+background+and+colors+make+it+easy+to+readu

    Posted Nov 16, 2006 at 9:01pm | Permalink
  138. Peter
    Posted Nov 17, 2006 at 1:53am | Permalink
  139. Otto
    Posted Nov 17, 2006 at 8:04am | Permalink
  140. Yago
    Posted Nov 18, 2006 at 7:55am | Permalink
  141. Elza

    Found your site in google, and it has a lot of usefull information. Thanx.r

    Posted Nov 18, 2006 at 1:29pm | Permalink
  142. phoenixdynasty

    I installed the Post levels plug in but it gives me this error

    Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/bizkids/public_html/wp-content/plugins/post-levels.php on line 2

    Parse error: syntax error, unexpected T_STRING in /home/bizkids/public_html/wp-content/plugins/post-levels.php on line 2

    Pls help how I can correct this.

    Posted Nov 19, 2006 at 11:27am | Permalink
  143. Smith

    I\’l be back… :)t

    Posted Nov 20, 2006 at 10:34am | Permalink
  144. Frank
    Posted Nov 22, 2006 at 6:05am | Permalink
  145. Zen
    Posted Nov 22, 2006 at 3:20pm | Permalink
  146. Bob

    A fantastic site, and brilliant effort. A great piece of work.y

    Posted Nov 22, 2006 at 3:24pm | Permalink
  147. Jennifer

    Very good site! I like it! Thanks!

    Posted Nov 22, 2006 at 5:55pm | Permalink
  148. Paul
    Posted Nov 23, 2006 at 10:01am | Permalink
  149. Smith

    You have a wonderful website here. May God rich bless you always.d

    Posted Nov 24, 2006 at 7:17am | Permalink
  150. Stan
    Posted Nov 24, 2006 at 8:32pm | Permalink
  151. ipeppas

    Does anyone fix the problem with the private posts not showing up in Categories/Archives for authorized users when they are logged in? (even to me that i have level 10)

    Posted Nov 27, 2006 at 1:33pm | Permalink
  152. Shelby DeNike

    I am waiting for the same fix ipeppas

    Posted Nov 27, 2006 at 10:57pm | Permalink
  153. medic-alert-bracelet

    Excellent site, added to favorites!!

    Posted Nov 28, 2006 at 4:38am | Permalink
  154. Sean

    this is a nice plugin i love it. But it does not work if the posts where red by using:

    [...]
    $posts = get_posts(’numberposts=5&offset=1′);
    foreach($posts as $post) :
    [...]

    instead of:

    [...]
    while (have_posts()) : the_post();
    [...]

    Posted Dec 8, 2006 at 1:39pm | Permalink
  155. Jeff

    How do you keep posts out of the RSS feed?

    Posted Dec 8, 2006 at 2:18pm | Permalink
  156. Sveta

    You guys do a wonderful job! Keep up the good work!!!

    Posted Dec 11, 2006 at 12:08am | Permalink
  157. Sveta

    Just serfed in. Great site, guys!s

    Posted Dec 11, 2006 at 9:41am | Permalink
  158. Sveta

    Thank for making this valuable information available to the public.e

    Posted Dec 11, 2006 at 4:48pm | Permalink
  159. Katie

    Thanks for your project. I like this site. KEEP IT UP..i

    Posted Dec 12, 2006 at 12:54am | Permalink
  160. Fred
    Posted Dec 12, 2006 at 1:29am | Permalink
  161. Anna

    cunt
    .

    Posted Dec 12, 2006 at 5:45am | Permalink
  162. Helga

    Hello people! Nice site!i

    Posted Dec 12, 2006 at 9:42am | Permalink
  163. Smith

    I you all love!w

    Posted Dec 14, 2006 at 9:48am | Permalink