Replies: 2 comments
-
@kolAflash That's interesting. It would be helpful to I could speculate that they create/fork new processes, and then these processes expect some communication to happen, which obviously doesn't work when only one process is being Have you tried
|
Beta Was this translation helpful? Give feedback.
-
@kohlschuetter As far as I know Nevertheless I tested running Firefox with the variables exported. And the result is the same. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use unwrap for local website tests. It works for the Apache webserver and the simple ELinks browser. But I couldn't get it working with Firefox or Chromium.
Any idea how to fix this?
Webserver (Debian-12, present working directory as webroot):
Client:
Replacing Browser with
elinks
(if installed) works.But replacing it with
firefox
orchromium
doesn't work.Redirecting it back to TCP and accessing it with Firefox works. But that's not really useful.
first shell:
socat TCP-LISTEN:8080,bind=127.0.0.1,fork UNIX:"${HOME}"/sockets/8080.sock
second shell:
firefox 'http://127.0.0.1:8080'
Naturally I'm assuming, that Firefox and Chromium must not already be running. So new processes get spawned with
LD_PRELOAD
set.For Firefox the Apache logs a connection. But Firefox is stuck loading and crashes after about a minute.
For Chromium Apache doesn't even log a connection. And finally Chromium reports
ERR_SOCKET_NOT_CONNECTED
.P.S.
kohlschutter: Thanks for the great software!
Beta Was this translation helpful? Give feedback.
All reactions