iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mass change of user levelsOk , so running this sql query works on my local setup:
SELECT * FROM
wp_usersWHERE 1;
UPDATEwp_usersSET user_level=’2′;[this is the first sql thing I have ever done, so you might want to see a resident sql guru has a better idea 🙂 ]
Forum: Fixing WordPress
In reply to: Mass change of user levelsJust a thought – I am guessing that there a query to change ALL to level 2, then you could do the level 9s by hand. At least that way you should save a bit of time.
Forum: Fixing WordPress
In reply to: Mass change of user levelsLooking at my phpmyadmin, the user level is set in user_level in the wp_users table. So you should be able to write a query to change the levels of the users you select. I am sure someone knows how to do that.
Edited: this is the post I was looking for:
http://wordpress.org/support/topic.php?id=8545#post-63292Forum: Plugins
In reply to: Admin MenuThis is a copy of a plugin that adds backup/restore to options in 1.5. I can’t get in to work with 1.2.2 though:
<?php
/*
Plugin Name: Backup/Restore
Plugin URI:
Description: Enables Backup/Restore from the Admin menu
Version: 1.0
Author:
Author URI:
*/
$menu[46] = array('Backup/Restore', 10, 'backupRestore.php');
?>Forum: Fixing WordPress
In reply to: Warning: Invalid argument supplied for foreach()Possibly a help for someone who knows more that I – the error is index.php on line 21, but the page is indexx.php.
Forum: Fixing WordPress
In reply to: Show one category on front pageI found this, don’t know if it works though, I haven’t tried it.
http://www.schempp.ch/index.php?p=25Forum: Requests and Feedback
In reply to: Sidebar Flickr Thumbnails?I think you want to check out http://www.flickr.com/badge.gne
Forum: Plugins
In reply to: [REQ]RunPHP in WP 1.5 Pages…Forum: Fixing WordPress
In reply to: hide posts from one category from main index.Paperlion, kittens plugin should do exactly what you are asking. E-mail me at ian[at]the-way-to-the-centre.org.uk if you want a copy.
Forum: Fixing WordPress
In reply to: Running PHP in pages?I used the runphp plugin from here: http://www.nosq.com/technology/2004/10/runphp-wordpress-plugin/ and it works with pages on my (1.5a6) test blog.
Forum: Fixing WordPress
In reply to: hide posts from one category from main index.Sindre/paperlion I think I’ve got a copy of kittens hack/plugin on my other PC. If you post your (suitably munged) e-mail I will send you a copy.
Forum: Fixing WordPress
In reply to: pages…. how do they workThanks NM, that is what I thought, and I think that was what was asked at the start of the thread.
Forum: Installing WordPress
In reply to: How to set up wp-config for a local database on my mac?have you seen http://maczealots.com/tutorials/wordpress/ I found it pretty helpful.
If you haven’t got phpmyadmin or what ever it is called, it is worth downloading, it makes setting up DBs easier than in terminal.
Forum: Fixing WordPress
In reply to: pages…. how do they workNM – am I right in thinking then that there is no way to display ‘normal’ posts on a created page? So the content of a page would just be one long post?
Part of me logically thinks that pages should work like categories – write a post, then pick which cat and page you want it to appear on. Is this possible yet or is it just wishful thinking?
Forum: Fixing WordPress
In reply to: Display all link categories except…#admin {
display: none;
}
should make the admin category not show up. Not sure if you can make it condtional for just the logged in user.