General 500 error from the root

I would disable .htaccess and changing the permalink structure that can be found in (setting->permalinks). You’re specifically getting a 500 error and not a “Cannot connect to the Database” error? Since it sounds like a theme issue, inside of wp-config.php, set: define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_LOG’, true ); define( ‘WP_DEBUG_DISPLAY’, true); so you can … Read more

Function prints post meta data does not work [closed]

I solved the problem by using this code. if ( ! function_exists( ‘theme_post_meta_data’ ) ) : /** * This function prints post meta data. */ function theme_post_meta_data() { printf( __( ‘<span class=”https://wordpress.stackexchange.com/questions/66059/%1$s”>Posted on </span>%2$s<span class=”%3$s”> by </span>%4$s’, ‘theme’ ), ‘meta-prep meta-prep-author posted’, sprintf( ‘<a href=”https://wordpress.stackexchange.com/questions/66059/%1$s” title=”%2$s” rel=”bookmark”><span class=”timestamp”>%3$s</span></a>’, get_permalink(), esc_attr( get_the_time() ), get_the_date() ), ‘byline’, … Read more

WordPress HTTP 500 Error

You’ve got an SSL certificate on the site. So start by telling people to go to https://brothas.online instead of the link above 😉 More importantly: Second go ‘Settings‘ -> ‘General‘ and set both ‘WordPress Address (URL)‘ and ‘Site Address (URL)‘ to ‘https://brothas.online‘ Then go to ‘Settings‘ -> ‘Permalinks‘ and save you settings again. This should … Read more