|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3162 ] | PASS |
|---|---|
| Organisation name | PASS IT Consulting Pvt Ltd |
| Short name or acronym | PASS |
| Organisation type | Multimedia Call/Contactcenter solutions Provider |
| Activity type | Business communication solutions |
| Address | #803, Paigahplaza, basheerbagh |
| Postal Code | 500029 |
| City | Hyderabad |
| Country | India |
| Phone | + +914055625045 |
| Fax | + +914055668463 |
| Rao.Aakula_(on)_pass-consulting.com | |
| Organisation URL | http://www.pass-consulting.com |
| Logo | Description |
|
|
PASS Consulting Group division PASS-BCS, flagship product, CosmoCall Universe, is a carrier-class system providing true next generation capabilities for mission critical contact center applications.CosmoCall Universe supports multi-channel customer interactions including telephone, web chat, web voice, web video, web collaboration, email and voicemail in one high capacity, high availability and multi-tenant platform. CosmoCall Universe is a complete, unified contact center suite that includes CTI, predictive dialing, IVR, multimedia recording and a complement of powerful management applications. |
| Contact | |
| Name | Business Manager A.K Rao |
| Function | Business Development |
| Department | Marketing |
| rao.aakula_(on)_pass-consulting.com | |
| Phone | + +914055625045 |
| Fax | + +914055668463 |
|
|
Last update: 2003-05-27 13:13:50 #!/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" |