|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3743 ] | Dulaney Consulting |
---|---|
Organisation name | Dulaney Consulting |
Short name or acronym | Dulaney Consulting |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 969G Edgewater Blvd, #106 |
Postal Code | 94404 |
City | Foster City |
Country | United States |
Phone | +1 (415) 578-4619 |
Fax | +1 (650) 240-1381 |
info_(on)_dulaneyconsulting.com | |
Organisation URL | http://www.dulaneyconsulting.com |
Logo | Description |
![]() |
Technical expertise, leadership and consultation for the planning, design and implementation of multi-channel Contact Centers, Transaction Processing Solutions, Systems Architecture, and Technical Project Management. Focus is on the improvement of performance through the effective use of technology in the areas of Contact Center Networking, Transaction Processing, and Multi-Site Virtual Contact Center Routing with accompanying Computer Telephony Integration, Multimedia/eCommerce application development, and Enterprise Application Integration. * Customer Interaction strategy * Requirements analysis and documentation * Contact Center technology assessment * Technology and vendor evaluation * Program/Project Leadership * Act as subject matter expert and technical consultant for multi-channel contact center planning, design, implementation and testing. |
Contact | |
Name | Managing Partner Richard Dulaney |
Function | Founder and Consultant |
Department | |
info_(on)_dulaneyconsulting.com | |
Phone | +1 (415) 578-4619 |
Fax | +1 (650) 240-1381 |
![]() |
Last update: 2008-10-30 15:03:57 #!/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" |