On Fri, Apr 2, 2021 at 10:41 PM Golota S.V. <[email protected]> wrote:
> Thanks Michael it helped! tell me you don’t know how to apply this fix to > all settings (globally) taking into account that strings are stored in > mysql? > > > There is no way in the Administrative interface to modify these values globally, for all connections. You could do it at the database level, though, using a couple of queries to get all of the configured RDP connections from the guacamole_connection table and then insert a row into the guacamole_connection_parameter table that disables the glyph cache. That said, the next version of Guacamole Server will forcibly disable the glyph cache, regardless of the connection parameter setting: https://github.com/apache/guacamole-server/pull/324 You could apply this patch to the guacamole-server code that you've compiled by doing the following in the guacamole-server source code tree: wget https://github.com/apache/guacamole-server/pull/324.diff patch -p1 < 324.diff Then "make clean", make, and "make install", and restart guacd. -Nick >
