vBulletin 5.5.5
If you gettting an error "unexpected_error,Incorrect HTTP Method. Please use a POST request." when finding a user in the shoutbox then open \core\packages\dbtechvbshout\js\core.js.
Then find and replace.
This.
Code:
ajaxCall('Lookup',instanceId,{'username':$.trim(userName)},'GET');});
with this
Code:
ajaxCall('Lookup',instanceId,{'username':$.trim(userName)},'POST');});