Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes: #34, #36, #79, #92, etc. #94

Open
wants to merge 51 commits into
base: master
Choose a base branch
from

Commits on Nov 15, 2012

  1. Added a check to see if session is started so it doesn't throw a warn…

    …ing about the session being started already.
    truckingsim committed Nov 15, 2012
    Configuration menu
    Copy the full SHA
    38511a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2012

  1. handle zlib output compression

    wesen committed Nov 28, 2012
    Configuration menu
    Copy the full SHA
    c2d94af View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2012

  1. moved turning off 'html_errors' into error/exception handlers, to pre…

    …serve xDebug's prettyfied var_dump()
    druu committed Dec 23, 2012
    Configuration menu
    Copy the full SHA
    19cf0fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8cbfb3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    91cb3fb View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2013

  1. Merge remote-tracking branch 'druu/fix_issue_34'

    Shaine Hatch committed Jan 19, 2013
    Configuration menu
    Copy the full SHA
    d7ac277 View commit details
    Browse the repository at this point in the history
  2. Remove trailing whitespace

    Shaine Hatch committed Jan 19, 2013
    Configuration menu
    Copy the full SHA
    41ff3c3 View commit details
    Browse the repository at this point in the history
  3. Clear all buffers defaults to true

    Shaine Hatch committed Jan 19, 2013
    Configuration menu
    Copy the full SHA
    0deeaa5 View commit details
    Browse the repository at this point in the history
  4. Don't run setup if not permitted by settings

    Shaine Hatch committed Jan 19, 2013
    Configuration menu
    Copy the full SHA
    dfa9743 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2013

  1. Check transfer encoding to prevent JS injection in binary

    Shaine Hatch committed Jan 23, 2013
    Configuration menu
    Copy the full SHA
    b0277e9 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'fix_binary_js_injection'

    Shaine Hatch committed Jan 23, 2013
    Configuration menu
    Copy the full SHA
    daee2f2 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2013

  1. Merge remote-tracking branch 'druu/master'

    Conflicts:
    	src/php_error.php
    Shaine Hatch committed Jan 30, 2013
    Configuration menu
    Copy the full SHA
    f1a77aa View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2013

  1. Configuration menu
    Copy the full SHA
    78cfb10 View commit details
    Browse the repository at this point in the history
  2. Add "allow_manual_report" option

    Allows use of the reportError() and reportException() functions even
    when the error handler is disabled (i.e. when isOn() returns false
    which would normally disable these functions' functionality.
    bradfeehan committed Mar 19, 2013
    Configuration menu
    Copy the full SHA
    b1fc9cd View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2013

  1. Fixed compatibility with Wamp (Displaying content)

    ** First commit for this project
    At he first time testing the code in Wamp, there were problems with the
    display due to the requirements of this software.
    PaulFasola committed Apr 14, 2013
    Configuration menu
    Copy the full SHA
    1199172 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2013

  1. Configuration menu
    Copy the full SHA
    2d1e473 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0aac492 View commit details
    Browse the repository at this point in the history
  3. Added display logic to displayError. I needed to add a parameter (the…

    … actual error code) so I've also amended the reportError(), where displayError() is called, to pass the error code.
    magobaol committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    ee8075a View commit details
    Browse the repository at this point in the history
  4. Cosmetic changes:

    - Added H3 css class
    - Added #error-code css class
    - Moved the error code inside an H3, shown below the error-title.
    magobaol committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    8dd1418 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2013

  1. Configuration menu
    Copy the full SHA
    04fa1fd View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2013

  1. Merge pull request #1 from JosephLenton/master

    fixed issue with slashes not being escaped, when replacement code is upl...
    krisxoofoo committed Oct 12, 2013
    Configuration menu
    Copy the full SHA
    123c2b2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from neiluJ/master

    fixed Code display when short_open_tag is Off
    krisxoofoo committed Oct 12, 2013
    Configuration menu
    Copy the full SHA
    4a8ceab View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2013

  1. Fix CSS

    snapshotpl committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    0ddeb9a View commit details
    Browse the repository at this point in the history
  2. Custom data feature

    snapshotpl committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    1a62b19 View commit details
    Browse the repository at this point in the history
  3. Change method to public

    snapshotpl committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    9a60f33 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2013

  1. Merge branch 'fix-css'

    snapshotpl committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    cdeecef View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2013

  1. 'zlib output compression' handler

    If you change zlib output compression setting in
    between ob_start, ob_end_clean or ob_end_flush, 
    you will get: ob_end_flush() failed to delete buffer zlib output compression.
    
    Added - 1853: 
    
     else if ( $handler === 'zlib output compression' ) {
        if (ob_get_level()) {
            while (@ob_end_clean());
        }
     }
    mihai-iorga committed Dec 30, 2013
    Configuration menu
    Copy the full SHA
    3e86e12 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2014

  1. extract the ACE JS editor and jQuery components into external files w…

    …hich are included in the output at runtime; this greatly reduces the size of the PHP file itself. It does not change the output size, but allows us to override the ACE and jQuery components if we already load our own copies of those anyhow: that way we prevent version collisions in the same webpage.
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    38ddfe2 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'remotes/Popolino/master' -- all PHP cod…

    …e is now contained within <?php ... ?> tag boundaries: no more use of 'shorthand notation'
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    e404630 View commit details
    Browse the repository at this point in the history
  3. Add "allow_manual_report" option

    Allows use of the reportError() and reportException() functions even
    when the error handler is disabled (i.e. when isOn() returns false
    which would normally disable these functions' functionality.
    bradfeehan authored and GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    3e951fc View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'remotes/krisxoofoo/master' -- enable th…

    …e ability to show the error *code* too.
    
    Conflicts:
    	src/php_error.php
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    4f649bf View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'remotes/snapshotpl/fixes'

    Conflicts:
    	src/php_error.php
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    6f3ad75 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    36c42e4 View commit details
    Browse the repository at this point in the history
  7. Merge remote-tracking branch 'remotes/bradfeehan/master' -- mark as m…

    …erged after cherry picking the 'allow_manual_report' feature commit.
    
    Conflicts:
    	src/php_error.php
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    ebe6abd View commit details
    Browse the repository at this point in the history
  8. fix xhr state check in php-error

    wesen authored and GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    a648ce9 View commit details
    Browse the repository at this point in the history
  9. - correct crash when the error code does not match any known value

    - correct bug in the default JS load paths for jquery and ACE.
    GerHobbelt committed Feb 1, 2014
    Configuration menu
    Copy the full SHA
    d166806 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2014

  1. Configuration menu
    Copy the full SHA
    e9f1a90 View commit details
    Browse the repository at this point in the history
  2. jquery 1.7.2 --> 2.0.4 update (using multiple jquery versions on a si…

    …ngle page is detrimental to your health ;-) hence upgraded to a version we are currently using ourselves )
    GerHobbelt committed Feb 8, 2014
    Configuration menu
    Copy the full SHA
    9a60143 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2014

  1. Configuration menu
    Copy the full SHA
    a9b29bd View commit details
    Browse the repository at this point in the history
  2. JSpretty run on the ACE code. Note that another JavaScript deobfuscat…

    …or/beautifier (The JavaScript Unminifier at http://www.centralinternet.com.br/javascript-beautifier) gave visually better code output but nuked the literal HTML elements embedded in some strings in the code, thus nuking the source code, while JSPretty (http://www.jspretty.com/) kept the code intact.
    GerHobbelt committed Feb 9, 2014
    Configuration menu
    Copy the full SHA
    e0bebe9 View commit details
    Browse the repository at this point in the history
  3. fix the config conditional checks (PHP defines) and set up the defaul…

    …t defines' (default is to NOT minify; the original PHP_Error did minify its own code but I don't want minified code in my 'deep debug' site output)
    GerHobbelt committed Feb 9, 2014
    Configuration menu
    Copy the full SHA
    ec4ab1b View commit details
    Browse the repository at this point in the history
  4. fix bug: backslashes were damaged in the namespace statement in the e…

    …xamples/class_not_found.php when saving the edited example file: the C-slashes should not have been stripped (tested on current Chrome (stable) and PHP 5.3.8 (WAMP))
    GerHobbelt committed Feb 9, 2014
    Configuration menu
    Copy the full SHA
    d6d776d View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2014

  1. Add support for nested output buffers

    This uses the ob_get_level command to work out how many output
    buffers we need to close before we make our own output.
    bullfrogchampion committed Oct 10, 2014
    Configuration menu
    Copy the full SHA
    ba1be6f View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2015

  1. updated jQuery

    GerHobbelt committed Jan 5, 2015
    Configuration menu
    Copy the full SHA
    0ce1c14 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2015

  1. typo fix

    GerHobbelt committed Jan 18, 2015
    Configuration menu
    Copy the full SHA
    f379589 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2016

  1. Merge pull request #1 from GerHobbelt/master

    master from GerHobbelt/PHP-Error
    kenorb committed Mar 24, 2016
    Configuration menu
    Copy the full SHA
    c7ba5b2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from bullfrogchampion/add_nested_ob_support

    Add support for nested output buffers
    kenorb committed Mar 24, 2016
    Configuration menu
    Copy the full SHA
    417cd1c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3 from druu/master

    Moved turning off 'html_errors' into error/exception handlers.
    kenorb committed Mar 24, 2016
    Configuration menu
    Copy the full SHA
    4496f1d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3cd4a48 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    11ff430 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #6 from goldeneagle/master

    handle zlib output compression
    kenorb committed Mar 24, 2016
    Configuration menu
    Copy the full SHA
    685122c View commit details
    Browse the repository at this point in the history