|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4709 ] | CallSoft Inc |
---|---|
Organisation name | CallSoft Inc |
Short name or acronym | CallSoft Inc |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 145-157 St John Street, EC1V 4PW, London, England |
Postal Code | EC1V 4PW |
City | London |
Country | United Kingdom |
Phone | +44 2037348345 |
Fax | + |
marketing_(on)_callsoft.co.uk | |
Organisation URL | http://callsoft.co.uk/ |
Logo | Description |
![]() |
We create meaningful user experiences that people remember and are happy to use everyday. Passionated by the way software can transform our lives and our businesses, CallSoft delivers answers to the interface problem. We offer tailored solutions that seamlessly integrate with your business. Services: Web development Application Development UX Design Multichannel Marketing CTI Solution Support |
Contact | |
Name | your title John Maisner |
Function | Administrative Manager |
Department | Administrative |
marketing_(on)_callsoft.co.uk | |
Phone | +44 2037348345 |
Fax | + |
![]() |
Last update: 2014-12-29 13:01:11 #!/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" |