php - Submitted URI too large! The length of the requested URL exceeds the capacity limit for this server. The request cannot be processed -


does know how can fix error?

"submitted uri large!

the length of requested url exceeds capacity limit server. request cannot processed."

thanks in advance! here php code

if (php_version >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();} //declare 2 session variables , assign them $_session['mm_username'] = $loginusername; $_session['mm_usergroup'] = $loginstrgroup;         if (isset($_session['prevurl']) && true) {   $mm_redirectloginsuccess = $_session['prevurl'];   } header("location: " . $mm_redirectloginsuccess ); 

}

?> note: did process via dreamweaver , insert php code itself.

without knowing exact url, suppose submitted large form request. there limits this, , exact character limits depending on browser , webserver using.

you should consider using post requests.


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -