Please check your php error log and/or turn on error reporting in OST and let us know what your seeing for an error. You can turn errors on in OSTicket by editing the /main.inc.php
Locate:
#Don't display errors
ini_set('display_errors',0);
ini_set('display_startup_errors',0);
and change it to:
#Don't display errors
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
Let us know what your seeing for errors. (Also make sure that you go back in and shut it back off later!)