[ ID = 4773 ] | LLCC |
Organisation name | LL Contact Center |
Short name or acronym | LLCC |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Edificio Costa Beck 2do Nivel |
Postal Code | 11101 |
City | Tegucigalpa |
Country | Honduras |
Phone | +1888 4161563 |
Fax | +504 22329300 |
Email | sales_(on)_llcontactcenter.com |
Organisation URL | http://www.llcontactcenter.com |
Logo | Description |
|
Perfect English & Spanish Skills
Great Infrastructure
State of the art technology
200+ Seats
We have our own DIDs
Great experience in outbound & inbound campaigns
|
| Contact |
Name | Sales Manager Maria Casco |
Function | Obtain new campaign projects |
Department | Sales department |
Email | sales_(on)_llcontactcenter.com |
Phone | +1888 4161563 |
Fax | +504 22329300 |
Update this profile
|
Last update: 2016-05-04 23:00:12
#!/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"
|