Permission functions within wordpress
The simplest way to hide them from the editor is to put them at least two directories deep. The editor only traverses one directory down when displaying files for editing.
The simplest way to hide them from the editor is to put them at least two directories deep. The editor only traverses one directory down when displaying files for editing.
Per the recommended Hardening WordPress and other resources this is what you should look for in your folder permissions: Root Directory / 0755 .htaccess /.htaccess 0644 wp-admin/index.php /wp-admin/index.php 0644 Based on what you’ve described about having to enter your FTP credentials to update/upload plugins I believe you have a ownership/group issue with your files. When … Read more
Editor have not permissions for a plugin
Folder Permissions + Security Concerns
While there can be checks inside page the page itself is added via API call, like add_options_page() (there are several analogous functions that add pages to different parts of admin). This call includes capability argument. In your case either the extension in question is poorly coded and does something strange around there or your user … Read more
There’s probably a way to do this via one of the meta cap filters, but off the top of my head you could use the comments_open filter to check if the currently logged in user is the author of the post and change the output of the comments_open() function accordingly. I’m on the patio, so … Read more
i deactivated all the plugins and reactivated them back again, just to find out than one of those was currupted / outdated. now everything works fine again.
As the article suggests, it’s only a ‘possible’ permissions scheme. So there is no quick answer to ‘yes’ or ‘no’ in terms of settings the correct permission for files/folders in your particular hosting environment. My suggestion is to keep it as ‘out-of-the-box’ unless you run into an issue which requires you to adjust permissions in … Read more
Used Duplicator to transfer a site. Now my media uploads aren’t working
I solved this for myself. The reason i got this error was because i have added a custom menu in bootstrap.php and it was in conflict with the permissions. I just removed the unwanted menu item and the error was no more. to be more clear, I have a custom menu in my bootstrap.php like … Read more