Your log doesn't look like the PHPMaker log, where is it from? The PHPMaker (v2026) log file should be under var/log/dev-yyyy-mm-dd.log (assume "dev" environment).
[2026-01-05T08:50:15.818537+00:00] deprecation.INFO: User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead.
(Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)
{"exception":"[object] (ErrorException(code: 0): User Deprecated: Class \"Doctrine\\ORM\\Proxy\\Autoloader\" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm) at /var/www/vhosts/xxx.org/VLF.xxx.org/vendor/doctrine/deprecations/src/Deprecation.php:208)"} []
[2026-01-05T08:50:15.822902+00:00] request.INFO: Matched route "login".
{"route":"login","route_parameters":{"_route":"login","_controller":"PHPMaker2026\\Vlf\\AppController::login"},"request_uri":"https://vlf.xxx.org/login","method":"POST"} []
[2026-01-05T08:50:15.825115+00:00] security.DEBUG: Checking for authenticator support.
{"firewall_name":"main","authenticators":1} []
[2026-01-05T08:50:15.825149+00:00] security.DEBUG: Checking support on authenticator.
{"firewall_name":"main","authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"} []
[2026-01-05T08:50:15.825175+00:00] app.DEBUG: Authenticator will be executed for this request
{"authenticator_class":"Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator","request_path":"/login"} []
[2026-01-05T08:50:15.825691+00:00] request.DEBUG: CSRF validation accepted using origin info. [] []
[2026-01-05T08:50:15.827664+00:00] deprecation.INFO: User Deprecated: Support for MariaDB < 10.6.0 is deprecated and will be removed in DBAL 5.
(AbstractMySQLDriver.php:54 called by AbstractDriverMiddleware.php:32, https://github.com/doctrine/dbal/pull/6343, package doctrine/dbal)
{"exception":"[object] (ErrorException(code: 0): User Deprecated: Support for MariaDB < 10.6.0 is deprecated and will be removed in DBAL 5 (AbstractMySQLDriver.php:54 called by AbstractDriverMiddleware.php:32, https://github.com/doctrine/dbal/pull/6343, package doctrine/dbal) at /var/www/vhosts/xxx.org/VLF.xxx.org/vendor/doctrine/deprecations/src/Deprecation.php:208)"} []
[2026-01-05T08:50:17.275643+00:00] security.INFO: Authenticator successful!
{"token":{"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken":"UsernamePasswordToken(user=\"jberman\", roles=\"ROLE_SUPER_ADMIN\")"},"authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"} []
[2026-01-05T08:50:17.276509+00:00] cache.INFO: Lock acquired, now computing item "user_level.data"
{"key":"user_level.data"} []
[2026-01-05T08:50:17.276708+00:00] security.DEBUG: The authenticator set the response. Any later authenticator will not be called
{"authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"} []
[2026-01-05T08:50:17.276783+00:00] security.DEBUG: Stored the security token in the session.
{"key":"_security_main"} []
[2026-01-05T08:50:17.320439+00:00] deprecation.INFO: User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead.
{"exception":"[object] (ErrorException(code: 0): User Deprecated: Class \"Doctrine\\ORM\\Proxy\\Autoloader\" is deprecated. Use native lazy objects instead. at /var/www/vhosts/xxx.org/VLF.xxx.org/vendor/doctrine/deprecations/src/Deprecation.php:208)"} []
[2026-01-05T08:50:17.322524+00:00] request.INFO: Matched route "login".
{"route":"login","route_parameters":{"_route":"login","_controller":"PHPMaker2026\\Vlf\\AppController::login"},"request_uri":"https://vlf.xxx.org/login","method":"GET"} []
[2026-01-05T08:50:17.323716+00:00] security.DEBUG: Read existing security token from the session.
{"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2026-01-05T08:50:17.323812+00:00] security.DEBUG: User was reloaded from a user provider.
{"provider":"Symfony\\Component\\Security\\Core\\User\\InMemoryUserProvider","username":"jberman"} []
[2026-01-05T08:50:17.324035+00:00] app.DEBUG: Authenticator skipped for this request
{"authenticator_class":"Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator","request_path":"/login"} []
[2026-01-05T08:50:17.370447+00:00] request.INFO: Matched route "index".
{"route":"index","route_parameters":{"_route":"index","_controller":"PHPMaker2026\\Vlf\\AppController::index"},"request_uri":"https://vlf.xxx.org/","method":"GET"} []
[2026-01-05T08:50:17.414163+00:00] request.INFO: Matched route "custom.welcome".
{"route":"custom.welcome","route_parameters":{"_route":"custom.welcome","params":null,"_controller":"PHPMaker2026\\Vlf\\WelcomeController"},"request_uri":"https://vlf.xxx.org/welcome","method":"GET"} []
As you can see from the response header, the cookies are just a few hundred bytes, well below normal web server limit, which should be at least 4KB. It should not be due to the cookies.
However, v2026 uses Link headers to preload JavaScripts and stylesheet for better performance. That may cause the issue. You can test by disabling the headers by:
Open vendor\symfony\web-link\EventListener\AddLinkHeaderListener.php, comment out this line:
thanks, disabling the headers as a test works. My provider will allow me to adjust header size by adding additional directives and they say I should use fastcgi buffers