Open kimchirichie opened 3 years ago
I'm not seeing anything either. 'List is Empty' with Laravel 7x.
Hi, I can not reproduce it. You can pull latest version and comment out all trackers (to turn them off) in config file. If that works you can turn them on one by one to figure out which of them makes the issue.
I have the same issue, I followed @jkocik's advice and the ConfigTracker is the one that breaks it for me.
jkocik/laravel-profiler v2.0.3 laravel/framework v8.48.1
if your using vhost
config server_http.address
or add WebSocket Server url by clicking power button on right top bar.
hello please , when I enter: php artisan pro:cli i get this error: Starting Profiler Client ... 'node_modules' n’est pas reconnu en tant que commande interne ou externe, un programme exécutable ou un fichier de commandes.
help me
For me it was a misconfiguration of nginx and php:
nginx.conf:
client_body_buffer_size 256m;
client_max_body_size 64m;
php.ini:
post_max_size = 64M
Error messages:
[error] 307#307: *9 FastCGI sent in stderr: "PHP message: PHP Warning: Unknown: POST Content-Length of 22612811 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
[warn] 307#307: *5 an upstream response is buffered to a temporary file /var/lib/nginx/fastcgi/2/00/0000000002 while reading upstream, client: 172.30.0.1, server: localhost, request: "POST /:8099 HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php8.0-fpm.sock:", host: "192.168.2.187"
I've actually been able to use this package on my current project a few months ago - no problem.
Recently turned the profiler up to do some optimizations on my query, but nothing seems to come thru the profiler client.
Here is my current setup/situation:
PROFILER_ENABLED=true
php artisan serve
php artisan pro:serve
(also tried withnpm run ps
)php artisan pro:cli
(also tried withnpm run pc
)profiler.php
is all defaultlocalhost:8000
to find the profiler client empty.Additional information
2.0.2
to2.0.1
without much successphp artisan pro:status
gives error:BroadcastingProcessor did not report connection status, connection status is unknown
what more can i do to debug this situation?