Changes between Initial Version and Version 1 of Ticket #24201
- Timestamp:
- 04/26/2013 01:51:27 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24201
- Property Version 3.5.1 → 3.1
-
Ticket #24201 – Description
initial v1 6 6 7 7 Example: 8 {{{ 8 9 define(WP_PROXY_BYPASS_HOSTS, '*.example.com'); 9 10 }}} 10 11 foo.bar.example.com will not use proxy. 11 12 foo-bar.example.com will use proxy. … … 13 14 POSSIBLE SOLUTION: 14 15 Change the line 1411 from 16 {{{ 15 17 $wildcard_regex[] = str_replace('\*', '[\w.]+?', preg_quote($host, '/')); 18 }}} 16 19 to 20 {{{ 17 21 $wildcard_regex[] = str_replace('\*', '[\w.-]+?', preg_quote($host, '/')); 18 19 [[BR]] 20 22 }}} 21 23 22 24 Yours, 23 [[BR]]24 25 26 25 Erich Lerch
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)