|
|
Organisation profile: The Connection
[ ID = 4810 ] | The Connection |
Organisation name | The Connection |
Short name or acronym | The Connection |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 11351 Rupp Drive |
Postal Code | 55337 |
City | Burnsville |
Country | United States |
Phone | +1 800-883-5777 |
Fax | + |
Email | sales_(on)_theconnectioncc.com |
Organisation URL | http://www.theconnectioncc.com |
Logo | Description |
|
The Connection® is a contact center/ call center specializing in inbound customer service, customer support and technical service. We offer 24x7,dedicated agent support providing live operator, email response, web chat, social media and online monitoring, and back office support. We provide nationwide service through three U.S. based call centers offering bilingual agents for multiple languages as well as speech recognition and analysis software. The Connection delivers engaging experiences designed to address the most complex call center and training challenges through a personalized, scalable approach unique to your organization. We provide outsource customer service solutions, call center consulting, training and curriculum development and scenario based eLearning. Request a demo or a free quote today!
|
| Contact |
Name | Business Development Melissa Hyvare |
Function | Business Development |
Department | Business Development |
Email | sales_(on)_theconnectioncc.com |
Phone | +1 800-883-5777 |
Fax | + |
Update this profile
|
Last update: 2016-12-20 19:47:36
#!/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"
|
|