|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1692 ] | TeleMagic |
---|---|
Organisation name | TeleMagic |
Short name or acronym | TeleMagic |
Organisation type | Company |
Activity type | Call centers |
Address | 17950 Preston Rd Ste 800 |
Postal Code | 75252 |
City | Dallas |
Country | United States |
Phone | + +1 972 818 3900 |
Fax | + +1 972 733 4251 |
lcheatham_(on)_sageus.com | |
Organisation URL | http://www.telemagic.com |
Logo | Description |
![]() |
TeleMagic, first released in 1985, was one of the early innovators of customer relationship management software. As a fully customizable, three level relational database, TeleMagic has expanded its product line to include TeleMagic NetClient, the Browser Edition, Prospect Module and the Auto Responder. |
Contact | |
Name | Ms Leah Cheatham |
Function | Director |
Department | Public Relations and Marketing |
lcheatham_(on)_sageus.com | |
Phone | + +1 972 818 3900 ext 3321 |
Fax | + +1 972 733 4251 |
![]() |
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" |