|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesphp.ini (last revision 2019-12-12 11:56 UTC by drtechno at mail dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-12-12 13:50 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2019-12-12 13:50 UTC] cmb@php.net
[2019-12-13 13:05 UTC] drtechno at mail dot com
-Status: Feedback
+Status: Assigned
[2019-12-13 13:05 UTC] drtechno at mail dot com
[2019-12-13 14:12 UTC] cmb@php.net
-Status: Assigned
+Status: Open
-Assigned To: cmb
+Assigned To:
[2019-12-13 14:12 UTC] cmb@php.net
[2021-01-08 16:46 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-01-08 16:46 UTC] cmb@php.net
[2021-01-17 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
Description: ------------ In this distribution of php, it appears that the default.filter can not be assigned full_special_chars Test script: --------------- <?php if(ini_get('filter.default')!=='full_special_chars'||ini_get('filter.default_flags')!=='0') $ff=ini_get('filter.default'); echo $ff."_Filter! should be full_special_chars Error:"; die('Missing and/or incorrect filter.default and/or filter.default_flags directives in php.ini'); if (isset($_GET["name"])){ Attached in the Patch upload is my php.ini file (that the filter doesn't work) Expected result: ---------------- The script on the php would execute normally. Actual result: -------------- unsafe_raw_Filter! should be full_special_chars Error:Missing and/or incorrect filter.default and/or filter.default_flags directives in php.ini