Před 32 lety, 6. června 1993, byl spuštěn první český WWW server (ještě pod TLD .cs), pro potřeby fyziků zabývajících se problematikou vysokých energií.
Střílečku Borderlands 2 lze v rámci výprodeje série Borderlands na Steamu získat zdarma napořád, když aktivaci provedete do 8. června 19:00.
Byla vydána nová verze 2.22 svobodného video editoru Flowblade (GitHub, Wikipedie). Přehled novinek v poznámkách k vydání. Videoukázky funkcí Flowblade na Vimeu. Instalovat lze také z Flathubu.
Canonical Launchpad vypíná systém správy verzí Bazaar. Vývojáři mohou své repozitáře do 1. září přemigrovat na Git.
Byla vydána nová verze 2.53.21 svobodného multiplatformního balíku internetových aplikací SeaMonkey (Wikipedie). Přehled novinek v poznámkách k vydání.
Petici za povinné zveřejnění zdrojových kódů softwaru použitých ve veřejné správě lze podepsat na ePetice.
Na Indiegogo byla spuštěna kampaň na podporu linuxového telefonu Liberux NEXX s osmijádrovým procesorem Rockchip RK3588S, 32 GB LPDDR4x RAM a 6.34″ 2400×1080 OLED displejem. Cena telefonu je 1 310 eur.
Miro Hrončok vyhrál volby do Fedora Council. Mezi sedmi kandidáty, kteří se ucházeli o dvě křesla, nakonec získal nejvíce hlasů - 1089. Česká komunita má tak po delší době opět zástupce v nejvyšším orgánu Fedory.
Redox OS (Wikipedie), tj. mikrokernelový unixový operační systém naprogramovaný v programovacím jazyce Rust, nově podporuje X11 a GTK 3.
Dnes po celém světě startuje prodej herní konzole Nintendo Switch 2.
Řešení dotazu:
Nevypíná si to sama aplikace někde přes ini_set?
https://stackoverflow.com/questions/19520744/what-is-the-difference-between-local-value-and-master-value
master is either the value compiled into PHP, or set via a main php.ini directive. e.g. The value that's in effect when PHP fires up, before it executes any of your code.
local is the value that's currently in effect at the moment you call phpinfo(). This local value is the END result of any overrides that have taken place via ini_set() calls, php_value directives in httpd.conf/.htaccess, etc...
e.g.
php.ini: foo=bar
httpd.conf: php_value foo baz
.htaccess: php_value foo qux
ini_set: ini_set('foo', 'kittens');Given that, the master value is qux, and the local value is kittens.
grep opcache -lir /etc/Zdar Max
grep opcache -lir /etc/ /etc/php/7.2/cli/php.ini /etc/php/7.2/fpm/php.ini /etc/php/7.2/mods-available/opcache.ini /etc/apparmor.d/abstractions/php5
; configuration for php opcache module ; priority=10 zend_extension=opcache.so
dpkg -l | grep php dpkg-query: warning: parsing file '/var/lib/dpkg/status' near line 6780 package 'storcli': missing maintainer ii php-common 2:68+ubuntu16.04.1+deb.sury.org+1 all Common files for PHP packages ii php7.2 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 all server-side, HTML-embedded scripting language (metapackage) ii php7.2-bcmath 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 Bcmath module for PHP ii php7.2-cli 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 command-line interpreter for the PHP scripting language ii php7.2-common 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 documentation, examples and common module for PHP ii php7.2-curl 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 CURL module for PHP ii php7.2-fpm 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 server-side, HTML-embedded scripting language (FPM-CGI binary) ii php7.2-gd 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 GD module for PHP ii php7.2-intl 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 Internationalisation module for PHP ii php7.2-json 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 JSON module for PHP ii php7.2-ldap 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 LDAP module for PHP ii php7.2-mbstring 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 MBSTRING module for PHP ii php7.2-mysql 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 MySQL module for PHP ii php7.2-opcache 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 Zend OpCache module for PHP ii php7.2-readline 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 readline module for PHP ii php7.2-soap 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 SOAP module for PHP ii php7.2-xml 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 DOM, SimpleXML, WDDX, XML, and XSL module for PHP ii php7.2-zip 7.2.12-1+ubuntu16.04.1+deb.sury.org+1 amd64 Zip module for PHP
grep -i opcache /etc/php/7.2/fpm/php.iniZdar Max
# grep -i opcache /etc/php/7.2/fpm/php.ini [opcache] ; Determines if Zend OPCache is enabled opcache.enable=1 ; Determines if Zend OPCache is enabled for the CLI version of PHP opcache.enable_cli=1 ; The OPcache shared memory storage size. opcache.memory_consumption=128 opcache.interned_strings_buffer=8 ; The maximum number of keys (scripts) in the OPcache hash table. ;opcache.max_accelerated_files=10000 ;opcache.max_wasted_percentage=5 ; When this directive is enabled, the OPcache appends the current working ;opcache.use_cwd=1 ; When disabled, you must reset the OPcache manually or restart the ;opcache.validate_timestamps=1 ;opcache.revalidate_freq=2 ;opcache.revalidate_path=0 ;opcache.save_comments=1 ;opcache.enable_file_override=0 ; A bitmask, where each bit enables or disables the appropriate OPcache ;opcache.optimization_level=0xffffffff ;opcache.inherited_hack=1 ;opcache.dups_fix=0 ; The location of the OPcache blacklist file (wildcards allowed). ; Each OPcache blacklist file is a text file that holds the names of files ;opcache.blacklist_filename= ;opcache.max_file_size=0 ;opcache.consistency_checks=0 ;opcache.force_restart_timeout=180 ; OPcache error_log file name. Empty string assumes "stderr". opcache.error_log=/var/log/lighttpd/opcache ; All OPcache errors go to the Web server log. opcache.log_verbosity_level=2 ;opcache.preferred_memory_model= ;opcache.protect_memory=0 ; Allows calling OPcache API functions only from PHP scripts which path is ;opcache.restrict_api= ;opcache.mmap_base= ;opcache.file_cache= ;opcache.file_cache_only=0 ;opcache.file_cache_consistency_checks=1 ; Implies opcache.file_cache_only=1 for a certain process that failed to ;opcache.file_cache_fallback=1 ;opcache.huge_code_pages=1 ;opcache.validate_permission=0 ;opcache.validate_root=0 ;opcache.opt_debug_level=0
lighttpd -v lighttpd/1.4.35 (ssl) - a light and fast webserver Build-Date: Apr 18 2016 15:36:10
opcache.enable = 0 xdebug.remote_enable = on xdebug.remote_autostart = off xdebug.idekey = PHPSTORM xdebug.remote_connect_back = 1 xdebug.remote_host = localhost xdebug.extended_info = 1Díky všem.
Tiskni
Sdílej: