PHP troubleshooting

From KOP KB
Revision as of 22:12, 19 May 2015 by ReMaster (talk | contribs) (Created page with "Put these two lines at the top of any php file possibly having errors but not showing them <syntaxhighlight lang=php"> error_reporting(E_ALL); ini_set('display_errors', 1); </...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Put these two lines at the top of any php file possibly having errors but not showing them

error_reporting(E_ALL);
ini_set('display_errors', 1);