Results 1 to 4 of 4

Thread: Quickly Show All PHP Errors

  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

  2. #2
    Administrator yilmaz's Avatar

    Info

    Test test test

    6 Reaction
    1
    1
    2
    1
    1

  3. The Following 2 Users Say Thank You to yilmaz For This Useful Post:

    yilmaz (26.03.23)

  4. #3
    Administrator yilmaz's Avatar

    Info

    Test test test

    6 Reaction
    1
    1
    2
    1
    1

  5. #4
    Administrator yilmaz's Avatar

    Info



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
  •