Google won't say why?

Google has kicked me off of adsense.  There used to be ads on this site, and without any sort of explanation they have shut down my account.  I have to admit, I'm normally a staunch defender of all things Google, and especially like Sites, but after this experience with adsense, I'm starting to rethink that attitude.  Google, you're only going to make enemies with the attitude that you can do whatever you want without explanation to anybody.
To add insult to injury, they also put a stop on the last check, so that has cost me $5 on top of not getting the over two hundred dollars that I had earned.  I would really love to know what I did wrong guys, but since helping us poor smucks avoid your wrath is against your policy, you're leaving me no choice but to leave Google.

PHP Tricks

The following function can be included and then used to write a new user/pass for http digest authentication with apache.


 <?php

        // update htpasswd file with user/pass
        function htpasswd($filename,$user,$pass)
        {

                $pw=array();

                if (file_exists($filename))
                {
                        foreach (file($filename) as $line)
                        {
                                $pair=explode(':',$line);
                                $pw[$pair[0]]=chop($pair[1]);
                        }
                }

                $pw[$user]=crypt($pass,CRYPT_STD_DES);

                $fp=fopen($filename,"w+");
                while (list($u,$p)=each($pw))
                        fputs($fp,"$u:$p\n");
                fclose($fp);
        }

?>

Sign in  |  Recent Site Activity  |  Terms  |  Report Abuse  |  Print page  |  Powered by Google Sites