Rob Landers

Results 541 comments of Rob Landers

This one is probably ready for review now @dunglas

I use clion to debug the whole stack when I need to, but if I'm just debugging the go side, I use goland.

It "just works" for me, but I just connect to a running process from clion, set up paths, and it works. I haven't tried running it from clion.

This is by design. Your `index.php` should know which routes exist and which ones do not. Thus if you receive a request for a route that does not exist (likely...

[You can modify the configuration](https://frankenphp.dev/docs/config/#:~:text=Using%20the%20php_server%20directive%20is%20equivalent%20to%20this%20configuration%3A) however you would like. The default is configured for modern apps using Symfony/Laravel/WordPress which use a router-based system (the inverse of other servers where you...

If you don’t mind sharing the configuration after you find one that works, I will be happy to add it to the documentation, or a PR from yourself is welcome...

I think it would look something like this? ```caddyfile app.example.com { root /path/to/app/public route { # Add trailing slash for directory requests @canonicalPath { file {path}/index.php not path */ }...

TBH, when I first read this issue, I was like "that sounds pretty simple" and this looks like the opposite of simple. We have a `php_server` directive, but maybe we...

I was hoping to finally escape php ./configure, Makefile, cmake and buildconf hell today, but I did not succeed. I made more progress, so that is something. 🤞 maybe tomorrow......

Oh good. Because I have several unknowns: 1. Does it work in Windows. 2. Does it work on osx. 3. Does it work with a static build. In theory, those...