Enable features in PHP after installation using 'yum'

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • suvarna271
    New Member
    • Feb 2013
    • 19

    Enable features in PHP after installation using 'yum'

    I installed php on my pc [Fedora] using
    Code:
    yum install php
    I need to --enable-debug and --enable-maintainer-zts for php .As per the documentation these can be enabled during ./configure step of installing php from source.

    Is there a way to do this after the installation is done using yum or I have to do the installation using source .

    I am currently editing the php.ini file to keep warnings for memory leaks ON. What else is necessary?
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Did you also set the display_errors and error_level settings in php.ini?

    Comment

    • suvarna271
      New Member
      • Feb 2013
      • 19

      #3
      Yes, I have uncommented

      display_errors
      Default Value: On
      Development Value: On
      Production Value: Off

      and

      error_reporting = E_ALL & ~E_DEPRECATED

      display_errors is On

      If there is any link which can give a list of all features enabled by --enable-debug and -enable-maintainer-zts, please do include it so i can make the necessary changes in php.ini

      Comment

      Working...