1

Sorry for the bone head Q. but I rarely need to reinstall my server :)

I wish to enable phpinfo() function. My php.ini config file has the disable_functions directive blank--which I understand is the way to turn this feature off.

Except this directive in my php.ini config is blank. Other php files are being served properly. What gives?

xtian
  • 321
  • 3
  • 15

1 Answers1

1

Are you using proper tags (<?php instead of <?)?

What happens if you put display_errors(E_ALL); in the beginning of the file?

yrosen
  • 283
  • 1
  • 6
  • I'm stupid. The first one... I never use this shortened syntax; however, I also super-rarely edit the config file. Thus the same file worked for the last install, but not the new. – xtian Jul 27 '11 at 12:21