The privileges tag has no wiki summary.
0
votes
0answers
9 views
No multisite but a super admin without sufficient privileges
I have no multisite but I'm super admin. Why I do not know. After I changed username and password on the super admin has super admin no longer all privileges. In some settings, and plugin, I get:
...
0
votes
1answer
31 views
Lost admin “manage_link” capability WordPress. No “Links” menu item in admin menu
Going slightly mad. In the process of upgrading a client's website to WordPress 3.5.1 we've decided to use the built-in WordPress "Links" system to manage their affiliations.
I am using the "Admin ...
1
vote
1answer
147 views
One time username change from frontend?
I'm using facebook connect plugin.
Usernames generated by that plugin look like firstname_lastname. I mean it looks ugly.
I would like to give the privilege to my users to change the username BUT ...
1
vote
1answer
1k views
“You do not have sufficient permissions to access this page” upon accessing my newly created plugin page
I am following "Write your own plugin tutorial" and I made it, activated it, added it to settings to have it's own plugin page but upon trying to access that plugin page I get above message saying ...
0
votes
1answer
1k views
How to set privilege to wordpress subscriber for private page
I am having private page.I want to show this page only when "subscriber" logged in."Editor" should not access this page.How can i set the privilege.
1
vote
1answer
203 views
Excluding private/protected posts via IP
I essentially want password protected/private pages/posts in WP to work as they currently do, but completely disregard the functionality for certain IP addresses.
I've looked into filters/actions ...
0
votes
3answers
367 views
Trying to save custom post type from frontend partially working
I've created the following custom post type (lugares means places) with a custom taxonomy of tacos and it works fine form the backend:
/**
* Custom post-type lugares
**/
add_action('init', ...
1
vote
1answer
493 views
grant a privilege for roles (for example editors) and higher
My wordpress theme has a custom post-type. Only editors (and higher) should be allowed to use this post type.
I did this with:
function add_capability($role,$cap) {
$role_obj = get_role($role); ...
1
vote
1answer
849 views
How to enable a site administrator to edit users in a WordPress network/ multisite setup?
I have a few sites in a network. I don't want the site administrators to manage things like network plugins, but I would like them to be able to edit profiles of all network users, not use those on ...
1
vote
2answers
67 views
Can I stop authors from changing the font in their post?
I want the site to have a consistent look and feel so want to prevent authors from changing font, font color or font size.
Is there a way to either override their choices, or remove the option?
...
1
vote
1answer
627 views
Best way to have an per-user customized private section
A common requirement for business sites is to have a client login which allow visitors to access private content for them (ie: downloads, screenshots, documents).
I did it in the past and although it ...
0
votes
1answer
402 views
How Do I Allow Comment Moderation for Other User's Posts?
I want to setup a user account that only has access to moderate comments - for all posts - but doesn't have access to edit any posts.
When I give the user the moderate comments privilege (using an ...
1
vote
2answers
4k views
What are the recommended database permissions for WordPress?
I just got WP running on my own server. I am not trying to lock things down more. What permissions should the db user have to my WP db?
1
vote
1answer
3k views
Restricting access to files within a specific folder [duplicate]
Possible Duplicate:
How to Protect Uploads, if User is not Logged In?
Is there any way at all to restrict direct access to files within a specific folder to only specific wordpress users ...
9
votes
2answers
3k views
MySQL Database User: Which Privileges are needed?
The short installation instruction for WordPress ("5 Minutes") state that:
Create a database for WordPress on your web server, as well as a MySQL user who has all privileges for accessing and ...
3
votes
1answer
281 views
What specific database privileges does WordPress need?
I want to create a new database user for my WordPress installation. Usually on localhost, i can just use root, but it is good practice to use a user with as little rights as possible.
What are those ...