How is it going to look to shoppers coming from AOL when there IP
changes everytime they add something to their cart? Most are probably
not aware that that is happening.
Jim
BruceM wrote:
Chris,
I can attest to the fact that it acts as a deterent if a would be crook
thinks he is at risk of being caught. A few years ago we added the following
to our www site and the fraudulent orders dropped in half.
We do not tolerate credit card fraud, which is a felony. If it is determined
that an attempted order is fraudulent, we will report all information to the
FBI, at Internet Fraud Complaint Center (IFCC).
If we can prevent more fraudulent orders by adding the IP address then its
worth the effort because if a fraudulent order is placed we still have to go
through all of the effort we normally do for a legitimate order.
"Chris" <sawdust@mlcswoodworking.com> wrote in message
news:3EBFF4E4.A689B911@mlcswoodworking.com...
OK, I'll bite.
I've been following this thread with interest. Sure, it's a nice "Wow
Check it
Out!" kind of technical trick, especially to the less tech-savvy shopper,
and
perhaps a slight deterrent to the casual con. But, do you folks really
think the
return is going to be worth all this effort?
I've actually resolved the host name on 2 orders after the fact to help
track
down fraudulent orders. I was able to resolve to an ISP and even contacted
them.
They indicated that the "could" match the IP to a specific customer, but
wouldn't release that information without a subpoena. Not wanting to take
th
time and effort involved in that, we let it drop.
Just curious how people see this working as far as real deterrent to
falsified
orders. Also, how accurate is it really?
Chris
MLCS
Rob wrote:
Here are some webpages that tell you how to read and wrtie cookies using
Javascript:
http://www.js-examples.com/search/?op=2&q=28http://www.js-examples.com/example/?ex=700Combine this with a little SSI call for the IP address, and you could
easily
put the IP number in any page or checkout screen using Javascript.
Rob
Your #3 might work best, and if you were to aet that IP in a cookie on
your shtml or your custom php or cgi page, then you could use
JavaScript
on the shopping cart to read the cookie (not sure how that is done in
JavaScript, but I have seen it done before).
-Loren
3. You can use an shtml page with an SSI call to get the IP number
through a
script or by referencing the IP number environment variable. Problem
with
this solution is it will only work on the catalog pages. It will
*not*
work
on the checkout page, as the checkout page is an already executed
CGI
script, so you cannot apply SSI tags to it in most cases.
http://javascriptkit.com/script/script2/displayip.shtmlYou also have to name your page ending in .shtml in most
circumstances
to
have SSI tags parsed by the web browser.