Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - MFH | Derick Rethans | 2003-04-28 | 1 | -3/+3 |
| | |||||
* | - MFH | Derick Rethans | 2003-04-28 | 1 | -3/+3 |
| | |||||
* | # on working disk again | Sascha Schumann | 2003-04-28 | 1 | -31/+23 |
| | | | | | reverting code, moving to correct branch | ||||
* | # disk going bad, rescuing data | Sascha Schumann | 2003-04-28 | 1 | -23/+31 |
| | | | | | improve php_url_encode a bit | ||||
* | MFH(r-1.336): added missing sanity check in fgetcsv() | Moriyoshi Koizumi | 2003-04-28 | 1 | -30/+31 |
| | | | | | | Partly synchronised indents with HEAD # please merge CS fixes to branches too, or leave them as is :( | ||||
* | MFH: Fix for #23340; fopen on multiple urls from the same server crashes. | Wez Furlong | 2003-04-28 | 1 | -1/+12 |
| | |||||
* | This caused more mess than good, revert to the way it was in 4.3.0... | Zeev Suraski | 2003-04-27 | 1 | -34/+30 |
| | |||||
* | fix TSRM | Stanislav Malyshev | 2003-04-27 | 1 | -1/+1 |
| | |||||
* | Fix very nasty bug - session cookie kills one of the cookies | Stanislav Malyshev | 2003-04-27 | 1 | -10/+10 |
| | | | | | | | | | | | | set before it on certain non-Apache SAPIs. # for example, this code: # <? # setcookie("abc", 1); # setcookie("def", 2); # session_start(); # ?> # would output only 'def' cookie on CGI and ISAPI | ||||
* | Fix the lack of SSL certificate verification support for ssl:// sockets and | Wez Furlong | 2003-04-26 | 6 | -7/+264 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https:// streams. This code is essential for people writing secure applications in order to avoid man-in-the-middle attacks, and is thus regarded as a bug fix. It is, however, optional; you need to explicitly turn on the verification functionality, as it depends on you to specify your trusted certificate chain. This sample demonstrates a secured https:// request, making use of the CA bundle provided by curl: <?php $ctx = stream_context_create(); // Turn on verification stream_context_set_option($ctx, "ssl", "verify_peer", true); // Set the CA bundle (trusted certificate chain) stream_context_set_option($ctx, "ssl", "cafile", "/usr/local/share/curl/curl-ca-bundle.crt"); $fp = fopen("https://www.zend.com", "rb", false, $ctx); ?> This sample demonstrates how to roll your own https:// request, and specify a certificate to use for authentication; the local_cert and passphrase options will also work for fopen(). <?php $ctx = stream_context_create(); stream_context_set_option($ctx, "ssl", "verify_peer", true); stream_context_set_option($ctx, "ssl", "cafile", "/usr/local/share/curl/curl-ca-bundle.crt"); // set local cert. it MUST be a PEM encoded file containing the certificate // AND your private key. It can also contain the certificate chain of issuers. stream_context_set_option($ctx, "ssl", "local_cert", "/path/to/my/cert.pem"); stream_context_set_option($ctx, "ssl", "passphrase", "secret!"); // Set the common name that we are expecting; PHP will perform limited wildcard // matching. If the CN does not match this, the connection attempt will fail. // The value to specify will always be the same as the Host: header you specify. stream_context_set_option($ctx, "ssl", "CN_match", "secure.sample.domain"); $ssl = fsockopen("ssl://secure.sample.domain", 443, $errno, $errstr, 10, $ctx); if ($ssl) { fwrite($ssl, "GET / HTTP/1.0\r\nHost: secure.sample.domain\r\n\r\n"); fpassthru($ssl); } ?> | ||||
* | MFH | Ilia Alshanetsky | 2003-04-25 | 1 | -3/+3 |
| | |||||
* | MFH: compile fixes for AIX/HPUX | foobar | 2003-04-25 | 1 | -5/+17 |
| | |||||
* | MFH(r-1.172): moved copyright notice to the better place | Moriyoshi Koizumi | 2003-04-25 | 1 | -1/+4 |
| | |||||
* | MFH(r-1.171): added a bogus copyright notice | Moriyoshi Koizumi | 2003-04-25 | 1 | -0/+1 |
| | |||||
* | MFH | foobar | 2003-04-25 | 8 | -76/+50 |
| | |||||
* | This commit was manufactured by cvs2svn to create branch 'PHP_4_3'. | SVN Migration | 2003-04-25 | 1 | -0/+9 |
| | |||||
* | MFH: Fixed bug #23099 (ext/interbase: "libgds.so: undefined reference to ↵ | foobar | 2003-04-25 | 1 | -3/+11 |
| | | | | 'crypt'") | ||||
* | This commit was manufactured by cvs2svn to create branch 'PHP_4_3'. | SVN Migration | 2003-04-25 | 6 | -0/+125 |
| | |||||
* | MFH | foobar | 2003-04-25 | 1 | -0/+3 |
| | |||||
* | emalloc -> safe_emalloc | Ilia Alshanetsky | 2003-04-25 | 4 | -22/+22 |
| | |||||
* | emalloc -> safe_emalloc | Ilia Alshanetsky | 2003-04-25 | 1 | -2/+2 |
| | |||||
* | minor compiler incompatability fixes | David Hill | 2003-04-24 | 1 | -0/+1 |
| | |||||
* | emalloc -> safe_emalloc | Ilia Alshanetsky | 2003-04-24 | 2 | -9/+9 |
| | |||||
* | MFH | foobar | 2003-04-23 | 1 | -1/+3 |
| | |||||
* | emalloc -> safe_emalloc | Ilia Alshanetsky | 2003-04-23 | 6 | -39/+39 |
| | |||||
* | &039; which is a single-quote may also come in as &39; I see no reason | Rasmus Lerdorf | 2003-04-22 | 1 | -0/+1 |
| | | | | | not to handle both in html_entity_decode() | ||||
* | Drop php_info_print_table_row_ex from the 4.3 branch | Sascha Schumann | 2003-04-22 | 2 | -28/+5 |
| | |||||
* | emalloc -> safe_emalloc. | Ilia Alshanetsky | 2003-04-22 | 4 | -17/+17 |
| | |||||
* | MFH(r-1.136): the feature is less relevant to encoding conversion indeed | Moriyoshi Koizumi | 2003-04-21 | 1 | -2/+2 |
| | |||||
* | MFH: Fixed bug #23198 | foobar | 2003-04-21 | 1 | -2/+5 |
| | |||||
* | MFH | Ilia Alshanetsky | 2003-04-19 | 1 | -1/+1 |
| | |||||
* | MFH | Ilia Alshanetsky | 2003-04-19 | 1 | -5/+2 |
| | |||||
* | MFH | Sascha Schumann | 2003-04-19 | 2 | -5/+28 |
| | |||||
* | MFH(r-1.135, r-1.268): made phpinfo() / gd_info() indicate availability of | Moriyoshi Koizumi | 2003-04-19 | 2 | -1/+10 |
| | | | | | JIS feature | ||||
* | MFH(r-1.134): fixed help text alignment | Moriyoshi Koizumi | 2003-04-19 | 1 | -1/+1 |
| | |||||
* | Don't spill our (PHP) HAVE_PGSQL/MYSQL into the mnogo header(s) | Sascha Schumann | 2003-04-19 | 1 | -0/+2 |
| | |||||
* | remove useless prototype | Sascha Schumann | 2003-04-19 | 1 | -2/+0 |
| | |||||
* | added an option to support japanese encoding conversion in bundled gd. | Rui Hirokawa | 2003-04-19 | 1 | -0/+14 |
| | |||||
* | MFH | Ilia Alshanetsky | 2003-04-18 | 1 | -0/+7 |
| | |||||
* | MFH | foobar | 2003-04-17 | 2 | -17/+18 |
| | |||||
* | MFH: fix some segfaults in some pg_lo_* functions | Jay Smith | 2003-04-17 | 1 | -1/+17 |
| | |||||
* | touch | foobar | 2003-04-17 | 1 | -2/+2 |
| | |||||
* | Integer overflow stuff. | Ilia Alshanetsky | 2003-04-16 | 1 | -4/+8 |
| | |||||
* | safe_emalloc() and few other integer overflow fixes. | Ilia Alshanetsky | 2003-04-16 | 1 | -10/+13 |
| | |||||
* | MFH(r-1.226, r-1.24, r-1.99, r-1.68): fixed implicit cast issue | Moriyoshi Koizumi | 2003-04-16 | 4 | -7/+7 |
| | |||||
* | MFH(r-1.9): fixed bug #19795 | Moriyoshi Koizumi | 2003-04-16 | 1 | -13/+13 |
| | |||||
* | MFH(r-1.10): fixed typo | Moriyoshi Koizumi | 2003-04-16 | 1 | -3/+3 |
| | |||||
* | MFH(r-1.137): compiler warning fix & possible 64bit fix | Moriyoshi Koizumi | 2003-04-16 | 1 | -1/+2 |
| | |||||
* | safe_emalloc() | Marcus Boerger | 2003-04-16 | 3 | -8/+6 |
| | |||||
* | MFH: prepare for safe_emalloc | Marcus Boerger | 2003-04-16 | 1 | -111/+120 |
| |