-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphp.ini
More file actions
49 lines (43 loc) · 1.55 KB
/
Copy pathphp.ini
File metadata and controls
49 lines (43 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;
; Licensed to the Apache Software Foundation (ASF) under one
; or more contributor license agreements. See the NOTICE file
; distributed with this work for additional information
; regarding copyright ownership. The ASF licenses this file
; to you under the Apache License, Version 2.0 (the
; "License"); you may not use this file except in compliance
; with the License. You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
; This file explains the changes needed in your php.ini to run Olio.
;
; Saving sessions to /tmp is recommended on Solaris/OpenSolaris as /tmp
; is on swap and avoid file i/o
[Session]
session.save_path="/tmp/http_sessions"
; For running more than 5000 users, use:
; session.save_path="1;/tmp/http-sessions"
; These are the required extensions for Olio.
extension="apc.so"
extension="pdo_mysql.so"
extension="odbc.so"
extension="curl.so"
extension="memcache.so"
extension="gd.so"
; Ensure file_uploads are allowed
file_uploads = On
upload_tmp_dir = /tmp
; Error reporting parameters
error_reporting = E_ALL & ~E_NOTICE
display_errors = Off
log_errors = On
safe_mode = 0
short_open_tag = On
extension_dir=/usr/local/lib/php/extensions/no-debug-non-zts-20090626/
date.timezone = "Europe/Zurich"