Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@582 | 1 | ;; |
michael@582 | 2 | ;; php.ini -- PHP Configuration |
michael@582 | 3 | ;; |
michael@582 | 4 | |
michael@582 | 5 | [PHP] |
michael@582 | 6 | |
michael@582 | 7 | ; Resource Limits |
michael@582 | 8 | register_globals = off ; Global variables are no longer registered for input data |
michael@582 | 9 | allow_url_fopen = off ; Disable the opening of remote URLs |
michael@582 | 10 | display_errors = off ; Errors will NOT be displayed |
michael@582 | 11 | log_errors = on ; Errors will be logged |
michael@582 | 12 | max_execution_time = 60 ; Maximum execution time of each script, in seconds |
michael@582 | 13 | max_input_time = 60 ; Maximum amount of time each script may spend parsing request data |
michael@582 | 14 | memory_limit = 128M ; Maximum amount of memory a script may consume |
michael@582 | 15 | post_max_size = 16M ; Maximum amount of POST data accepted |
michael@582 | 16 | realpath_cache_size = 256K ; Maximum size of realpath(2) cache |
michael@582 | 17 | realpath_cache_ttl = 120 ; Duration of time (in seconds) to cache realpath(2) information |
michael@582 | 18 | date.timezone = "UTC" ; The timezone for date calculations |
michael@582 | 19 | |
michael@582 | 20 | ; Include Paths |
michael@582 | 21 | include_path = ".:@l_prefix@/lib/php" |
michael@582 | 22 |