Now users can register for FREE, create on-line exams at SkillRack and share their exams in any blog or website. No registration is required to take the exam.
You get the detailed score report of each exam.
Please visit http://skillrack.com/blog/index.php/2010/07/13/create-your-online-exams-and-share-for-free-test-takers-need-not-register/ for more details.
sudo /usr/lib/cgi-bin/awstats.pl -config=www.yourdomainname.com -update
Note: To install awstats in Ubuntu please follow the instructions in this link
and update the LogFormat to 1 instead of 4 when using Apache2.
The problem under consideration is what is discussed in this forum post.
http://primefaces.prime.com.tr/forum/viewtopic.php?f=3&t=2696&start=0
The solution is to assign a z-index of value zero to p:schedule. A lower value will send it behind the page background. Making the z-index for p:menubar also did not do the trick. May be the drop down did not inherit the z-index of menubar properly and as a result the drop down had a lower z-index than the p:schedule.
So instead of increasing z-index of menubar and its content, the solution i found was to make the z-index of the p:schedule zero as in the below code.
<p:schedule style="position:relative;top:0px;left: 0px;z-index:0;width:100%" value="#{myaction.eventModel}" editable="false" widgetVar="someschedule" view="agendaWeek"/>