tracy bar is not shown in my web project
- thcom
- Backer | 95
hi i use latest nette version
in bootstrap.php i have
when i use dump
it shows only
https://imgur.com/NFqJKFk
and I am not able to click on the triangle to view details of variables
i get dump but i am unable to click on
PHP Version 8.1.4 on nginx webserver
composer dump here :
thank you
- petr.pavel
- Member | 535
There might be a Javascript error on your page that prevents remaining scripts from running. Check out the browser console.
- thcom
- Backer | 95
petr.pavel wrote:
There might be a Javascript error on your page that prevents remaining scripts from running. Check out the browser console.
i try to create new project with composer create-project nette/web-project test
only enable tracy and try to dump one variable,
dump is showm without possinbility to click on detail
tracy bar is not visible i tried edge, chrome, chrome anonymous, opera
- thcom
- Backer | 95
petr.pavel wrote:
Did you look into your browser's console? Is there any JavaScript error?
yes i attach error screen and error message
I used plain skeleton
composer create-project nette/web-project nettew
and add only
- db login to local.neon
- enmble tracy with
- render default method
- petr.pavel
- Member | 535
This post is going to be about finding out what's in your
/var/www/html/nettew/vendor/tracy/tracy/src/Tracy/Debugger/DeferredContent.php
at line 132.
nette/web-project
composer.json requires
tracy/tracy
at version “^2.8” with minimum stability
requirement “stable”. So it should install version 2.9.1
.
https://github.com/…omposer.json
Is your DeferredContent.php the same as this one?
https://github.com/…dContent.php
Current dev version looks different but it shouldn't be what you have
https://github.com/…dContent.php
Last edited by petr.pavel (2022-04-11 18:53)
- thcom
- Backer | 95
dkorpar wrote:
There were some bug in tracy 2.9.0, check if you have that version and update to 2.9.1 and problem should dissapear
I have 2.9.1.
and tracy is hidden
same error :/
- helvete
- Member | 16
I also encountered the same problem on a fresh install of nette/web-project.
Inspect closely the browser console “console” tab. For me there was a
hint in a warning about invalid src
attribute.
You can debug how the link is being generated in here: https://github.com/…loader.phtml#L14
In my case, the problem was caused by double slash at the beginning of the
src
URI. So I fixed it within webserver (nginx
)
config by removing leading slashes like this:
@@ -21,8 +21,8 @@ server {
fastcgi_pass php-fpm:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
- fastcgi_param SCRIPT_NAME /$fastcgi_script_name;
- fastcgi_param REQUEST_URI /$uri?$args;
+ fastcgi_param SCRIPT_NAME $fastcgi_script_name;
+ fastcgi_param REQUEST_URI $uri?$args;
fastcgi_param HTTPS off;
}
Last edited by helvete (2022-06-03 10:26)