Hello everyone!

My webpage is running this error..
Fatal error: Cannot redeclare register_new_user() (previously declared

So I added "if(!function_exists('function_name')){" to the line affected

//////REGISTRATION EMAIL END////////
}
return array($user_id,$user_pass);
if(!function_exists('function_name'))
{
}
$action = isset($REQUEST['action']) ? $REQUEST['action'] : 'login';
$errors = new WP_Error();

if ( isset($_GET['key']) )
$action = 'resetpass';
// validate action so as to default to the login screen

and now am getting this error: syntax error, unexpected T_STRING which relates to the last line on the page.

$middle_content_file_fullpath = TEMPLATEPATH . "/library/includes/$file_name";
}
include_once(TEMPLATEPATH.'/site_layout_structure.php');
php get_footer();?>

Please help and thank you!

    This looks wrong:

    php get_footer();

    It is probably just:

    get_footer();

    or:

    php_get_footer();

      Hi laserlight,

      I tried all 3 versions and its still not working.

      Thank you.

        Is this from a module? If this is from a newer version of WordPress, the function is wp_footer()

          Write a Reply...