• Plugin version: 2.4.6
    After login show this errors and nothing more:

    Notice: Undefined index: query in ****/wp-content/plugins/simplr-registration-form/simplr_form_functions.php on line 1231
    
    Warning: Cannot modify header information - headers already sent by (output started at ****/wp-content/plugins/simplr-registration-form/simplr_form_functions.php:1231) in /home3/rayford/public_html/photography/wp-includes/pluggable.php on line 1174

    For fix this need following code in “simplr_form_functions.php”:

    
    function simplr_register_redirect() {
        $file = parse_url($_SERVER['REQUEST_URI']);
        $path = explode('/',@$file['path']);
        global $simplr_options;
        parse_str(@$file['query']);
    

    And change last string string to:
    $file['query'] = parse_str(@$file['query']);

    • This topic was modified 7 years, 9 months ago by Max K.
  • The topic ‘Error after login’ is closed to new replies.