thanks DAjed, I appreciate your response.
1) Isn't the IP address in REMOTE_ADDR that of the user? If so, there is no way for me to determine and manage all the IP addresses of the various people who may visit thier web site.
2) The list of best wines is not something that the companies will have behind a password. I want to ensure that only ACME company shows the list on their site and no other company is showing it. They pay for the priviledge of us managing and displaying these pages. However, the company does not have to ask their user community to login to see it.
3) The "best wines" scenario is a simplied representation of the site; the actual data is far more complex and supports things like searching, calculations and more that cannot be done in a static view.
Perhaps an analogy of this would be something like a news feed, stock reports, or weather conditions. Web sites pay the provider of this information to display it on thier site. If I cut and paste the weather code out of their home page and try to run it on my home page, would it work?
(the main difference between that and my case is that I have many large pages, not a small page insert like a stock graph that would run from javascript)
Thanks !
Main Topics
Browse All Topics





by: DAJEDPosted on 2006-11-16 at 11:04:38ID: 17958702
You have options:
1) cgi.remote_addr:
- Check this value, if it is in the list of valid IP addresses for the company, then good
2) setup a login-page:
- ask for a company ID (that of course only they know)
- get user name and password
- verify and let in if all pass your tests
3) Generate a report of their best wines, great a pdf and email it to them on a set schedule (once a week, every 3 hours, etc)