• Hello,

    All of a sudden I’m not able to upload or delete any images on new or existing posts on my website on Magic Fields.

    I get the error message:
    “You do not have sufficient permissions to access this page.”

    I have the same website running locally on XAMPPP and it works just fine so it must be something related to server configuration.

    I also have other websites with Magic Fields on the same server and they are all working fine.

    What do you think might be happening with this particular install?

    Thank you!

    https://wordpress.org/plugins/magic-fields-2/

Viewing 1 replies (of 1 total)
  • Plugin Author hunk

    (@hunk)

    Which version you uses?

    try for MF 2.x add .htaccess in MF plugin folder

    <FilesMatch “^(mf_upload)\.php$”>
    <IfModule !mod_authz_core.c>
    Order allow,deny
    Allow from all
    </IfModule>
    <IfModule mod_authz_core.c>
    Require all granted
    </IfModule>
    </FilesMatch>

    MF 1.x same path

    <FilesMatch “(RCCWP_upload|RCCWP_GetDuplicate)\.php$”>
    <IfModule !mod_authz_core.c>
    Order allow,deny
    Allow from all
    </IfModule>
    <IfModule mod_authz_core.c>
    Require all granted
    </IfModule>
    </FilesMatch>

Viewing 1 replies (of 1 total)
  • The topic ‘Image Field Error – You do not have sufficient permissions to access this page.’ is closed to new replies.