|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2731 ] | 1 on 1 Contact Solutions |
---|---|
Organisation name | 1 on 1 Contact Solutions |
Short name or acronym | 1 on 1 Contact Solutions |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 2398 E. Camelback Rd. Suite 110 |
Postal Code | 85016 |
City | Phoenix |
Country | United States |
Phone | + +1 602 840 8712 |
Fax | + +1 602 648 7339 |
info_(on)_contact1on1.com | |
Organisation URL | http://www.contact1on1.com |
Logo | Description |
![]() |
One on One Contact Solutions was established to help companies turn every contact into a loyal Customer. Our One Touch methodology allows companies to achieve this goal by incorporating best practice contact center processes and methodologies into their Customer relationship model. These practices are integrated with customer relationship management and self service technology recommendations and the employee training systems to support them. |
Contact | |
Name | Mr. Steve Pizzagoni |
Function | President |
Department | Executive |
spizzagoni_(on)_contact1on1.com | |
Phone | + +1 602 840 8712 |
Fax | + +1 602 648 7339 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |