Discover Centmin Mod today
Register Now

PHP PHP 7.0.0 Alpha 1 Released

Discussion in 'Nginx and PHP-FPM news & discussions' started by eva2000, Jun 12, 2015.

  1. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  2. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    So without this can't use "libmemcached"?
     
  3. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    memcache != memcached they're 2 different PHP extensions

    igbinary support was removed from Centmin Mod's memcached server compilation ages back, so you can use libmemcached/memcached PHP extension with PHP 7 fine as there is no reliance on igbinary
     
  4. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    so where is this extension use for now?
     
  5. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    if APC Cache is used and my mistake, memcached PHP extension will use igbinary if igbinary.ini sets the session.serialize_handler=igbinary

    Code:
     cat /etc/centminmod/php.d/igbinary.ini
    
    [igbinary]
    extension=igbinary.so
    ;Use igbinary as session serializer
    session.serialize_handler=igbinary
    
    ;Enable or disable compacting of duplicate strings
    igbinary.compact_strings=On
    
    ;Use igbinary as serializer in APC cache
    ;apc.serializer=igbinary
    so basically memcached PHP extension would only use igbinary if igbinary is installed and working.

    On PHP 7.0.0 Alpha 1, memcached PHP extension from PHP 7 branch shows igbinary support => no
    Code:
    php --ri memcached
    
    memcached
    
    memcached support => enabled
    Version => 2.2.0
    libmemcached version => 1.0.18
    SASL support => yes
    Session support => yes
    igbinary support => no
    json support => yes
    msgpack support => no
    
    Directive => Local Value => Master Value
    memcached.sess_locking => 1 => 1
    memcached.sess_consistent_hash => 0 => 0
    memcached.sess_binary => 0 => 0
    memcached.sess_lock_wait => 150000 => 150000
    memcached.sess_lock_max_wait => 0 => 0
    memcached.sess_lock_expire => 0 => 0
    memcached.sess_prefix => memc.sess.key. => memc.sess.key.
    memcached.sess_number_of_replicas => 0 => 0
    memcached.sess_randomize_replica_read => 0 => 0
    memcached.sess_remove_failed => 0 => 0
    memcached.sess_connect_timeout => 3000 => 3000
    memcached.sess_sasl_username => no value => no value
    memcached.sess_sasl_password => no value => no value
    memcached.compression_type => fastlz => fastlz
    memcached.compression_factor => 1.3 => 1.3
    memcached.compression_threshold => 2000 => 2000
    memcached.serializer => php => php
    memcached.use_sasl => 0 => 0
    memcached.store_retry_count => 2 => 2
     
  6. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    PHP 7 Alpha 2 should be soon timeline :D

    Commits · php/php-src · GitHub seems the tarball is available for PHP Alpha 2 https://downloads.php.net/~ab/ just no announcement yet

    so just on centmin.sh menu option 5 when prompted for php version specify = 7.0.0alpha2

    edit: seems something broken in .08 beta 03 latest version for this so might want to hold off fixed with commits at update inc/phpng_download.inc for PHP 7.0.0 Alpha 2 fix · centminmod/centminmod@39b1d21 · GitHub and reorder PHP 7.0.0 download function to prepare for future PHP 7 alpha… · centminmod/centminmod@a5942fa · GitHub

    Code:
    25 Jun 2015, PHP 7.0.0 Alpha 2
    
    - Core:
      . Fixed bug #69872 (uninitialised value in strtr with array). (Laruence)
      . Fixed bug #69868 (Invalid read of size 1 in zend_compile_short_circuiting).
        (Laruence)
      . Fixed bug #69849 (Broken output of apache_request_headers). (Kalle)
      . Fixed bug #69840 (iconv_substr() doesn't work with UTF-16BE). (Kalle)
      . Fixed bug #69823 (PHP 7.0.0alpha1 segmentation fault when exactly 33
        extensions are loaded). (Laruence)
      . Fixed bug #69805 (null ptr deref and seg fault in zend_resolve_class_name).
        (Laruence)
      . Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class
        name). (Dmitry)
      . Fixed bug #69761 (Serialization of anonymous classes should be prevented).
        (Laruence)
      . Fixed bug #69551 (parse_ini_file() and parse_ini_string() segmentation
        fault). (Christoph M. Becker)
      . Fixed bug #69781 (phpinfo() reports Professional Editions of Windows
        7/8/8.1/10 as "Business"). (Christian Wenz)
      . Fixed bug #69835 (phpinfo() does not report many Windows SKUs).
        (Christian Wenz)
      . Fixed bug #69889 (Null coalesce operator doesn't work for string offsets).
        (Nikita)
      . Fixed bug #69891 (Unexpected array comparison result). (Nikita)
      . Fixed bug #69892 (Different arrays compare indentical due to integer key
        truncation). (Nikita)
      . Fixed bug #69893 (Strict comparison between integer and empty string keys
        crashes). (Nikita)
    
    - DOM:
      . Fixed bug #69846 (Segmenation fault (access violation) when iterating over
        DOMNodeList). (Anatol Belski)
    
    - GD:
      . Fixed bug #61221 (imagegammacorrect function loses alpha channel). (cmb)
    
    - mysqlnd:
      . Fixed Bug #69796 (mysqli_stmt::fetch doesn't assign null values to
        bound variables). (Laruence)
    
    - Curl:
      . Fixed bug #69831 (Segmentation fault in curl_getinfo). (im dot denisenko at
        yahoo dot com)
    
    - Opcache:
      . Removed opcache.load_comments configuration directive. Now doc comments
        loading costs nothing and always enabled. (Dmitry)
      . Fixed bug #69838 (Wrong size calculation for function table). (Anatol)
    
    - PCRE:
      . Fixed bug #69864 (Segfault in preg_replace_callback) (cmb, ab)
    
    - PDO_pgsql:
      . Fixed bug #69752 (PDOStatement::execute() leaks memory with DML
        Statements when closeCuror() is u). (Philip Hofstetter)
    
    - SPL
      . Fixed bug #69845 (ArrayObject with ARRAY_AS_PROPS broken). (Dmitry)
    
    - SQLite3
      . Fixed bug #69897 (segfault when manually constructing SQLite3Result).
        (Kalle)
    
    - Standard
      . Fixed bug #62922 (Truncating entire string should result in string).
        (Nikita)
     
    Last edited: Jun 25, 2015
  7. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Working fine with PHP 7.0.0 Alpha 2 :D

    Code:
    php -v
    PHP 7.0.0alpha2 (cli) (built: Jun 24 2015 23:07:21)
    Copyright (c) 1997-2015 The PHP Group
    Zend Engine v3.0.0-dev, Copyright (c) 1998-2015 Zend Technologies
        with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
    Code:
    php --ri memcached
    
    memcached
    
    memcached support => enabled
    Version => 2.2.0
    libmemcached version => 1.0.16
    SASL support => yes
    Session support => yes
    igbinary support => no
    json support => yes
    msgpack support => no
    
    Directive => Local Value => Master Value
    memcached.sess_locking => 1 => 1
    memcached.sess_consistent_hash => 0 => 0
    memcached.sess_binary => 0 => 0
    memcached.sess_lock_wait => 150000 => 150000
    memcached.sess_lock_max_wait => 0 => 0
    memcached.sess_lock_expire => 0 => 0
    memcached.sess_prefix => memc.sess.key. => memc.sess.key.
    memcached.sess_number_of_replicas => 0 => 0
    memcached.sess_randomize_replica_read => 0 => 0
    memcached.sess_remove_failed => 0 => 0
    memcached.sess_connect_timeout => 3000 => 3000
    memcached.sess_sasl_username => no value => no value
    memcached.sess_sasl_password => no value => no value
    memcached.compression_type => fastlz => fastlz
    memcached.compression_factor => 1.3 => 1.3
    memcached.compression_threshold => 2000 => 2000
    memcached.serializer => php => php
    memcached.use_sasl => 0 => 0
    memcached.store_retry_count => 2 => 2
    Code:
    php -m
    [PHP Modules]
    bcmath
    bz2
    calendar
    Core
    ctype
    curl
    date
    dom
    enchant
    exif
    filter
    ftp
    gd
    geoip
    gettext
    gmp
    hash
    iconv
    imap
    intl
    json
    libxml
    mbstring
    mcrypt
    memcached
    mysqli
    mysqlnd
    openssl
    pcntl
    pcre
    PDO
    pdo_mysql
    pdo_sqlite
    Phar
    posix
    pspell
    readline
    Reflection
    session
    shmop
    SimpleXML
    snmp
    soap
    sockets
    SPL
    sqlite3
    standard
    sysvmsg
    sysvsem
    sysvshm
    tidy
    tokenizer
    xml
    xmlreader
    xmlrpc
    xmlwriter
    Zend OPcache
    zip
    zlib
    
    [Zend Modules]
    Zend OPcache
     
    Last edited: Jun 25, 2015
  8. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
  9. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    :cool:
     
  10. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    I am really tempted to try it Live :D
     
  11. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    I'm setting up a Centmin Mod .08 beta03 stack on a Linode KVM for Piwik serving - might see if PHP 7.0.0 Alpha 2 works heh
     
  12. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    So we can use Piwik and ditch GA :D
     
  13. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    nah i like stats, I use GA + Piwik hehe
     
  14. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    But will add more resources to load. :)
     
  15. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    It's a separate dedicated VPS server instance for just piwik and nothing else :D
     
  16. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    No what I mean, you still load an extra JS file on a website you want to track :).
     
  17. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Oh that .. yeah - hence why I chose same datacenter as my forums = Linode Fremont, California :D
     
  18. rdan

    rdan Well-Known Member

    5,439
    1,398
    113
    May 25, 2014
    Ratings:
    +2,187
    Local Time:
    8:04 PM
    Mainline
    10.2
    and KVM :).
    If only Ramnode offer Hourly rate, and also Singapore Server :).
     
  19. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Yeah my first KVM Linode instance so will see how that goes :)
     
  20. eva2000

    eva2000 Administrator Staff Member

    53,247
    12,117
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,655
    Local Time:
    10:04 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    PHP 7.0.0 Beta 1 is here PHP: News Archive - 2015 !

    Centmin Mod .08 beta03 should account for 7.0.0beta1 download file now as well in inc/phpng_download.inc already so should be supported by centmin.sh menu option 5 and specifying 7.0.0beta1 as version number

    run centmin.sh menu option 5 to update to PHP 7.0.0beta1
    Code:
    --------------------------------------------------------
    Centmin Mod 1.2.3-eva2000.08 - http://centminmod.com
    --------------------------------------------------------
                       Centmin Mod Menu                
    --------------------------------------------------------
    1).  Centmin Install
    2).  Add Nginx vhost domain
    3).  NSD setup domain name DNS
    4).  Nginx Upgrade / Downgrade
    5).  PHP Upgrade / Downgrade
    6).  XCache Re-install
    7).  APC Cache Re-install
    8).  XCache Install
    9).  APC Cache Install
    10). Memcached Server Re-install
    11). MariaDB 5.2/5.5 & 10.x Upgrade Sub-Menu
    12). Zend OpCache Install/Re-install
    13). Install ioping.sh vbtechsupport.com/1239/
    14). SELinux disable
    15). Install/Reinstall ImagicK PHP Extension
    16). Change SSHD Port Number
    17). Multi-thread compression: pigz,pbzip2,lbzip2...
    18). Suhosin PHP Extension install
    19). Install FFMPEG and FFMPEG PHP Extension
    20). NSD Re-install
    21). Update - Nginx + PHP-FPM + Siege
    22). Add Wordpress Nginx vhost + WP Super Cache
    23). Update Centmin Mod Code Base
    24). Exit
    --------------------------------------------------------
    Enter option [ 1 - 24 ] 5
    --------------------------------------------------------
    
    Code:
    Do you want to run YUM install checks ?  [y/n]
    
    This will increase your upgrade duration time wise.
    Check the change log centminmod.com/changelog.html
    to see if any Nginx or PHP related new additions
    which require checking YUM prequisites are met.
    If no new additions made, you can skip the
    YUM install check to speed up upgrade time.
    
    [y/n]: n
    PHP Upgrade - Would you like to continue? [y/n] y
    ----------------------------------------------------------------
    Install which version of PHP? (version i.e. 5.4.43, 7.0.0, NGDEBUG)
    PHP 7.0.0 is experimental in alpha status and may have broken PHP extensions.
    NGDEBUG is PHP 7.0.0 minus incompatible PHP extensions
    ----------------------------------------------------------------
    Enter PHP Version number you want to upgrade/downgrade to: 7.0.0beta1
    ----------------------------------------------------------------
    Want to update to latest php-fpm.conf ? (overwrites will auto backup existing php-fpm.conf)
    existing php.ini will be backed up at /usr/local/lib/php.ini-oldversion_150715-135821
    existing php-fpm.conf will be backed up at /usr/local/etc/php-fpm.conf-oldversion_150715-135821
    ----------------------------------------------------------------
    Update & overwrite your existing php-fpm.conf [y/n]: n
    ----------------------------------------------------------------
    Downloading PHP 7.0.0beta1 from https://downloads.php.net/~ab/
    Download php-7.0.0beta1.tar.gz ...
    wget -cnv https://downloads.php.net/~ab/php-7.0.0beta1.tar.gz --tries=3
    2015-07-15 14:03:56 URL:https://downloads.php.net/~ab/php-7.0.0beta1.tar.gz [19533444/19533444] -> "php-7.0.0beta1.tar.gz" [1]
    Download done.
    php-7.0.0beta1.tar.gz valid file.
    
    Code:
    -----------------------------------------------------------------------------------------
    Detected PHP 7.0 branch.
    You can compile Zend OPcache (Zend Optimizer Plus+) support
    as an alternative to using APC Cache or Xcache cache.
    But Zend OPcache only provides PHP opcode cache and
    DOESN'T do data caching, so if you web apps such as Wordpress,
    Drupal or vBulletin require data caching to APC or Xcache,
    it won't work with Zend OPcache.
    
    -----------------------------------------------------------------------------------------
    Do you want to use Zend OPcache [y/n] ? y
    end of install
    Code:
    PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20141001/igbinary.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20141001/igbinary.so: cannot open shared object file: No such file or directory in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20141001/memcache.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20141001/memcache.so: cannot open shared object file: No such file or directory in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20141001/mongo.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20141001/mongo.so: cannot open shared object file: No such file or directory in Unknown on line 0
    PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20141001/redis.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20141001/redis.so: cannot open shared object file: No such file or directory in Unknown on line 0
    7.0
    0
    ***************************************************
    PHP 7.0 detected.. remove unsupported PHP extensions manually
    by removing their ini files:
    ***************************************************
    
    rm -rf /etc/centminmod/php.d/igbinary.ini
    #rm -rf /etc/centminmod/php.d/imagick.ini
    rm -rf /etc/centminmod/php.d/memcache.ini
    rm -rf /etc/centminmod/php.d/mongodb.ini
    rm -rf /etc/centminmod/php.d/redis.ini
    rm -rf /etc/centminmod/php.d/suhosin.ini
    
    then restart PHP-FPM again...
    
    ***************************************************
    * PHP upgraded and auto reinstalled PHP extensions
    ***************************************************
    so igbinary, memcache, mongodb and redis PHP extensions are still not supported so do as the message suggests, remove their ini files and restart php-fpm

    Code:
    rm -rf /etc/centminmod/php.d/igbinary.ini
    rm -rf /etc/centminmod/php.d/memcache.ini
    rm -rf /etc/centminmod/php.d/mongodb.ini
    rm -rf /etc/centminmod/php.d/redis.ini
    service php-fpm restart
    done PHP 7.0.0beta1 installed
    Code:
    php -v
    PHP 7.0.0beta1 (cli) (built: Jul 15 2015 14:08:58)
    Copyright (c) 1997-2015 The PHP Group
    Zend Engine v3.0.0-dev, Copyright (c) 1998-2015 Zend Technologies
        with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
    module list
    Code:
    php -m
    [PHP Modules]
    bcmath
    bz2
    calendar
    Core
    ctype
    curl
    date
    dom
    enchant
    exif
    filter
    ftp
    gd
    geoip
    gettext
    gmp
    hash
    iconv
    imagick
    imap
    intl
    json
    libxml
    mbstring
    mcrypt
    memcached
    mysqli
    mysqlnd
    openssl
    pcntl
    pcre
    PDO
    pdo_mysql
    pdo_sqlite
    Phar
    posix
    pspell
    readline
    Reflection
    session
    shmop
    SimpleXML
    snmp
    soap
    sockets
    SPL
    sqlite3
    standard
    sysvmsg
    sysvsem
    sysvshm
    tidy
    tokenizer
    xml
    xmlreader
    xmlrpc
    xmlwriter
    Zend OPcache
    zip
    zlib
    
    [Zend Modules]
    Zend OPcache
    
    geoip PHP extension details
    Code:
    php --ri geoip                 
    
    geoip
    
    geoip support => enabled
    geoip extension version => 1.1.1-dev
    geoip library version => 1005000
    
    Directive => Local Value => Master Value
    geoip.custom_directory => /usr/share/GeoIP => /usr/share/GeoIP
    memcached PHP extension details
    Code:
    php --ri memcached
    
    memcached
    
    memcached support => enabled
    Version => 2.2.0
    libmemcached version => 1.0.18
    SASL support => yes
    Session support => yes
    igbinary support => no
    json support => yes
    msgpack support => no
    
    Directive => Local Value => Master Value
    memcached.sess_locking => 1 => 1
    memcached.sess_consistent_hash => 0 => 0
    memcached.sess_binary => 0 => 0
    memcached.sess_lock_wait => 150000 => 150000
    memcached.sess_lock_max_wait => 0 => 0
    memcached.sess_lock_expire => 0 => 0
    memcached.sess_prefix => memc.sess.key. => memc.sess.key.
    memcached.sess_number_of_replicas => 0 => 0
    memcached.sess_randomize_replica_read => 0 => 0
    memcached.sess_remove_failed => 0 => 0
    memcached.sess_connect_timeout => 3000 => 3000
    memcached.sess_sasl_username => no value => no value
    memcached.sess_sasl_password => no value => no value
    memcached.compression_type => fastlz => fastlz
    memcached.compression_factor => 1.3 => 1.3
    memcached.compression_threshold => 2000 => 2000
    memcached.serializer => php => php
    memcached.use_sasl => 0 => 0
    memcached.store_retry_count => 2 => 2
    imagick PHP extension details
    Code:
    php --ri imagick 
    
    imagick
    
    imagick module => enabled
    imagick module version => @PACKAGE_VERSION@
    imagick classes => Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel
    Imagick compiled with ImageMagick version => ImageMagick 6.9.1-7 Q16 x86_64 2015-07-06 http://www.imagemagick.org
    Imagick using ImageMagick library version => ImageMagick 6.9.1-7 Q16 x86_64 2015-07-06 http://www.imagemagick.org
    ImageMagick copyright => Copyright (C) 1999-2015 ImageMagick Studio LLC
    ImageMagick release date => 2015-07-06
    ImageMagick number of supported formats:  => 217
    ImageMagick supported formats => 3FR, AAI, AI, ART, ARW, AVI, AVS, BGR, BGRA, BGRO, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G3, GIF, GIF87, GRADIENT, GRAY, GROUP4, GV, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, JNG, JNX, JPE, JPEG, JPG, JPS, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
    
    Directive => Local Value => Master Value
    imagick.locale_fix => 0 => 0
    imagick.skip_version_check => 0 => 0
    imagick.progress_monitor => 0 => 0
     
    Last edited: Jul 16, 2015