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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -