I'm not experiencing those errors on mine. It seems to be working fine with multiple sign ups on the same day. Other than the slowness that everyone else seems to be experiencing.
Risking duplicate entries if this happens I apologize we are 24+ pages deep now.
In our guild I have the issue where I have people with multiple raiding 70's more than 3 the issue with selectable names was fixed by adding the following.
in calendar_signup_form
find:
PHP Code:
<if condition="$alternates">
<if condition="!$mycharacter[1]==''"><option value="$mycharacter[1]" <if condition="$mysignupname == $mycharacter[1]">selected</if>>$mycharacter[1]</option></if>
<if condition="!$mycharacter[2]==''"><option value="$mycharacter[2]" <if condition="$mysignupname == $mycharacter[2]">selected</if>>$mycharacter[2]</option></if>
Understand that your 1st character is 0, second is 1, 3rd is 2, and so on. Max characters that you can have on a server is 10. So after the above code add.
PHP Code:
<if condition="!$mycharacter[3]==''"><option value="$mycharacter[3]" <if condition="$mysignupname == $mycharacter[3]">selected</if>>$mycharacter[3]</option></if>
<if condition="!$mycharacter[4]==''"><option value="$mycharacter[4]" <if condition="$mysignupname == $mycharacter[4]">selected</if>>$mycharacter[4]</option></if>
<if condition="!$mycharacter[5]==''"><option value="$mycharacter[5]" <if condition="$mysignupname == $mycharacter[5]">selected</if>>$mycharacter[5]</option></if>
<if condition="!$mycharacter[6]==''"><option value="$mycharacter[6]" <if condition="$mysignupname == $mycharacter[6]">selected</if>>$mycharacter[6]</option></if>
<if condition="!$mycharacter[7]==''"><option value="$mycharacter[7]" <if condition="$mysignupname == $mycharacter[7]">selected</if>>$mycharacter[7]</option></if>
<if condition="!$mycharacter[8]==''"><option value="$mycharacter[8]" <if condition="$mysignupname == $mycharacter[8]">selected</if>>$mycharacter[8]</option></if>
<if condition="!$mycharacter[9]==''"><option value="$mycharacter[9]" <if condition="$mysignupname == $mycharacter[9]">selected</if>>$mycharacter[9]</option></if>
this will extend the drop down and allow more selectable charaters for those guildies that have no life