Plugin Directory

Changeset 220956


Ignore:
Timestamp:
03/23/2010 03:47:36 PM (16 years ago)
Author:
agentc0re
Message:

Version 1.0.1 - Bug fix that caused some header issues and feeds to become invalid. Changed the output if the login failed to make more sense and added some debug output to help troubleshoot the issue. Added some trouble shooting steps in the README.txt and noted that curl is required for this plugin to work.

Location:
google-adsense-summary/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • google-adsense-summary/trunk/README.txt

    r220736 r220956  
    44Donate link:  http://learnix.net
    55Email:  gas (at) learnix (dot) net
    6 Tags:  google, adsense, stats, summary, tracking, wordpress, plugin, widget
     6Tags:  google, adsense, stats, summary, tracking, wordpress, plugin, widget, admin, advertising
    77Requires at least:  2.9.2
    88Tested up to:  2.9.2
    9 Stable version:  1.0.0
    10 Stable Tag: 1.0.0
     9Stable version:  1.0.1
     10Stable Tag: 1.0.1
    1111
    1212== Description ==
    1313Adds a dashboard widget displaying your adsense data in the following ranges: TODAY, YESTERDAY, LAST7DAYS, THISMONTH, LASTMONTH and ALLTIME.
    1414
     15This 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
     18For the module:
     19
     20* "cat /etc/httpd/php.ini | grep curl"
     21OR
     22* "cat ~/php.ini | grep curl"
     23
     24If the last two options don't work, consult your hosting provider as your php.ini is in some none standard location.
     25
    1526**IMPORTANT**
    1627
    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.
     28Upgrade to 1.0.1!  Major bug fix.
     29
     30As 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.
    1831
    1932== Features ==
     
    4659== Screenshots ==
    4760
    48 Screenshots violate the Adsense ToC.  Sorry.
     61Screenshots violate the Adsense ToC.
    4962
    5063== Frequently Asked Questions ==
     
    5972
    6073A.  No.
     74
     75
     76= Q.  I am getting a message that says "Login Attempt Failed"  What should I do? =
     77
     78A.  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
    6183
    6284
     
    80102== Changelog ==
    81103
    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  
    22/*
    33Plugin Name: Google Adsense Summary
    4 Plugin URI: http://learnix.net
     4Plugin URI: http://learnix.net/wordpress/
    55Description: Google Adsense Summary will check your adsense page and show you what you've earned.
    66It will display yesterdays, todays, this month, last month and last payment earnings.
    7 Version: 1.0.0
     7Version: 1.0.1
    88Author: agentc0re
    99Author URI: http://learnix.net
     
    608608            if(strpos($data, 'cookie functionality is turned off.')) {
    609609                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.");
    612616            } //end if
    613617
     
    776780    $gas_pluginSeries = new google_adsense_summary();
    777781} //End of Class Initialize
    778 ?> <!-- End of Main plugin PHP TAG -->
     782?>
Note: See TracChangeset for help on using the changeset viewer.