Organisation profile: Altitude Software
[ ID = 2073 ] | Altitude |
Organisation name | Altitude Software |
Short name or acronym | Altitude |
Organisation type | Software Company |
Activity type | Software for Multimedia Contact Centers |
Address | Alameda Fernão Lopes, 16 - 4º |
Postal Code | 1495-136 |
City | Algés, Lisbon |
Country | Portugal |
Phone | + +351 21 412 98 00 |
Fax | + +351 21 412 98 90 |
Email | info_(on)_altitude.com |
Organisation URL | http://www.altitude.com/ |
Logo | Description |
 |
Altitude Software (www.altitude.com) is a privately owned independent company and a technology leader in contact center solutions with the Unified Customer Interaction (uCI) product line. Altitude Software was founded in 1995 and serves over 600 customers of all sizes worldwide, either directly or through a wide network of partners. Altitude Software has 9 offices in 9 countries around the world.
|
| Contact |
Name | Miguel Lopes |
Function | VP, Product Marketing and Strategy |
Department | |
Email | mcl_(on)_altitude.com |
Phone | + +351 21 412 98 00 |
Fax | + +351 21 412 98 90 |
Update this profile
|
Last update: 2003-07-10 11:11:16
#!/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"
|
|