- php_value register_globals 0 (was already here thanks to Jeremy Newman's patch)

- php_value short_open_tag 0 (disable shorttags so that we can use <?xml in the future)
- php_value session.bug_compat_42 0 (session works well without the workaround so let's disable it)
- php_value register_long_arrays 0 (we are not using the old long arrays ($HTTP_SESSION_VARS and so on)
This commit is contained in:
Jonathan Ernst
2004-12-14 02:30:06 +00:00
committed by WineHQ
parent f250434f2a
commit 55a0ba3db6

View File

@@ -7,6 +7,9 @@ DirectoryIndex index.php
# 404 not found document
ErrorDocument 404 http://www.winehq.org/site/404
# Tell PHP how we want to handle global vars
# Modify the PHP configuration (global vars, etc.)
php_value register_globals 0
php_value short_open_tag 0
php_value session.bug_compat_42 0
php_value register_long_arrays 0