|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4250 ] | WFMwizard |
---|---|
Organisation name | Better Plan |
Short name or acronym | WFMwizard |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 14 Weizmann st. |
Postal Code | 64239 |
City | Tel Aviv |
Country | Israel |
Phone | +972 722424282 |
Fax | +972 37621202 |
sales_(on)_wfmwizard.com | |
Organisation URL | http://www.wfmwizard.com |
Logo | Description |
![]() |
Better Plan is a leading provider of workforce management and planning solutions for small and medium call centers. Better Plan Ltd. is a privately held company founded by veterans in the call center and customer service arenas with over 50 years of combined prior experience. Our innovative WFMwizard software solution was introduced in 2009. WFMwizard is suitable for business users seeking to automate their call center operations weekly planning cycle: accurately forecast call volumes, calculate agents staffing levels needed, optimize shifts structure design, roster agents, etc. WFMwizard is useful for both short and long term planning horizons. WFMwizard was created to fulfill a need of many small and medium call centers for a complete but really affordable workforce management solution. |
Contact | |
Name | Mr. Dan Wiegenfeld |
Function | CEO |
Department | |
sales_(on)_wfmwizard.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2010-03-30 15:46:34 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |