Na WWDC25 byl představen balíček Containerization a nástroj container pro spouštění linuxových kontejnerů na macOS. Jedná se o open source software pod licencí Apache 2.0 napsaný v programovacím jazyce Swift.
Do 16. června do 19:00 běží na Steamu přehlídka nadcházejících her Festival Steam Next | červen 2025 doplněná demoverzemi, přenosy a dalšími aktivitami. Demoverze lze hrát zdarma.
Apple na své vývojářské konferenci WWDC25 (Worldwide Developers Conference, keynote) představil řadu novinek: designový materiál Liquid Glass, iOS 26, iPadOS 26, macOS Tahoe 26, watchOS 26, visionOS 26, tvOS 26, nové funkce Apple Intelligence, …
Organizátoři konference LinuxDays 2025, jež proběhne o víkendu 4. a 5. října 2025 v Praze na FIT ČVUT, spustili přihlašování přednášek (do 31. srpna) a sběr námětů na zlepšení.
Po roce byla vydána nová stabilní verze 25.6.0 svobodného multiplatformního multimediálního přehrávače SMPlayer (Wikipedie).
DNS4EU, tj. evropská infrastruktura služeb DNS založená na vysoce federovaném a distribuovaném ochranném ekosystému, byla spuštěna v testovacím režimu [𝕏]. Na výběr je 5 možností filtrování DNS.
Skriptovací programovací jazyk PHP (PHP: Hypertext Preprocessor, původně Personal Home Page) dnes slaví 30 let. Přesně před třiceti lety, 8. června 1995, oznámil Rasmus Lerdorf vydání PHP Tools (Personal Home Page Tools) verze 1.0.
Ve středu v 17:00 byl ve Francii zablokován přístup k PornHubu a dalším webům pro dospělé. K 17:30 došlo k nárůstu počtu registrací Proton VPN o 1 000 % [𝕏]. Dle nového francouzského zákona jsou provozovatelé těchto webů povinni ověřovat věk uživatelů prostřednictvím průkazu totožnosti nebo platební karty.
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.
Ř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: