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
When using national symbols in the parameters, phpjasper simply cuts them out. For example, Spanish characters: á, ó or í. This happens because when exec() is executed, the environment variable LANG is set with a different language.
If in the execute() method, before executing the exec() command, add:
putenv('LANG=es_ES.UTF-8');
all characters are displayed correctly.
Maybe add a parameter to the configuration that would allow changing the environment variables before executing exec() command?