custom login form redirect problem
Php Short tags are a “no-no” You shouldn’t use short php like this: value=”http://<?=$_SERVER[‘SERVER_NAME’].$_SERVER[‘REQUEST_URI’];?>” Where does it come from? Different servers, different php.ini files. You simply ran into the problem that short_open_tag = Off is set. Not all servers have this set to true per default. Further more not all hosts allow editing the php.ini … Read more