|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4865 ] | Aptus |
---|---|
Organisation name | Aptus Global Solutions Inc. |
Short name or acronym | Aptus |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 20/F AIC Burgundy Tower ADB Avenue Ortigas Center |
Postal Code | 1605 |
City | Pasig City |
Country | Philippines |
Phone | +63 27063554 |
Fax | +63 27063554 |
sales_(on)_aptus.ph | |
Organisation URL | http://www.aptus.ph |
Logo | Description |
![]() |
Outsourcing your business functions does not only free you from the unnecessary burden of recruiting the right talent, training and staff management. More importantly, outsourcing allows you to focus on your core business. |
Contact | |
Name | Mr. Ben Juson |
Function | Managing Director |
Department | Executive |
ben.juson_(on)_aptus.ph | |
Phone | +63 27063554 |
Fax | +63 27063554 |
![]() |
Last update: 2017-03-06 14:25: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" |