|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0482 ] | Epicor Software Corporation |
---|---|
Organisation name | Epicor Software Corporation |
Short name or acronym | Epicor Software Corporation |
Organisation type | Other |
Activity type | Other Language or Speech Technology expertise |
Address | 18200 Von Karman |
Postal Code | 92612 |
City | Irvine, CA |
Country | United States |
Phone | + 1 949 585-4000 |
Fax | + 1 949 585-4091 |
e.info_(on)_epicor.com | |
Organisation URL | http://www.epicor.com |
Logo | Description |
![]() |
Epicor is a global leader dedicated to providing integrated enterprise resource planning (ERP), customer relationship management (CRM) and supply chain management (SCM) software solutions to midmarket companies around the world. Founded in 1984, Epicor serves over 20,000 customers in more than 140 countries, providing solutions in 33 languages. Epicor leverages innovative technologies like Web services in developing end-to-end, industry-specific solutions for retail, manufacturing, distribution, enterprise service automation, hospitality and pharmaceutical that enable companies to immediately drive efficiency throughout business operations and build competitive advantage. With the scalability and flexibility to support long-term growth, Epicor's solutions are complemented by a full range of services, providing a single point of accountability to promote rapid return on investment and low total cost of ownership. |
Contact | |
Name | |
Function | |
Department | |
e.info_(on)_epicor.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2006-05-03 19:52:35 #!/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" |