unnat93 Posted September 3, 2014 Share Posted September 3, 2014 Hello,i just install LAMP server.wrote simple code <?php #error_reporting(E_ALL); #printf "hello"; print "print_keyword."; ?> but in browser, it does not show me an error. i m using linux envionment. plz help. any help would be appriciable. Link to comment https://forums.phpfreaks.com/topic/290832-errors-not-giving-just-show-me-blank-page/ Share on other sites More sharing options...
jazzman1 Posted September 3, 2014 Share Posted September 3, 2014 what linux distro are you using? Link to comment https://forums.phpfreaks.com/topic/290832-errors-not-giving-just-show-me-blank-page/#findComment-1489808 Share on other sites More sharing options...
ginerjm Posted September 3, 2014 Share Posted September 3, 2014 Assuming that you are browsing a file/page/script with a ".PHP" extension, you could try turning on php error reporting (which you have partially commented out in your example: error_reporting(E_ALL | E_NOTICE); ini_set('display_errors', '1'); Add that after your php tag. Link to comment https://forums.phpfreaks.com/topic/290832-errors-not-giving-just-show-me-blank-page/#findComment-1489813 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.