|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4537 ] | U.C.I.T. Ukraine |
---|---|
Organisation name | U.C.I.T. Ukraine Multilingual Call Center |
Short name or acronym | U.C.I.T. Ukraine |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | |
Postal Code | |
City | Kiev |
Country | Ukraine |
Phone | +39 0110436872 |
Fax | + |
Organisation URL | |
Logo | Description |
![]() |
U.C.I.T. Ukraine is a multilingual call center based in Kiev, Ukraine, offering outbound services and call answering solutions (inbound services) to small and big companies. U.C.I.T. Ukraine has been operating on the Ukrainian market since 2007. Today our team runs a whole range of contact center projects for many companies like appointment setting market research, fund raising, customer care and many others. Our customized reports, training and set up are free of charge. Take advantage from our amazing prices and increase your revenue! For more info, please visit : http://www.ucitukraine.com +390110436872 |
Contact | |
Name | General Director Massimiliano |
Function | General Director |
Department | |
mcamerar_(on)_yahoo.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2013-02-02 11:15: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" |