|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3510 ] | UnikBIT Contact Center |
---|---|
Organisation name | UnikBIT Call Center Romania |
Short name or acronym | UnikBIT Contact Center |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Str Basarabia nr 168 |
Postal Code | 700125 |
City | Bucharest |
Country | Romania |
Phone | +40 0332 401869 |
Fax | +40 031.407.23.05 |
office_(on)_unikbit.com | |
Organisation URL | http://www.unikbit.com |
Logo | Description |
![]() |
Cut your costs. Prices for every budget. Our call center services: - product/service orders; - website service and support; - help desk support / tech support; - manage online chats; - database clean-up/updating; - Answering Services; - Data Entry; - Keying I and Keying II; - OCR File Conversion; - XML Conversion; - Book Conversion; - Yellow Pages Keying; - Medical Coding. |
Contact | |
Name | Account Manager Adrian POPP POPP |
Function | Account manager |
Department | sales |
office_(on)_unikbit.com | |
Phone | +40 332 401869 |
Fax | +40 31.407.23.05 |
![]() |
Last update: 2005-09-30 13:48:24 #!/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" |