summaryrefslogtreecommitdiffstats
path: root/peardev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'peardev.sh')
-rw-r--r--peardev.sh15
1 files changed, 12 insertions, 3 deletions
diff --git a/peardev.sh b/peardev.sh
index 327bd47..340c31b 100644
--- a/peardev.sh
+++ b/peardev.sh
@@ -1,4 +1,13 @@
#!/bin/sh
-export PHP_PEAR_SYSCONF_DIR=@CONFDIR@
-exec @BINDIR@/php -d memory_limit="-1" -C -q -d include_path=@PEARDIR@ \
- -d output_buffering=1 @PEARDIR@/pearcmd.php "$@"
+exec /usr/bin/php -C -q \
+ -d memory_limit="-1" \
+ -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" \
+ -d open_basedir="" \
+ -d auto_prepend_file="" \
+ -d auto_append_file="" \
+ /usr/share/pear/pearcmd.php "$@"