Open Benjamin-Loison opened 3 weeks ago
curl 'http://localhost:8080/test.php'
api_1 | 172.18.0.1 - - [28/Oct/2024:15:40:02 +0000] "GET /test.php HTTP/1.1" 200 361 "-" "curl/7.88.1"
include_once 'common.php';
does not change anything. Maybe it is because a parsing error and not a runtime error.
Adding after include_once 'common.php';
:
include_once 'not_existing.php';
curl 'http://localhost:8080/test.php'
test
If remove include_once 'common.php';
, then have:
curl 'http://localhost:8080/test.php'
In last both cases have:
curl -I 'http://localhost:8080/test.php'
api_1 | 172.18.0.1 - - [28/Oct/2024:20:58:42 +0000] "HEAD /test.php HTTP/1.1" 200 154 "-" "curl/7.88.1"
Would help https://matrix.to/#/!xUzcWVLNMgGmLGBdRL:matrix.org/$UzmAQOtYWNzuKpWbe19VCbbZwW7j9Olrp-UX8S4LP04.
```php test.phptest.php
: