Edit report at https://bugs.php.net/bug.php?id=69954&edit=1
ID: 69954 Updated by: [email protected] Reported by: chris at 602 dot org Summary: 404 on URL referenced in mysqlnd.collect_statistics -Status: Verified +Status: Closed Type: Bug Package: Website problem PHP Version: 5.6.10 Block user comment: N Private report: N New Comment: Automatic comment on behalf of [email protected] Revision: http://git.php.net/?p=php-src.git;a=commit;h=14609ca6ff17b3091584bb37ee08dcbff7beb2a4 Log: Fix bug #69954 and remove pdo_mysql.cache_size and mysqli.cache_size INI directives Previous Comments: ------------------------------------------------------------------------ [2015-09-08 22:41:13] [email protected] This is not a documentation issue, but rather a website problem: some of the short-cut links to the configuration options are broken. Either these will be fixed, or we'd have to replace the links in the provided php.ini files with the actual URIs. ------------------------------------------------------------------------ [2015-06-27 21:40:23] chris at 602 dot org Description: ------------ >From PHP src php-5.6.10.tar.gz, the example php-5.6.10/php.ini-development and >php-5.6.10/php.ini-production config files have comments that reference >several URLs which are 404: //php.net/enable-post-data-reading //php.net/internal-encoding //php.net/input-encoding //php.net/output-encoding //php.net/pdo_mysql.cache_size //php.net/pdo_mysql.default-socket //php.net/mysql.cache_size //php.net/mysqli.max-persistent //php.net/mysqli.cache_size //php.net/mysqlnd.collect_statistics //php.net/mysqlnd.collect_memory_statistics //php.net/mysqlnd.net_cmd_buffer_size //php.net/mysqlnd.net_read_buffer_size Note: I removed http from the URLs to avoid setting off is_spam() per https://github.com/php/web-bugs/blob/master/include/functions.php Test script: --------------- curl -s http://php.net/distributions/php-5.6.10.tar.gz|tar xz && grep '; http://php.net' php-5.6.10/php.ini-development|awk '{ print $NF }'|while read phpurl; do location=`curl -s -I "$phpurl"|grep Location:|tail -n1`; if [[ $location == *"show=404"* ]]; then echo "$phpurl 404: $location" | tee -a php.404; fi; sleep 1; done Expected result: ---------------- Expecting specific documentation available when referenced. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=69954&edit=1 -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
