|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4842 ] | BPO WorldWide |
---|---|
Organisation name | BPO WorldWide |
Short name or acronym | BPO WorldWide |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Duntes 6,504 |
Postal Code | LV-1013 |
City | Riga |
Country | Latvia |
Phone | +371 67 660633 |
Fax | + |
sales_(on)_bpoww.com | |
Organisation URL | http://bpoww.com/ |
Logo | Description |
![]() |
BPO WorldWide is call center service provider located in Latvia that offers call center outsourcing services in English, Norwegian, Swedish, Danish, Russian and Latvian languages. Sectors covered by BPO WorldWide: Airlines support, Telemarketing (healthcare, food, technology, software and many others), Booking of tickets/rooms/meetings, Logistics, IT support, Technical support in VoIP companies. 24/7 support. |
Contact | |
Name | Mr Dmitry Druzenko |
Function | Founder |
Department | Call Center |
dmitry_(on)_bpoww.com | |
Phone | +371 22050544 |
Fax | + |
![]() |
Last update: 2016-11-24 12:36:45 #!/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" |