I have just install the binary on Windows XP and used Postgres for the backend. I still had the same issue.
To get it to work I changed the jsp (campaign_center_schedule.jsp) page to the following:
FROM:
<dhv:permission name="campaign-campaigns-edit">
<zeroio:dateSelect form="inputForm" field="activeDate" timestamp="<%= Campaign.getActiveDate() %>"/>
<dhv:label name="project.at">at</dhv:label>
<zeroio:timeSelect baseName="activeDate" value="<%= Campaign.getActiveDate() %>" timeZone="<%= (Campaign.getActiveDateTimeZone() == null) ? User.getTimeZone(): Campaign.getActiveDateTimeZone() %>" showTimeZone="true"/>
<font color="red">*</font>
</dhv:permission>
<%=showAttribute(request,"activeDateError")%>
To:
<dhv:permission name="campaign-campaigns-edit" none="true">
<input type="text" size="10" name="activeDate" value="<zeroio:tz timestamp="<%= Campaign.getActiveDate() %>" dateOnly="true" />" disabled="disabled">
</dhv:permission>
<dhv:permission name="campaign-campaigns-edit">
<zeroio:dateSelect form="inputForm" field="activeDate" timestamp="<%= Campaign.getActiveDate() %>" timeZone="<%= (Campaign.getActiveDateTimeZone() == null) ? User.getTimeZone(): Campaign.getActiveDateTimeZone() %>" showTimeZone="true" />
</dhv:permission>
<%=showAttribute(request,"activeDateError")%>
This works but you cannot choose the time for the Run Date. It looks like a bug. Please can you advise on when this issue will be resolved.
Thanks.