|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-11-29 03:36 UTC] requinix@php.net
-Status: Open
+Status: Feedback
-Package: Unknown/Other Function
+Package: Program Execution
[2020-11-29 03:36 UTC] requinix@php.net
[2020-12-06 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ This used to work just fine in older versions of PHP/Ubuntu/Maxima If I try to run maxima from php exec() I'll get a segmentation fault, no matter how simple the input file is. Test script: --------------- <?php exec("/usr/bin/maxima -b /tmp/testInput.txt > /tmp/testOutput.txt"); // replace /usr/bin/maxima with your maxima path // testInput.txt contains the text "1+1;" ?> Actual result: -------------- Segmentation fault