Explorar o código

Defined STDOUT in entry scripts in case console application is running via CGI

Alexander Makarov %!s(int64=12) %!d(string=hai) anos
pai
achega
5d01d3a752
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      yii

+ 2 - 1
yii

@@ -10,8 +10,9 @@
 
 defined('YII_DEBUG') or define('YII_DEBUG', true);
 
-// fcgi doesn't have STDIN defined by default
+// fcgi doesn't have STDIN and STDOUT defined by default
 defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
+defined('STDIN') or define('STDOUT', fopen('php://stdout', 'w'));
 
 require(__DIR__ . '/vendor/autoload.php');
 require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');