LOCAL server not installing wordpress

You don’t rename the links with .htaccess when using WordPress. Simply go to Settings->Permalinks from your dashboard and select the scheme you want. Going by your sample URL, you could put /%postname%/ in the Custom Structure field to get just the post name.

Styling Admin comments in WP 3.1.3

Why not use: if ( user_can( $comment->user_id, ‘administrator’ ) ) { // current comment is from an administrator; // do something } As for putting the admin comments at the top of the comment list, you would have to modify the comment query itself.

Extending the user profile [closed]

I second what @Viruthagiri said. You can also use the plugin Theme My Login if you want to hide the real WordPress control panel from your users and only show them their own profile/edit profile page, themed just like your site. Best of luck!

In admin panel, use a form to create a post?

You could create a custom metabox with those items as custom fields and then either remove support for the editor or hide it with CSS. Then output the post meta instead on the front end. Be aware that if you remove support for the editor, you’ll have funky behavior with media attachments. Edit: If you … Read more

Limit ‘contributers’ abilities in WordPress

When you register your post type you can show/hide the UI in the arguments. I would approach it this way: $allowed = current_user_can(‘administrator’) ? true : false; $args = array( //other args ‘show_ui’ => $allowed ); //register_post_type() function; This will maintain the custom post type architecture while hiding the UI for those who are not … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)