Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Build a WordPress Plugin Building a WordPress Plugin Settings Page Basic Markup for WordPress Settings Pages

I am facing this error "Server error 500"

I am getting Server error 500.

When I comment the below code, it works.

function wptreehouse_badges_options_page(){

if( !current_user_can( 'manage_options' ) ) {

    wp_die( 'You dont have sufficient permission to access this page.' );

} 
require ( 'inc/options-page-wrapper.php' );

}

Please help.

Konrad Pilch
Konrad Pilch
2,435 Points

Check your network with web tools. I think that's what i did time ago i think, not exactly sure.

If i am right, the wp_die function just kills php

https://developer.wordpress.org/reference/functions/wp_die/

1 Answer

Yes, it does.

I will check again back and post an update.