frankenphp
frankenphp copied to clipboard
🧟 The modern PHP app server
### What happened? I am following PHP Apps As Standalone Binaries with a simple [Symfony API](https://github.com/JuanLuisGarciaBorrego/franken) First, [I following commands](https://frankenphp.dev/docs/embed/#preparing-your-app) [OK]: ``` mkdir $TMPDIR/my-prepared-app git archive HEAD | tar -x...
**env** wsl 2 windows 11 with os tested : debian and ubuntu **execute** ``` sudo apt update sudo apt install -y curl unzip mariadb-server curl https://frankenphp.dev/install.sh | sh sudo mv...
### Describe you feature request **Is your feature request related to a problem? Please describe.** I've started working on a worker configuration example for CakePHP ^4 based on previous work...
### What happened? Im using php 8.1 with a custom install of franken php installed in docker ``` RUN curl -fsSL https://frankenphp.dev/install.sh | sh RUN mv frankenphp /usr/local/bin/ ``` then...
### What happened? When I make POST request with a body larger than ~15KB the request freeze forever. There nothing in the logs and the request do not reach the...
### What happened? We set up some FrankenPHP monitoring for our apps [using the metrics feature](https://frankenphp.dev/docs/metrics/). The `frankenphp_*_php_ready_workers` seems to be going downwards.  The current value is in the...
### Describe you feature request **Is your feature request related to a problem? Please describe.** I'm seeing unexpected restarts of my worker due to changed file in watch mode, but...
Since I enabled FrankenPHP worker mode, all global variables within functions have stopped working. For example: ``` function conn($params) { global $conn; // ... ; } ``` What is the...
I am using the worker mode and it doesn't seem that the handlers are called.