|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4242 ] | 3Clogic |
---|---|
Organisation name | 3Clogic INC |
Short name or acronym | 3Clogic |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 9700 Great Seneca Hwy Rockville, MD 20850 |
Postal Code | |
City | Rockville |
Country | United States |
Phone | +1 877-462-6021 |
Fax | + |
Organisation URL | http://www.3clogic.com |
Logo | Description |
![]() |
3CLogic offers a complete hosted and premise based Contact Center Solution. Based on innovative VoIP Telephony Application Grid (TAG) technology. We offer Multiple Dialers Predictive, Auto, Preview, Leads Management and Data Import, IVR/ Voice Broadcasting, AMD Detection, Web Call Back, Campaign Management, DNC Compliance, Conference Call /Transfer/Chat, Call Recording, Call Scripting, Whisper, barge-in, coaching, Third Party CRM integration |
Contact | |
Name | Webmaster Tanvir Alam |
Function | Visualizer |
Department | Marketing |
webmaster_(on)_3clogic.com | |
Phone | +1 877-462-6021 |
Fax | + |
![]() |
Last update: 2010-03-12 09:23: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" |