[00:00:36] ho indeed it's fast :p [00:01:45] thank you a lot ^^ [00:02:51] any recommandation for php optimizations ? :) [00:03:58] using php-fpm instead of fastcgi will save you some overhead on all of the process startup/teardown stuff but it will be fairly minor [00:04:07] allready done [00:05:17] in that case, not much. You already have opcode caching enabled. You can tweak it to stop checking timestamps if this is a production site, but that has its own downsides where it won't recognize right away that underlying files were modified and to reload them if so [00:05:39] the frontal webserver and php-fpm instances are on diffrerent hardware [00:06:26] yea i'm remember tuning the timestamp [00:06:57] but you say something about one process and die before ? [00:07:11] yes, but that shouldn't be the case if you already have php-fpm [00:07:25] since that was the problem fpm aimed to solve [00:07:25] ha ok [00:07:36] do you have multiple backend servers running php? [00:07:38] yes i have a pool of process [00:07:52] yes i have all current version of php [00:08:02] (even php5.5 :p) [00:08:06] php5.6 [00:08:37] that would likely be the actual reason then. If one php-fpm process serviced the first request and a different php-fpm process serviced the POST to the login form, then that would cause the same issue [00:08:50] because apcu is an in-memory cache and not shared between worker processes [00:09:31] if it was the same process both times and you were still seeing that, then I have no idea what was going wrong :) [00:09:34] process cannot communicate because all versions of php are in different BSD Jails [00:10:02] even tcp/ip stack are separated [00:11:16] this wiki running php7.2 [00:12:05] so thank you ;) [16:54:24] addshore: Train blocker / wmf.19 regression - https://phabricator.wikimedia.org/T245062 [17:28:12] Krinkle: on vacation [17:28:37] addshore: np, beig taken care of. [17:28:40] enjoy [19:52:40] vacation++ [20:13:36] Anyone know why Apache 'Header always set Feature-Policy' prevents MediaWiki Tables? r how to allow them? [20:20:00] quantum: How does apache prevent tables? can you elaborate? [20:26:18] Vulpix: Running a MediaWiki site and use tables to make boxes for side content. (red border around it) [20:26:55] When I turn on Feature-Policy in Apache these borders go away. Text is intact, but no borders. [20:27:16] Prob php or js driven. [20:29:07] What Feature-Policy have you applied?