|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4342 ] | UtilisBPO |
---|---|
Organisation name | Utilis BPO |
Short name or acronym | UtilisBPO |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Lahore |
Postal Code | 54000 |
City | Lahore |
Country | Pakistan |
Phone | +1 845-704-1900 |
Fax | + |
info_(on)_utilisbpo.com | |
Organisation URL | http://www.utilisbpo.com |
Logo | Description |
![]() |
Utilis BPO is a growing call center, providing quality Services to a diversified range of clients worldwide. It is supporting the entire customer life cycle from front-office customer interaction to back-office reverse logistics. For over a decade, top management of Utilis BPO has been providing cost effective quality services to clients around the globe. We provide customized solutions open to the wide-ranging requirements of our each customer at a very logical price. This philosophy has resulted us the long-term customer loyalty. |
Contact | |
Name | Managing Director Jawad Khan |
Function | |
Department | |
jawad_(on)_utilisbpo.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2010-11-13 00:26:16 #!/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" |