| I Can't Access My Adsense Reports for the past half hour - is this bad news? |
moneyraker

msg:1380337 | 7:43 pm on Mar 26, 2005 (gmt 0) | I can't access the Google Adsense site for the past half hour or so, preventing me from doing my newbie-checking-adsense-earnings-every-15-minutes ritual. I'm really worried because this might mean something. Anybody out there experiencing the same thing?
|
moneyraker

msg:1380338 | 8:50 pm on Mar 26, 2005 (gmt 0) | Whew! I finally got in! I was worried that my IP was being blocked by Google and that a dreaded email is already in my mailbox. I live another day! Sorry for the over-reaction, guys...
|
Eterion

msg:1380339 | 9:56 pm on Mar 26, 2005 (gmt 0) | Aww how cute! What a cute reaction! I think when I finally decide to put AdSense on my page, I'll probably run into the same ritual as you did. SO I can empathize. =)
|
dollarshort

msg:1380340 | 3:09 am on Mar 27, 2005 (gmt 0) | I check my account and e-mail every 15 minutes.
|
incrediBILL

msg:1380341 | 3:25 am on Mar 27, 2005 (gmt 0) | | newbie-checking-adsense-earnings-every-15-minutes ritual |
| Sadly, that ritual doesn't seem to go away with time, it's like watching your stocks trade during the day, it's an obsession. I'm planning on installing a server-side script that will access my account every 30 minutes and email the amount to my cell phone so I don't wig out from withdrawl like I did when we took a trip 3 weeks ago. When we finally got to my mom's house 5 hours away I had to run to the computer, when we got in the hotel lobby I ran to their computer. I'd probably be better off doing heroin as I can take it with me.
|
swoop

msg:1380342 | 3:46 am on Mar 27, 2005 (gmt 0) | SysSense is a little automatic freeware AdSense checker that helps treat the symptoms, if not the disease. Available from SingersCreations.com, it checks every few minutes and displays your AdSense results in a little popup at the bottom of your monitor. I requested of the author that he add a logging function, to write all the results to a spreadsheet-friendly log file...no word on whether he will. Those spreadsheets could provide hours of entertainment to us addicts.
|
Goober

msg:1380343 | 4:05 am on Mar 27, 2005 (gmt 0) | I cant wait to check my earnings. I am up to the low 2 dollar range for this month. The new SysSense program now has me staring at my toolbar instead of logging in! HA. I am pitiful. Goober
|
tebrino

msg:1380344 | 4:14 am on Mar 27, 2005 (gmt 0) | Is there any possibility that this small app sends your earnings info to its creator? In any case, app that sends SMS or e-mail to my phone is much more convenient and it's also free - developed by WW members
|
incrediBILL

msg:1380345 | 4:19 am on Mar 27, 2005 (gmt 0) | Thanks Swoop - just installed SysSense and it works like a charm! Now if I can just get those amounts emailed to my cell phone I'm good to go.
|
tebrino

msg:1380346 | 4:20 am on Mar 27, 2005 (gmt 0) | You can, search this board for script
|
incrediBILL

msg:1380347 | 4:22 am on Mar 27, 2005 (gmt 0) | I've seen one script before, but searching this board is less fun than dental surgery
|
tebrino

msg:1380348 | 4:26 am on Mar 27, 2005 (gmt 0) | Dental surgery is not fun, so here it is: <? $username="uername@email.com"; $password="pass"; $cookie="/mywebsite.com/adsense/cookiefile"; $log="/mywebsite.com/adsense/adsense.log.txt"; $destination="/adsense/reports-aggregate?product=afc&dateRange.dateRangeType=simple&dateRange.simpleDate=today"; $postdata="destination=".urlencode($destination)."&username=".urlencode($username)."&password=".urlencode($password)."&null=Login"; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL,"https://www.google.com/adsense/login.do"); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"); curl_setopt ($ch, CURLOPT_TIMEOUT, 20); curl_setopt ($ch, CURLOPT_FOLLOWLOCATION,1); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie); curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie); curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata); curl_setopt ($ch, CURLOPT_POST, 1); $result = curl_exec ($ch); curl_close($ch); preg_match('/\<tr class\="totals"\>.*\<td.*\>.*\<\/td\>.*\<td.*\>(.*)\<\/td\>.*\<td.*\>(.*)\<\/td\>.*\<td.*\>(.*)\<\/td\>.*\<td.*\>(.*)\<\/td\>.*\<td.*\>(.*)\<\/td\>.*<\/tr>/simU', $result, $array); foreach ($array as $key => $value) {$array[$key] = trim($value, "\x22\x27\n\r ");} // strip $ % , here if desired list($full,$Impressions,$Clicks,$Rate,$CPM,$Earnings) = $array; putenv('TZ=US/Pacific'); // match Google time no matter where you or your serverlive $output=date("Y-m-d H:i:s")." \t ".$Impressions." \t ".$Clicks." \t ".$Rate." \t".$CPM." \t ".$Earnings."\r\n"; if ($handle = fopen($log, 'a')) {fwrite($handle, $output); fclose($handle);} else {echo "error writing";} //mail("5555555555@mobile.att.net", "Adsense report", $output, "From: Adsense"); mail("myemail@email.com", "Adsense report", $output, "From: Adsense"); ?>
|
incrediBILL

msg:1380349 | 4:33 am on Mar 27, 2005 (gmt 0) | LMAO - thanks tebrino I'm really not THAT lazy, but you're a true blue time saver :)
|
|
|