You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
248 B
10 lines
248 B
3 years ago
|
#!/bin/sh
|
||
|
exec /usr/bin/php -C \
|
||
|
-d include_path=/usr/share/pear \
|
||
|
-d date.timezone=UTC \
|
||
|
-d output_buffering=1 \
|
||
|
-d variables_order=EGPCS \
|
||
|
-d safe_mode=0 \
|
||
|
-d register_argc_argv="On" \
|
||
|
/usr/share/pear/peclcmd.php "$@"
|