• Resolved olavinsky

    (@olavinsky)


    one day after going live with wordpress and buddypress our site started to behave strange, Menus not showing, pages not fnd and a whole set of errors, all was working well when we tested on a local host and on the first day of going live, now on day 2, it chaos.
    any help would be gratefull.
    site url: https://www.bajanfirefighters.org/

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

    (@esmi)

    Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the Twenty Eleven theme to rule out any theme-specific problems.

    resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    – re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.

    Thread Starter olavinsky

    (@olavinsky)

    currently i amdeactivating plugins one by one to see what happens, so far i deleted the .htaccess and reset the permalinks, and this seems to have stablise the top nav menu so rght now the only page with this issue is the hme page which is a static hme page

    Thread Starter olavinsky

    (@olavinsky)

    just came from going through the site theme file and settings with a fine tooth comb, and came to the conclusion these errors were caused by the admin who is to take over and run the site for the organisation, is they a way to add someone as admin but take away priviledges so that they cant mess around with settings and send the site haywire??

    esmi

    (@esmi)

    Try changing their role to Editor.

    Thread Starter olavinsky

    (@olavinsky)

    Thanks for the suggestion but he is going to be the person actually running and managing the site,so what i did was google how to remove the menus with out using a plugin since i have a plugin that can remove menus, but he may just reverse it. the code i used is :
    ‘ function remove_menus () {
    global $menu;
    $restricted = array(__(‘Links’));
    end ($menu);
    while (prev($menu)){
    $value = explode(‘ ‘,$menu[key($menu)][0]);
    if(in_array($value[0] != NULL?$value[0]:”” , $restricted)){unset($menu[key($menu)]);}
    }
    }
    add_action(‘admin_menu’, ‘remove_menus’); ‘
    Thanks for your help, i learnt a lesson when adding a admin to a site or handing it over to someone hide the essentials.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘site not wrks after going live on production server’ is closed to new replies.