Question : The user profile service failed the logon.

On my computer I created a new user account but when I attempted to login to it I get this error message: "The user profile service failed the logon.  User profile cannot be loaded."  Can you tell me how to fix this problem?

Answer : The user profile service failed the logon.

I figured out the solution myself. Man, EE. I'm answering most of my questions. I'm paying EE to have you guys answer them instead of me! Come on now. :P I'm not suppose to be the expert, you are!
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
// Gettext to Change Text in WordPress
function filter_gettext($translation, $text, $domain) {
	$translations = &get_translations_for_domain( $domain );
		if ( $text == 'Media' ):	return $translations->translate( 'Resources' ); endif;
		if ( $text == 'Media Library' ): return $translations->translate( 'Resource Library' ); endif;
		if ( $text == 'Upload New Media' ): return $translations->translate( 'Add a New Resource' ); endif;
	return $translation;
}
add_filter('gettext', 'filter_gettext', 10, 3);

// Change the Media Icon
function replace_media_library_icon() {
	echo '<style type="text/css">
		#icon-upload { background: url("images/icons32.png?ver=20100531") no-repeat -312px -5px; }
		#adminmenu .menu-icon-media div.wp-menu-image { background: url("images/menu.png?ver=20100531") no-repeat -151px -33px; }
		#adminmenu .menu-icon-media:hover div.wp-menu-image, #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image { background: url("images/menu.png?ver=20100531") no-repeat -151px -1px; }
	</style>';
}
add_action('admin_print_styles', 'replace_media_library_icon', 50, 3);
Random Solutions  
 
programming4us programming4us