Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 311441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:55:31+00:00 2026-05-12T07:55:31+00:00

I don’t know if the term I’m using is right, but what I’m looking

  • 0

I don’t know if the term I’m using is right, but what I’m looking for is something similar to what you get with zend server. Take a look at this.

It looks like on an error, it dumps the request along with a stack trace and function parameters as well as some other info. It lets you view it in a nice interface. I know this wouldn’t be hard to make myself as you can always do error callbacks, but if something like this exists (for free) I’d prefer to use it instead of reinventing the wheel.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:55:31+00:00Added an answer on May 12, 2026 at 7:55 am

    I don’t don’t of any tool that will do that automatically for you ; but it is not hard to develop, I think… Still, I admit, it will take you some time 🙁

    Just to throw in a few notes, the best solution that comes to my mind to log the errors is :

    • register your own error handler with set_error_handler
    • code the function, so that it logs errors + GET/POST data
      • maybe that could/would/should be done in some kind of database, or structured file (an SQLite Database, maybe : light, fast, easy to use, doesn’t depend on an external DB server, …), and not just plain files ; would be easier to deal with later on.
    • develop the “reporting” application…
      • That’s the thing that will take some time, though, as you said…

    Using the example that’s given on the manual page, something like this would probably do : first, declare your error handling function :

    function myErrorHandler($errno, $errstr, $errfile, $errline)
    {
        $str = '';
        switch ($errno) {
            case E_USER_ERROR:
                $str .= "<b>My ERROR</b> [$errno] $errstr<br />\n";
                $str .= "  Fatal error on line $errline in file $errfile";
                $str .= ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n";
                break;
            case E_USER_WARNING:
                $str .= "<b>My WARNING</b> [$errno] $errstr<br />\n";
                break;
            case E_USER_NOTICE:
                $str .= "<b>My NOTICE</b> [$errno] $errstr<br />\n";
                break;
            default:
                $str .= "Unknown error type: [$errno] $errstr<br />\n";
                break;
        }
        $str .= print_r($_GET, true);
    
        $str .= "\n";
        file_put_contents(dirname(__FILE__) . '/log.txt', $str, FILE_APPEND);
    
        /* Don't execute PHP internal error handler */
        return true;
    }
    

    It gets informations of the error, prepares some specific error messages that depend on the error type, and put all that and a dump of $_GET to a file.

    (Of course, your webserver must be able to create / write to that file)

    Then, you register that handler :

    $old_error_handler = set_error_handler("myErrorHandler");
    

    And, finally, just to test, you trigger some errors :

    trigger_error("test of E_USER_ERROR", E_USER_ERROR);
    trigger_error("test of E_USER_WARNING", E_USER_WARNING);
    trigger_error("test of E_USER_NOTICE", E_USER_NOTICE);
    

    Now, provided you call the page with something like this : http://tests/temp/temp.php?a=10&test=glop&hello=world ; you will get an error log containing this :

    $ cat log.txt
    <b>My ERROR</b> [256] test of E_USER_ERROR<br />
      Fatal error on line 34 in file /home/squale/developpement/tests/temp/temp.php, PHP 5.3.0RC4 (Linux)<br />
    Array
    (
        [a] => 10
        [test] => glop
        [hello] => world
    )
    
    <b>My WARNING</b> [512] test of E_USER_WARNING<br />
    Array
    (
        [a] => 10
        [test] => glop
        [hello] => world
    )
    
    <b>My NOTICE</b> [1024] test of E_USER_NOTICE<br />
    Array
    (
        [a] => 10
        [test] => glop
        [hello] => world
    )
    

    In this case, it is quite an ugly mess… But you probably see the point ; now, up to you to build upon this to get precisely what you want 😉

    Of course, now, you also have to develop the reporting interface (user-friendly, fast, usable, and all that…) ; this will probably be the longest part to put in place 🙁

    And, unfortunatly, I do not know any tool that could help you…

    (Maybe, if you start developping something, it could be released as open source ? That would probably prove useful to others 😉 I might be interested for some projects, and I am sure I’m not the one 😉 )

    Still, have fun !

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 285k
  • Answers 285k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer check out variables here. They're pretty sweet. May 13, 2026 at 4:46 pm
  • Editorial Team
    Editorial Team added an answer Super straight-forward. I love the xsd tool. I have taken… May 13, 2026 at 4:46 pm
  • Editorial Team
    Editorial Team added an answer You need to specify the return page as a query… May 13, 2026 at 4:46 pm

Related Questions

Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
In order to apply a triggered animation to all ToolTip s in my app,
I've got a string that has curly quotes in it. I'd like to replace
I don't know when to add to a dataset a tableadapter or a query
I don't edit CSS very often, and almost every time I need to go

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.