Skip to:
Content
Pages
Categories
Search
Top
Bottom

403 error when trying to delete user field


  • sinikkali
    Participant

    @sinikkali

    Hi there,

    I tried to create custom profile fields for the buddypress profile and then tried to delete it, but everytime I get a 403 error. the same when I’m trying to edit a field:

    http://take.ms/UkM40

    http://take.ms/7FJ4K

    As you can see, the error refers to the user.php file.

    Has anyone an idea what to do?

    Cheers,

    Sinikka

Viewing 5 replies - 1 through 5 (of 5 total)

  • danbp
    Moderator

    @danbp

    Are you on a local or on a production install ?
    Are you connected as site admin when the error occurs ?


    sinikkali
    Participant

    @sinikkali

    hi there, no, not a localhost, it’s a finished live site 🙂
    Yes, I’m connected as an admin…


    danbp
    Moderator

    @danbp

    Do you have error message when wp-debug is activated ?

    Generally a 403 error is related to a lack of ressource on server side. Ask your host if you find nothing.


    sinikkali
    Participant

    @sinikkali

    Hm, I enabled he debug mode and nothing showed up… thank you anyways for your answer!


    Henry Wright
    Moderator

    @henrywright

    A 403 response usually indicates the resource you requested is forbidden. Something like this could happen for various reasons. The first place to start is your .htaccess file; check there’s nothing crazy going on inside that. A basic WP .htaccess file with no customisation should look like this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Ref: https://codex.wordpress.org/htaccess

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar