- for some php versions date.timezone is not configurated by default, that why th problem - on cli.php date.timezone is being configurated now, if env.ini exists, its configuration in read
12 lines
275 B
PHP
Executable File
12 lines
275 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$scriptDir = dirname(__FILE__).'/';
|
|
|
|
define("PROCESSMAKER_PATH", $scriptDir);
|
|
define("WORKFLOW_PATH", $scriptDir . 'workflow/');
|
|
define("WORKFLOW_BIN_PATH", $scriptDir . 'workflow/engine/bin/');
|
|
|
|
include WORKFLOW_BIN_PATH . '/cli.php';
|
|
|