|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4518 ] | PSG |
---|---|
Organisation name | Phone Support Group |
Short name or acronym | PSG |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 31 Mais Gaite |
Postal Code | Ht6110 |
City | Port Au Prince |
Country | Haiti |
Phone | +01 954-378-9774 |
Fax | +01 561-862-6074 |
admin_(on)_phonesupportgroup.com | |
Organisation URL | http://www.phonesupportgroup.com |
Logo | Description |
![]() |
Headquartered in Florida, Phone Support Group (PSG) operates one large call centre. The company offers customer service contact, technical support services, answering services, receptionist services, data entry, payment processing, and much more. PSG specializes in providing top notch support for various industries. Our support services range from small and mid-sized companies to large international companies. Our extensive experience allows us to assist companies in order to handle the questions and support needs of their customers. |
Contact | |
Name | Director McReginald Denis |
Function | Manage/Sales |
Department | coperate |
mdenis_(on)_phonesupportgroup.com | |
Phone | +01 954-378-9774 |
Fax | +01 561-862-6074 |
![]() |
Last update: 2012-10-31 20:04:39 #!/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" |