We need some additional detail on the issue.
Does the registration page show an error message?
Or does it display as a blank page.
if it displays as a blank page, add this code at line 1 to turn error reporting on:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>

