|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3720 ] | Accent Contact Centers |
|---|---|
| Organisation name | Accent Contact Centers |
| Short name or acronym | Accent Contact Centers |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | Jiron Sinchi Roca 2728 Piso 8 S |
| Postal Code | LI14 |
| City | Lima |
| Country | Peru |
| Phone | +511 7071000 |
| Fax | + |
| info_(on)_accent.com.pe | |
| Organisation URL | http://www.accent.com.pe |
| Logo | Description |
![]() |
Accent is a world-class Contact Centre located in Lima, Peru. Our management team has 16 years of experience in the industry and has successfully managed accounts for companies such as Sprint, AT&T, Wells Fargo, TIM, Pizza Hut and others. All our agents are bilingual and are familiar with the American Culture because of its impact in Peruvian daily life. |
| Contact | |
| Name | V.P Of Operations Carlos Bieberach |
| Function | Operations |
| Department | Opertations |
| cbieberach_(on)_accent.com.pe | |
| Phone | +511 7071006 |
| Fax | + |
|
|
Last update: 2008-01-15 16:46: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" |