A blank page means that either the trigger isn't firing, or there is an error and debug mode is turned off... try adding this to the top of the page:
try putting this code at the very top of the page you are having problems with
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>