|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4612 ] | OABPO |
---|---|
Organisation name | Open Access BPO |
Short name or acronym | OABPO |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Suite 309 1980 Festival Plaza Dr., |
Postal Code | 89135 |
City | Las Vegas |
Country | United States |
Phone | +1 650-276-5399 |
Fax | +1 |
marketing_(on)_openaccessmarketing.com | |
Organisation URL | https://www.openaccessbpo.com |
Logo | Description |
![]() |
Open Access BPO is a Las Vegas based boutique-style outsourcing firm that offers voice, non-voice, and back office solutions from its operation sites in Makati and Davao, Philippines; and Taipei, Taiwan. |
Member of elsnet | Contact |
Name | Matthew Narciso |
Function | Advertiser |
Department | Marketing |
marketing_(on)_openaccessmarketing.com | |
Phone | +1 888-.888-1519 |
Fax | + |
![]() |
Last update: 2016-03-02 02:12:51 #!/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" |