We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af5157 commit d3fbf99Copy full SHA for d3fbf99
1 file changed
lib/Document/ConverterBinary.php
@@ -51,7 +51,7 @@ public function run(string $param, string $password = null): string {
51
$password = htmlspecialchars($password, ENT_XML1, 'UTF-8');
52
$cmd .= ' ' . escapeshellarg("<TaskQueueDataConvert><m_sPassword>$password</m_sPassword></TaskQueueDataConvert>");
53
}
54
- $process = proc_open($cmd, $descriptorSpec, $pipes, self::BINARY_DIRECTORY, []);
+ $process = proc_open($cmd, $descriptorSpec, $pipes, self::BINARY_DIRECTORY, ["LD_LIBRARY_PATH" => "."]);
55
56
@fclose($pipes[0]);
57
$output = @stream_get_contents($pipes[1]);
0 commit comments