Warning: Use of undefined constant HTTP_USER_AGENT – assumed ‘HTTP_USER_AGENT’ (this will throw an Error in a future version of PHP)

Somewhere in your code you’ve written $_SERVER[HTTP_USER_AGENT].

It needs to be $_SERVER['HTTP_USER_AGENT'] with quotes around 'HTTP_USER_AGENT'. PHP is telling you it’s guessed that’s what you meant.