I need to figure out the best way to determine if someone is the actual owner of the website. I do not mean only the domain, although in many cases this may be so.
My first wish was to get them to put a special comment in their HTML that my program could clear. eg:.
One possible problem with this approach is that someone could theoretically add it to comments on their page or some other way to add content. Although I am not sure that everything that I have cannot be achieved.
My other idea was that I also planned to offer a JavaScript widget to just clear it, although I did not want them to force them to add a widget.
<script type="text/javascript" src="http://yoursite.com/widget/widget/A4923D2342JF"></script>
What other mechanisms can be used to determine ownership / control on a website?
source
share