You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2025. It is now read-only.
I've installed the 64-bit package on Ubuntu 14.04. The daemon starts, but when I navigate to http://my_server_name:1220/, I'm presented with a page with every single localizable string missing.
As of v5.18.0, both keys and values stored in %ENV are stringified.
As a workadound, I've added use JSON statements to adminprotocol-lib.pl, streamingadminserver.pl and tag_formats.pl, and am setting $ENV variables to JSON-encoded representations of message hashes in streamingadminserver.pl, and then decoding these hashes back from JSON in the other two files. Not sure if that is the best approach though.
I've installed the 64-bit package on Ubuntu 14.04. The daemon starts, but when I navigate to http://my_server_name:1220/, I'm presented with a page with every single localizable string missing.
I guess it is due to this:
As a workadound, I've added
use JSONstatements toadminprotocol-lib.pl,streamingadminserver.plandtag_formats.pl, and am setting $ENV variables to JSON-encoded representations of message hashes instreamingadminserver.pl, and then decoding these hashes back from JSON in the other two files. Not sure if that is the best approach though.