iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Please help, although its possible I’m being really stupid…It looks like your permalink structure is not quite right – your titles are linking to “
your-url/year/month/day“. Try setting them to “Date and name based” on the permalinks page and see if that helps.Forum: Fixing WordPress
In reply to: Previous posts<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>should do what you want.
You can see here here for customisation.Forum: Fixing WordPress
In reply to: No of Comments in a Post not showingTry this it is normally related to using an older version of SK2.
Forum: Fixing WordPress
In reply to: theme management gone crazy?Whatever text editing program you are using is probably messing with your line endings:
http://wordpress.org/support/topic/38242Forum: Fixing WordPress
In reply to: Posts Per PageQuery posts stomps all over any other URL (such as those generated by your individual post pages). Have a search for the plugins ‘Custom Query Strings’ or ‘Per Pages’ which should allow what you want without needing query posts.
Forum: Installing WordPress
In reply to: what is the .htaccess-file supposed to do?I think it will be created (if your server allows) when you switch on nice permalinks. If not, you can make it by uploading htaccess.txt via ftp and then renaming it. It can also do lots of other clever complicated things which you can google for :).
Forum: Fixing WordPress
In reply to: Spam? Read this.So how is the spam getting passed the login requirement?
From what I have seen this stuff is mostly track/ping spam
I can live without comments, trackback and pings.
Why do without? For me Bad behavior is stopping upwards of 2,500 per day, and the 10 or so that make it past that are stopped by SK2. The plugins Podz mentioned in the the first post work, honest 🙂
Forum: Fixing WordPress
In reply to: Oops! deleted “Uncategorized”wordpress.com?
You will need to ask here for suport.Forum: Fixing WordPress
In reply to: Spam? Read this.Do be aware that on some installations MANY of these plugins shut the native moderation option OFF. This means that the spam that does get through goes directly onto your blog.
If you want SK2 to also obey the WP moderation options use this. That said, with BB and SK2 running only one of thousands of spams have made it even as far as my moderation queue.
Forum: Plugins
In reply to: Looking for some PHP/loop helpThis is probably the neatest way to do it (no second loop needed).
Forum: Fixing WordPress
In reply to: downgradeI think you will have to edit the details in the database directly.
Looks like a popular thing to do at the moment! 😉
See here for helpForum: Plugins
In reply to: Is there an Automated Backups Plug-in that emails the backup?If you have CPanel and the abilty to run cron jobs, try this script. I have been using for over a year with no problems.
Forum: Fixing WordPress
In reply to: Touch Plug-in/home/mythmag/public_html/wp/wp-content/plugins/touched Folder/tw-touched.php
I thinktouched foldershould be namedtw-touchedhowever, I recall at one point that that plugin did nasty things to your posts if you are using 2.0.2 (check the authors page). i think the ‘edit in place’ plugin will provide similar functionality.Forum: Fixing WordPress
In reply to: Can I reply to individual comments?Have a search for ‘threaded comments’ (here and via google) I think there is a hack/plugin for WP2.x, though if I recall it involves either replacing/ seriously hacking your comments file, and editing other core files.
Forum: Fixing WordPress
In reply to: A unique requestMaybe:
<?php $posts = get_posts('numberposts=1&category=999'); foreach ($posts as $post) : ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a><?php the_content(); ?>
<?php endforeach; ?>Amend the contents of the mini-loop to suit.