|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3439 ] | Romsourcing |
---|---|
Organisation name | SC Servit Consultanta SRL |
Short name or acronym | Romsourcing |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Stirbei Voda, No 17, 4th Floor,Ap 11 |
Postal Code | 22222 |
City | Bucharest |
Country | Romania |
Phone | + 0040213148627 |
Fax | + 0040213148627 |
romsourcing_(on)_yahoo.com | |
Organisation URL | http://www.romsourcing.com |
Logo | Description |
![]() |
Offshore Outsourcing To Romania Romsourcing provides live chat and email answering CSReps for online presence. The customer service representatives can assist the clients to finish an incomplete order, suggest complementary products and services to those already ordered, guide customers through the process of completing an order, or help them find a desired location within a web site |
Contact | |
Name | ceo claudiu dumitrescu |
Function | |
Department | |
romsourcing_(on)_yahoo.com | |
Phone | + 0040213148627 |
Fax | + 0040213148627 |
![]() |
Last update: 2004-10-13 17:13:59 #!/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" |