Greetings.
I have the following code being used as a registration form. All other pages on the site load quickly, except for this one. The form posts, but takes minutes to load. Once it loads, the registration is completed with no apparent issues (the member is created properly, the activation email is sent, the page redirects as defined by the RET input.) Nothings is showing up in the PHP server logs. Any ideas as to why this would be happening?
<form method="post">
<div class="hiddenFields">
<input type="hidden" name="XID" value="{XID_HASH}">
<input type="hidden" name="ACT" value="13">
<input type="hidden" name="RET" value="/account/register/success">
<input type="hidden" name="FROM" value="">
<input type="hidden" name="site_id" value="1">
</div>
<fieldset>
<label for="m_field_id_1">First Name</label>
<input type="text" name="m_field_id_1" id="m_field_id_1" value="">
<label for="m_field_id_2">Last Name</label>
<input type="text" name="m_field_id_2" id="m_field_id_2" value="">
<label for="username">Email</label>
<input type="text" name="email" id="email" value="">
<label for="username">Username</label>
<input type="text" name="username" id="username" value="">
<label for="m_field_id_7">Phone Number</label>
<input type="text" name="m_field_id_7" id="m_field_id_7" value="">
<label for="password">Password</label>
<input type="password" name="password" id="password" value="">
<label for="password_confirm">Re-Enter Password</label>
<input type="password" name="password_confirm" id="password_confirm" value="">
<label for="m_field_id_3">Address</label>
<input type="text" name="m_field_id_3" id="m_field_id_3" value="">
<label for="m_field_id_4">City</label>
<input type="text" name="m_field_id_4" id="m_field_id_4" value="">
<label for="m_field_id_5">State</label>
<input type="text" name="m_field_id_5" id="m_field_id_5" value="">
<label for="m_field_id_8">Zip</label>
<input type="text" name="m_field_id_8" id="m_field_id_8" value="">
<input type="submit" value="Register">
</fieldset>
</form>