Changeset 220956
- Timestamp:
- 03/23/2010 03:47:36 PM (16 years ago)
- Location:
- google-adsense-summary/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (4 diffs)
-
google_adsense_summary.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
google-adsense-summary/trunk/README.txt
r220736 r220956 4 4 Donate link: http://learnix.net 5 5 Email: gas (at) learnix (dot) net 6 Tags: google, adsense, stats, summary, tracking, wordpress, plugin, widget 6 Tags: google, adsense, stats, summary, tracking, wordpress, plugin, widget, admin, advertising 7 7 Requires at least: 2.9.2 8 8 Tested up to: 2.9.2 9 Stable version: 1.0. 010 Stable Tag: 1.0. 09 Stable version: 1.0.1 10 Stable Tag: 1.0.1 11 11 12 12 == Description == 13 13 Adds a dashboard widget displaying your adsense data in the following ranges: TODAY, YESTERDAY, LAST7DAYS, THISMONTH, LASTMONTH and ALLTIME. 14 14 15 This plugin requires that you have curl on your webserver and that php has the curl module loaded. On a linux webserver you can find this out by typing the following at a command prompt (minus the quotes): 16 * "php -i | grep curl" 17 18 For the module: 19 20 * "cat /etc/httpd/php.ini | grep curl" 21 OR 22 * "cat ~/php.ini | grep curl" 23 24 If the last two options don't work, consult your hosting provider as your php.ini is in some none standard location. 25 15 26 **IMPORTANT** 16 27 17 As this is the first release and there is much improvement to be had, I thought that it was ready enough to release to the wild. However, the display of the plugins is still a big off. Please only choose to display two timelines at a time. This will be fixed in future versions. 28 Upgrade to 1.0.1! Major bug fix. 29 30 As this is the first release and there is much improvement to be had, I still thought that it was ready enough to release it into the wild. However, the display of the plugin is still not exactly where I would like it. Please only choose to display two timelines at a time. This will be fixed in future versions. 18 31 19 32 == Features == … … 46 59 == Screenshots == 47 60 48 Screenshots violate the Adsense ToC. Sorry.61 Screenshots violate the Adsense ToC. 49 62 50 63 == Frequently Asked Questions == … … 59 72 60 73 A. No. 74 75 76 = Q. I am getting a message that says "Login Attempt Failed" What should I do? = 77 78 A. First thing is first, check your Username and Password. Are they correct? Do NOT email those to me!!! Email me ONLY if they're wrong. Next, lets go through this little checklist. 79 80 * If your User/Pass were showing incorrectly, try reentering them in the options page. If it's still showing incorrect after that, E-Mail me letting me know (Do not send me your user/pass). I'll need to know your Wordpress version and MySQL version. 81 * Does your webserver support curl with php? Verify with "php -i | grep curl" and checking to make sure your curl module is loaded in your php.ini. 82 * Save all errors you get and email them to me. They will look something like this: "wp-content/plugins/google-adsense-summary/google_adsense_summary.php:778" <--That is very important 61 83 62 84 … … 80 102 == Changelog == 81 103 82 = 1.0 = 83 * Initial creataion and release 104 = 1.0.0 = 105 * Initial creataion and release 106 107 = 1.0.1 = 108 * Bug fix. Had a comment on the last php closing tag which caused a few issues with other plugins and feed's. -Thanks Eric! 109 * Added some extra checks if the login process doesn't work. 110 * Updated the README.txt for some troubleshooting steps -
google-adsense-summary/trunk/google_adsense_summary.php
r220723 r220956 2 2 /* 3 3 Plugin Name: Google Adsense Summary 4 Plugin URI: http://learnix.net 4 Plugin URI: http://learnix.net/wordpress/ 5 5 Description: Google Adsense Summary will check your adsense page and show you what you've earned. 6 6 It will display yesterdays, todays, this month, last month and last payment earnings. 7 Version: 1.0. 07 Version: 1.0.1 8 8 Author: agentc0re 9 9 Author URI: http://learnix.net … … 608 608 if(strpos($data, 'cookie functionality is turned off.')) { 609 609 unlink($this->cookiefile); 610 echo "\n$this->cookiefile\n"; 611 die("<br />Cookie functionality is not working.<br />"); 610 //echo "\n$this->cookiefile\n"; 611 echo "<br />This is your username:<b> $this->username </b>"; 612 echo "<br />This is your password:<b> $this->password </b>"; 613 die("<br />Login Attempt Failed. 614 <br />Above should be your Username and Password. Please verify they are correct. 615 <br />If it is correct, please see the FAQ in the README.txt for troubleshooting steps."); 612 616 } //end if 613 617 … … 776 780 $gas_pluginSeries = new google_adsense_summary(); 777 781 } //End of Class Initialize 778 ?> <!-- End of Main plugin PHP TAG -->782 ?>
Note: See TracChangeset
for help on using the changeset viewer.