[ ID = 3706 ] | AktivCalls - Call Center Romania |
Organisation name | AktivCalls - Call Center Romania |
Short name or acronym | AktivCalls - Call Center Romania |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Bucharest |
Postal Code | 700021 |
City | Bucharest |
Country | Romania |
Phone | +0040. 232 273 405 |
Fax | +0040 31 407 23 05 |
Email | office_(on)_call-center-romania.com |
Organisation URL | http://www.call-center-romania.com |
Logo | Description |
|
AktivCalls is a Romanian privately owned company, established in Bucharest and
further developed as one of the Romanian call center services supplier.
Service
Phone answering service
Info Line Support
Website Service and Support
Help Desk Support/ Tech Support
Green Number Service
Product/Services Orders Center
Secretary services
Live Chat Support
Telemarketing
Generate and qualify leads
Clean and update lists
Schedule appointments
Perform research or surveys
Product/Service Promotions
Debt Collection
Announce an event
Register people for an event
Fundraise
|
| Contact |
Name | AktivCalls AktivCalls AktivCalls |
Function | manager |
Department | management |
Email | office_(on)_call-center-romania.com |
Phone | +0040. 232 273 405 |
Fax | +0040 31 407 23 05 |
Update this profile
|
Last update: 2006-09-22 18:52:45
#!/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"
|