Asher
Asher
Is PHP installed and on your `PATH`? What does `which php` give you in code-server's terminal? I experimented and it worked for me after I installed the Prettier PHP plugin,...
I am a little unclear, is the problem that when you use `File` > `Open Folder` it opens the wrong folder? If you could write out a series of exact...
When you say you access a project, do you mean `File` > `Open Folder` or something else? Here is what I tried to do but it all worked for me:...
I see, that sounds considerably more complex. Are you able to reproduce with code-server alone? Or are you able to provide a full reproduction I can run to debug this?...
The language detection is causing the refreshes? Apparently this module is not open source so I guess we cannot include it: https://github.com/microsoft/vscode/issues/137104#issuecomment-1055821026
I looked into the code upstream and it seems they read `/proc/net/tcp` and `/proc/net/tcp6`: https://github.com/microsoft/vscode/blob/9e3aaa4ac4410cf029e505c922c425b417ea1633/src/vs/workbench/api/node/extHostTunnelService.ts#L246-L247 So, supposedly you should see the ports there, although if so I am not sure...
Are you mounting your data directory (`~./local/share/code-server` by default)? If the contents are not being persisted between Docker restarts then code-server will be unable to access the previous auth token.
The actual GitHub auth token is stored in browser storage, but it is encrypted and half of the key is in `~/.local/share/code-server/serve-web-key-half`. The other half of the key is also...
Interesting, I tried to reproduce with code-server 4.19.0 and Firefox 102.12.0esr but I was able to use the "accept the risk and continue button" and code-server loaded normally. Maybe I...
Thank you for the Dockerfile! I had a chance to test it with an updated Firefox (still ESR, so 115.5.0esr) and I was still able to accept the certificate. Maybe...