Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

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

  • imtrevormrose
    Participant

    @imtrevormrose

    It’s the wordpress https plugin that’s causing it to that. I need this plugin installed and working though. Any one using an https plugin that doesn’t prevent this error?


    imtrevormrose
    Participant

    @imtrevormrose

    Fixed. It was completely my fault. I had copied and pasted a short bit of code into my functions.php file to block access to the wordpress dashboard from anyone not an admin.

    /*blocks access to the dashboard*/

    function wpse_11244_restrict_admin() {

    if (!current_user_can(‘update_core’)) {

    wp_die(__(‘You are not allowed to access this part of the site’));

    }

    }

    add_action(‘admin_init’, ‘wpse_11244_restrict_admin’, 1);

    function include_jQuery() {
    if (!is_admin()) {
    wp_enqueue_script(‘jquery’);
    }
    }
    add_action(‘init’, ‘include_jQuery’);


    imtrevormrose
    Participant

    @imtrevormrose

    The private messaging decided to work. But a basic user still can’t send a public message ( mentions ) or comment or favorite mentions. They also can’t accept or add friends.

    I’m going through the coding now and I’m not turning anything up that has to do with “permissions” or level of user. I’ve attempted turn error logging on, but if it is on, nothing is being populated into the error_log.php file.


    imtrevormrose
    Participant

    @imtrevormrose

    No, neither are disabled.
    I think it has to do with permissions? I’m not sure. This is the error message it’s giving me. “You are not allowed to access this part of the site “

Viewing 4 replies - 1 through 4 (of 4 total)
Skip to toolbar