|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4726 ] | Valoris Center |
---|---|
Organisation name | Valoris Center SRL |
Short name or acronym | Valoris Center |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Sos Dudesti-Pantelimon, Nr 42, Et 7, Cladirea Rams, Sector 3 |
Postal Code | 33094 |
City | Bucharest |
Country | Romania |
Phone | +40 215299929 |
Fax | +40 212550003 |
contact_(on)_valoris.ro | |
Organisation URL | http://www.valoris.ro |
Logo | Description |
![]() |
Valoris Center is one of the largest Romanian private owned companies in the contact center market, as it stands among the industrys top 10 players. The companys services portfolio includes both inbound and outbound activities, such as customer support, client infoline, telemarketing, phone surveys and more. |
Contact | |
Name | Mrs Carmen Stoian |
Function | Sales & Marketing Manager |
Department | Sales & Marketing |
contact_(on)_valoris.ro | |
Phone | +40 215299929 |
Fax | + |
![]() |
Last update: 2015-01-27 13:06:14 #!/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" |