From: Janusz Dobrowolski Date: Wed, 18 Mar 2009 12:22:49 +0000 (+0000) Subject: Additional checks and fixes of php settings in GI mode. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=06213b0470a3451fab33d35d89a52dd15ed19e30;p=textcart.git Additional checks and fixes of php settings in GI mode. --- diff --git a/.htaccess b/.htaccess index b923b02..de47e67 100644 --- a/.htaccess +++ b/.htaccess @@ -2,8 +2,14 @@ # Maybe you might have problems # with other scripts that needs # register_globals ON -php_flag magic_quotes_gpc Off -php_flag register_globals Off + + php_flag magic_quotes_gpc Off + php_flag register_globals Off + + + php_flag magic_quotes_gpc Off + php_flag register_globals Off + #Sometimes neccessary to add those # diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 560c746..0d0ca15 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -24,6 +24,12 @@ $ -> Affected files ! Release 2.1 $ config.php +18-Mar-2009 Janusz Dobrowolski +# Additional php.ini checks and fixes for php in CGI mode +$ /.htaccess + /install.html + /install/index.php + 16-Mar-2009 Janusz Dobrowolski # Fixed redirection after order cancelation. $ /sales/sales_order_entry.php diff --git a/install/index.php b/install/index.php index 1c78b53..99d810a 100644 --- a/install/index.php +++ b/install/index.php @@ -131,6 +131,30 @@ function change_os(type) { ?> + + + Magic Quotes GPC + + Enabled'; + } else { + echo 'Disabled'; + } + ?> + + Register Globals + + Enabled'; + } else { + echo 'Disabled'; + } + ?> + + +