Results 1 to 4 of 4

Thread: Quickly Show All PHP Errors

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Administrator yilmaz's Avatar

    Info

    Quickly Show All PHP Errors

    Generally, php error displaying is turned off by default on servers.


    Copying the code below and adding it to the beginning of the page will allow you to start seeing php errors.

    PHP Code:
    1. error_reporting(E_ALL);
    2. ini_set("display_errors"1); 
    6 Reaction
    1
    1
    1
    1
    1
    1

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Members who have read this thread: 1

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •