|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4656 ] | GPG |
|---|---|
| Organisation name | SC 'GPG Consulting' SRL |
| Short name or acronym | GPG |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | str. Alba Iulia 75, bloc V, et. 9, of.8 |
| Postal Code | MD2071 |
| City | Chisinau |
| Country | Moldova, Republic of |
| Phone | +373 22 588969 |
| Fax | +373 22 588969 |
| info_(on)_gpg-callcenter.net | |
| Organisation URL | http://gpg-callcenter.com/en/ |
| Logo | Description |
![]() |
GPG Consulting has more than 7 years experience, covering most of the BPO services. Our operations facility is located in Chisinau, Republic of Moldova. We gather over 250 multilingual call operators who possess 7 fluently spoken and written languages including English, French, Spanish, German, Italian, Portuguese, Romanian, Ukrainian and Russian. Our team has professional domain knowledge in various industries such as: E-commerce solutions, Retail, Wholesale, Travel and Tourism, Telecommunications, Healthcare, Educational services, Financial services and Energy service providers. |
| Contact | |
| Name | Mr. Vladimir Zaraceanschi |
| Function | Business Development Officer |
| Department | English/Russian Department |
| vladimir.z.gpg_(on)_gmail.com | |
| Phone | +373 68158087 |
| Fax | + |
|
|
Last update: 2014-05-12 12:57:15 #!/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" |