Re: [wp-testers] Unable to edit user profiles

2010-04-27 Thread scribu
Confirmed. You should open a ticket on trac.


On Tue, Apr 27, 2010 at 8:15 AM, Michael Atkins michael.atk...@gmail.comwrote:

 Using the latest nightly build, going into Users - Authors  users, I am
 unable to edit users apart from the user I am logged on as. I can create 
 delete other users, just don't get an option to edit other users. I have
 tried this on a fresh install and was able to reproduce the same issue.




 ___
 wp-testers mailing list
 wp-testers@lists.automattic.com
 http://lists.automattic.com/mailman/listinfo/wp-testers




-- 
http://scribu.net
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Loop on db upgrade?

2010-04-27 Thread Tom Klingenberg

Am 26.04.2010, 16:22 Uhr, schrieb Dougal Campbell dou...@gunters.org:


On Apr 26 2010 10:15 AM, Dougal Campbell wrote:
That's probably what it is. I just thought of the same thing this  
morning (before I saw this reply). I'm using W3 Total Cache, with db  
caching to memcache, so that's probably the culprit.


Oops. Except that one of the sites doesn't have any caching at all, and  
I just got the loop there again...


I assume this has something todo with the data in your database (not the  
cache) and the update routines. Can you modify the code and add print  
statements to see where this is going to loop?

___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Fatal error: Call to undefined function add_contextual_help() in /wp-admin/widgets.php on line 42

2010-04-27 Thread Azizur Rahman
It's fixed now! I had some debug code in my theme function.php causing  
the issue.


Azizur Rahman
ProDevStudio

http://prodevstudio.com

If you are running east looking for a sunset, you'll never see it no  
matter how hard you try.


On 26 Apr 2010, at 12:36 PM, scribu scr...@gmail.com wrote:

It's working fine here. Try disabling all plugins and then reverting  
to the

default theme.


On Mon, Apr 26, 2010 at 12:49 PM, Azizur Rahman 
prodevstudio+wordpr...@gmail.com prodevstudio 
%2bwordpr...@gmail.comwrote:



Hi All,

I just updated my test site to latest revision r14237.

Everything is working fine except that when I try to view the  
dashboard or

any of the backend pages I am getting a:

Fatal error: Call to undefined function add_contextual_help() in
/wp-admin/widgets.php  on line 42

It was all working last Friday so it has come about over the weekend.


Kind Regards,
Azizur Rahman
http://wordpress.org/support/profile/5916353
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers





--
http://scribu.net
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers

___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


[wp-testers] Custom Post Type with Meta Box - Permalink and Presentation Problems

2010-04-27 Thread Jamie Oastler
Using the nightly beta build I have managed to make a great custom
post type following the instructions on
http://www.deluxeblogtips.com/2010/04/how-to-create-meta-box-wordpress-post.html

But now I am struggling with the presentation side of the big changes
for WP 3.0. If someone could please share some generic examples for
how to achieve the following it would be greatly appreciated. I've
hunted through most of google and had no success.

1) How to create the equivelent of a category-#.php based file for
custom post types and single.php for posts within.

2) How to have the permalink structure be the equivelent of
http://site.com/custom-data-type/post-slug
Anything I did to the rewrite parameter in register_post_type would
usually cause the admin console and site to not render.
Right now I get http://site.com/?album=album-title

Thanks,
Jamie
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Custom Post Type with Meta Box - Permalink and Presentation Problems

2010-04-27 Thread Jamie Oastler
Deanna gave an excellent example for #1 with a template_redirect action.

For the second item, I have tried the following code which *should*
work on two different servers and both result in a blank page display
of the admin. Adding rewrite = false will have the post type menu,
but not any permalinks.

// Register custom post type - Manager
register_post_type('manager', array(
'label' = __('Managers'),
'singular_label' = __('Manager'),
'public' = true,
'show_ui' = true, // UI in admin panel
'capability_type' = 'post',
'hierarchical' = false,
'query_var' = manager, // This goes to the WP_Query schema
'supports' = array('title' ,'thumbnail' /*'excerpt', 'editor'
,'custom-fields'*/)
));

Also at http://wordpress.pastebin.com/3dZJZnJw


On Tue, Apr 27, 2010 at 7:00 PM, Jamie Oastler jamie.oast...@gmail.com wrote:
 Using the nightly beta build I have managed to make a great custom
 post type following the instructions on
 http://www.deluxeblogtips.com/2010/04/how-to-create-meta-box-wordpress-post.html

 But now I am struggling with the presentation side of the big changes
 for WP 3.0. If someone could please share some generic examples for
 how to achieve the following it would be greatly appreciated. I've
 hunted through most of google and had no success.

 1) How to create the equivelent of a category-#.php based file for
 custom post types and single.php for posts within.

 2) How to have the permalink structure be the equivelent of
 http://site.com/custom-data-type/post-slug
 Anything I did to the rewrite parameter in register_post_type would
 usually cause the admin console and site to not render.
 Right now I get http://site.com/?album=album-title

 Thanks,
 Jamie

___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers