• I have this in my WP-Config:
    define(‘DISALLOW_FILE_EDIT’,true);

    I want to be allowed to edit.
    So, should I change it to:
    define(‘DISALLOW_FILE_EDIT’,false);
    or just delete that line?

Viewing 1 replies (of 1 total)
  • Leave it true if you want to still edit theme/plugin files in the admin area..

    From the Codex:

    Disable the Plugin and Theme Editor
    Occasionally you may wish to disable the plugin or theme editor to prevent overzealous users from being able to edit sensitive files and potentially crash the site. Disabling these also provides an additional layer of security if a hacker gains access to a well-privileged user account.

    define( 'DISALLOW_FILE_EDIT', true );

Viewing 1 replies (of 1 total)
  • The topic ‘Editing Config – Delete or Change True to Fale’ is closed to new replies.