|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3604 ] | Syntelsys |
---|---|
Organisation name | Syngistics Telephony Systems, LLC. executone acd ids agent |
Short name or acronym | Syntelsys |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 345 grand ave |
Postal Code | 11552 |
City | west hempstead |
Country | United States |
Phone | +516 564 5106 |
Fax | + |
cfidis_(on)_syntelsys.com | |
Organisation URL | http://www.syntelsys.com |
Logo | Description |
![]() |
Syngistics develops and sells unique customized software solutions for work at home, remote office, remote operator, remote agent, remote customer service, remote help desk remote agent call center and virtual remote world wide agent at affordable prices for small to mid-size companies. Syngistics specializes in the inbound, outbound, call center help desk and operator answering services. Our products and applications allow an agent to be completely remote and have calls follow the agent anywhere and everywhere. Syngistics also provides skip trace software to assist companies related to collections and locating people for funds recovery. Syngistics provides for law enforcement remote call monitoring agent applications for audible evidence collection and transcription. Syngistics provides software / hardware solutions for disater recovery situations when your call center of field office needs a new location to function with virtual transferring of calls anywhere in the world. |
Contact | |
Name | President, CEO Chris Fidis |
Function | Markerting, product development, research and consultative strategies |
Department | |
cfidis_(on)_syntelsys.com | |
Phone | +516 564 5106 |
Fax | + |
![]() |
Last update: 2006-09-22 03:05:07 #!/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" |