View difference between Paste ID: 2ULuWgC3 and aQHKhdjY
SHOW: | | - or go back to the newest paste.
1
[PHP]
2
engine = On
3
4
short_open_tag = Off
5
asp_tags = Off
6
precision = 14
7
8
; *** JOOMLA REQUIREMENT ***
9
output_buffering = Off
10
magic_quotes_gpc = Off
11
; *** JOOMLA REQUIREMENT ***
12
13
zlib.output_compression = Off
14
implicit_flush = Off
15
unserialize_callback_func =
16
serialize_precision = 17
17
18-
open_basedir = "C:\Storage\Websites\Apache\"
18+
open_basedir = 'C:\Storage\Websites\Apache\'
19
20
; DISABLED FUNCTIONS
21
;disable_functions = show_source, system, passthru, popen, proc_open, exec, shell_exec
22
disable_functions = show_source, system, shell_exec, passthru, exec, popen, proc_open
23
disable_classes =
24
25
zend.enable_gc = On
26
expose_php = On
27
max_execution_time = 300
28
max_input_time = 300
29
memory_limit = 1024M
30
31
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
32
33
; *** JOOMLA REQUIREMENT ***
34
magic_quotes_gpc = Off
35
display_errors = off
36
; *** JOOMLA REQUIREMENT ***
37
38
log_errors = On
39
log_errors_max_len = 1024
40
ignore_repeated_errors = Off
41
ignore_repeated_source = Off
42
report_memleaks = On
43
track_errors = Off
44
html_errors = On
45
variables_order = "GPCS"
46
request_order = "GP"
47
register_argc_argv = Off
48
auto_globals_jit = On
49
post_max_size = 100M
50
auto_prepend_file =
51
auto_append_file =
52
default_mimetype = "text/html"
53
doc_root =
54
user_dir =
55
extension_dir = "ext"
56
enable_dl = Off
57
58
;;;;;;;;;;;;;;;;;;
59
; File upload    ;
60
;;;;;;;;;;;;;;;;;;
61
file_uploads = On
62
upload_tmp_dir = "C:/Storage/Websites/Apache/-common-"
63
upload_max_filesize = 100M
64
max_file_uploads = 100
65
66
;;;;;;;;;;;;;;;;;;
67
; Fopen wrappers ;
68
;;;;;;;;;;;;;;;;;;
69
allow_url_fopen = On
70
allow_url_include = Off
71
default_socket_timeout = 60
72
73
; JOOMLA USES:
74
extension=php_curl.dll
75
extension=php_gd2.dll
76
extension=php_mbstring.dll
77
extension=php_exif.dll      ; Must be after mbstring as it depends on it
78
extension=php_mysql.dll
79
extension=php_mssql.dll
80
extension=php_pdo_mssql.dll
81
extension=php_mysqli.dll
82
extension=php_openssl.dll
83
extension=php_zip.dll
84
extension=php_imap.dll
85
86
; ROCKET THEME USES:
87
extension=php_pdo_mysql.dll
88
extension=php_pdo_sqlite.dll
89
90
; E-CONOMIC API USES
91
extension=php_soap.dll
92
93
;extension=php_bz2.dll
94
;extension=php_curl.dll
95
;extension=php_fileinfo.dll
96
;extension=php_gd2.dll
97
;extension=php_gettext.dll
98
;extension=php_gmp.dll
99
;extension=php_intl.dll
100
;extension=php_imap.dll
101
;extension=php_interbase.dll
102
;extension=php_ldap.dll
103
;extension=php_mbstring.dll
104
;extension=php_exif.dll      ; Must be after mbstring as it depends on it
105
;extension=php_mysql.dll
106
;extension=php_mysqli.dll
107
;extension=php_oci8.dll      ; Use with Oracle 10gR2 Instant Client
108
;extension=php_oci8_11g.dll  ; Use with Oracle 11gR2 Instant Client
109
;extension=php_openssl.dll
110
;extension=php_pdo_firebird.dll
111
;extension=php_pdo_mysql.dll
112
;extension=php_pdo_oci.dll
113
;extension=php_pdo_odbc.dll
114
;extension=php_pdo_pgsql.dll
115
;extension=php_pdo_sqlite.dll
116
;extension=php_pgsql.dll
117
;extension=php_pspell.dll
118
;extension=php_shmop.dll
119
120
; The MIBS data available in the PHP distribution must be installed. 
121
; See http://www.php.net/manual/en/snmp.installation.php 
122
;extension=php_snmp.dll
123
124
;extension=php_soap.dll
125
;extension=php_sockets.dll
126
;extension=php_sqlite.dll
127
;extension=php_sqlite3.dll
128
;extension=php_sybase_ct.dll
129
;extension=php_tidy.dll
130
;extension=php_xmlrpc.dll
131
;extension=php_xsl.dll
132
;extension=php_zip.dll
133
134
;;;;;;;;;;;;;;;;;;;
135
; Module Settings ;
136
;;;;;;;;;;;;;;;;;;;
137
138
[CLI Server]
139
; Whether the CLI web server uses ANSI color coding in its terminal output.
140
cli_server.color = On
141
142
[Date]
143
date.timezone = Europe/Copenhagen
144
145
[Pdo_mysql]
146
; If mysqlnd is used: Number of cache slots for the internal result set cache
147
; http://php.net/pdo_mysql.cache_size
148
pdo_mysql.cache_size = 2000
149
150
; Default socket name for local MySQL connects.  If empty, uses the built-in
151
; MySQL defaults.
152
; http://php.net/pdo_mysql.default-socket
153
pdo_mysql.default_socket=
154
155
[mail function]
156
SMTP = mail.xxxxxxxx.abc
157
smtp_port = 25
158
159
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
160
mail.add_x_header = On
161
162
[SQL]
163
; http://php.net/sql.safe-mode
164
sql.safe_mode = Off
165
166
[MySQL]
167
; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
168
; http://php.net/mysql.allow_local_infile
169
mysql.allow_local_infile = On
170
171
; Allow or prevent persistent links.
172
; http://php.net/mysql.allow-persistent
173
mysql.allow_persistent = On
174
175
; If mysqlnd is used: Number of cache slots for the internal result set cache
176
; http://php.net/mysql.cache_size
177
mysql.cache_size = 2000
178
179
; Maximum number of persistent links.  -1 means no limit.
180
; http://php.net/mysql.max-persistent
181
mysql.max_persistent = -1
182
183
; Maximum number of links (persistent + non-persistent).  -1 means no limit.
184
; http://php.net/mysql.max-links
185
mysql.max_links = -1
186
187
; Default port number for mysql_connect().  If unset, mysql_connect() will use
188
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
189
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
190
; at MYSQL_PORT.
191
; http://php.net/mysql.default-port
192
mysql.default_port =
193
194
; Default socket name for local MySQL connects.  If empty, uses the built-in
195
; MySQL defaults.
196
; http://php.net/mysql.default-socket
197
mysql.default_socket =
198
199
; Default host for mysql_connect() (doesn't apply in safe mode).
200
; http://php.net/mysql.default-host
201
mysql.default_host =
202
203
; Default user for mysql_connect() (doesn't apply in safe mode).
204
; http://php.net/mysql.default-user
205
mysql.default_user =
206
207
; Default password for mysql_connect() (doesn't apply in safe mode).
208
; Note that this is generally a *bad* idea to store passwords in this file.
209
; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
210
; and reveal this password!  And of course, any users with read access to this
211
; file will be able to reveal the password as well.
212
; http://php.net/mysql.default-password
213
mysql.default_password =
214
215
; Maximum time (in seconds) for connect timeout. -1 means no limit
216
; http://php.net/mysql.connect-timeout
217
mysql.connect_timeout = 60
218
219
; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
220
; SQL-Errors will be displayed.
221
; http://php.net/mysql.trace-mode
222
mysql.trace_mode = Off
223
224
[MySQLi]
225
226
; Maximum number of persistent links.  -1 means no limit.
227
; http://php.net/mysqli.max-persistent
228
mysqli.max_persistent = -1
229
230
; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
231
; http://php.net/mysqli.allow_local_infile
232
;mysqli.allow_local_infile = On
233
234
; Allow or prevent persistent links.
235
; http://php.net/mysqli.allow-persistent
236
mysqli.allow_persistent = On
237
238
; Maximum number of links.  -1 means no limit.
239
; http://php.net/mysqli.max-links
240
mysqli.max_links = -1
241
242
; If mysqlnd is used: Number of cache slots for the internal result set cache
243
; http://php.net/mysqli.cache_size
244
mysqli.cache_size = 2000
245
246
; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
247
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
248
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
249
; at MYSQL_PORT.
250
; http://php.net/mysqli.default-port
251
mysqli.default_port = 3306
252
253
; Default socket name for local MySQL connects.  If empty, uses the built-in
254
; MySQL defaults.
255
; http://php.net/mysqli.default-socket
256
mysqli.default_socket =
257
258
; Default host for mysql_connect() (doesn't apply in safe mode).
259
; http://php.net/mysqli.default-host
260
mysqli.default_host =
261
262
; Default user for mysql_connect() (doesn't apply in safe mode).
263
; http://php.net/mysqli.default-user
264
mysqli.default_user =
265
266
; Default password for mysqli_connect() (doesn't apply in safe mode).
267
; Note that this is generally a *bad* idea to store passwords in this file.
268
; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
269
; and reveal this password!  And of course, any users with read access to this
270
; file will be able to reveal the password as well.
271
; http://php.net/mysqli.default-pw
272
mysqli.default_pw =
273
274
; Allow or prevent reconnect
275
mysqli.reconnect = Off
276
277
[bcmath]
278
; Number of decimal digits for all bcmath functions.
279
; http://php.net/bcmath.scale
280
bcmath.scale = 0
281
282
[Session]
283
session.save_handler = files
284
session.save_path = "C:\Storage\Websites\Apache\-common-\sessions\"
285
session.use_cookies = 1
286
session.use_only_cookies = 1
287
session.name = PHPSESSID
288
session.auto_start = 0
289
session.cookie_lifetime = 0
290
session.cookie_path = /
291
session.cookie_domain =
292
session.cookie_httponly =
293
session.serialize_handler = php
294
session.gc_probability = 1
295
session.gc_divisor = 1000
296
session.gc_maxlifetime = 1440
297
session.bug_compat_42 = Off
298
session.bug_compat_warn = Off
299
session.referer_check =
300
session.cache_limiter = nocache
301
302
; Document expires after n minutes.
303
session.cache_expire = 180
304
305
session.use_trans_sid = 0
306
session.hash_function = 0
307
session.hash_bits_per_character = 5
308
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
309
310
[WinCache]
311
extension = php_wincache.dll
312
313
[PATH=C:\Storage\Websites\Apache\site1_com]
314
open_basedir = "C:\Storage\Websites\Apache\site1\"
315
upload_tmp_dir = "C:\Storage\Websites\Apache\site1\tmp\"
316
;error_reporting = E_ALL
317
;display_errors = On