| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
to add or replace a header.
|
| |
|
| |
|
|
|
|
|
| |
(never use emalloc in an extension MINIT function)
|
|
|
|
|
|
|
| |
the FDF handler is now working and totaly living
in the fdf extension, no more special code in
main is needed
|
|
|
|
|
|
|
| |
- Avoid displaying errors during startup, unless display_startup_errors is enabled.
- Implemented post_size_max limit. Defaults to 8MB.
- Implemented file_uploads on/off directive (defaults to on).
|
| |
|
|
|
|
|
|
|
| |
necessary, it can
be overriden in the activate() callback.
|
| |
|
|
|
|
|
|
|
|
|
| |
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
|
|
|
|
|
| |
used for output.
|
| |
|
|
|
|
|
|
|
| |
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it anyway).
- Remove a redundant function call
|
| |
|
|
|
|
|
|
|
| |
charsets. I think forcing this on is going to cause us a lot of headache,
so turn it off by default.
@ Don't default to iso-8859-1 since this confuses some browsers
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
[6] NEVER USE strncat(). If you're absolutely sure you know what you're doing,
check its man page again, and only then, consider using it, and even then,
try avoiding it.
strncat() is your enemy!
- Fix several SAPI services, get rid of the default_content_type (it's always
composed of the mime type and charset now).
- Win32 works again
|
|
|
|
|
|
| |
Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
handlers we might
have in the future now obey to the variables_order directive, and there's a real way modular
way to handle POST content.
This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission
@- Made multipart/form-data content obey to the variables_order directive (Zeev)
|
| |
|
|
|
|
|
|
|
| |
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@ interface modules (Zeev)
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly
to $HTTP_GET_VARS[], contain environment and server variables. Setting
register_globals to Off will now also prevent registration of the
environment and server variables into the global scope (Zeev)
- Renamed gpc_globals to register_globals (Zeev)
- Introduced variables_order that deprecates gpc_order, and allows control
over the server and environment variables, in addition to GET/POST/Cookies
(Zeev)
|
|
|
|
|
|
|
|
| |
- Got rid of the old flush() implemenetation in favour of the new one
- Added implicit_flush() support to the output buffering layer.
@- Added implicit_flush() to control whether flush() should be called
@ implicitly after any output (Zeev)
|
|
|
|
|
| |
you start counting at 0 or 1).
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
@Made mysql and gd work as shared extensions again (Stig)
- Fixed some warnings in maintainer-mode.
- Made mysql and gd work as shared extensions again by defining
COMPILE_DL if PIC is defined.
# We need a better solution for building .so extensions than this
# PIC/COMPILE_DL hack!
|
|
|
|
|
| |
- Introduce the convert_to_*_ex() API in strlen()
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
supported at this time, but the framework allows for any other types, including
runtime addition of types.
|
|
|
|
|
|
| |
* Refine SAPI built in header support
* Use DllMain() in ISAPI to clean after threads and initialize tsrm/sapi as soon as possible.
|
|
|
|
|
|
| |
This will allow us to efficiently support file upload through SAPI in the future.
* Fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
things.
* Fully implement ISAPI support - POST and cookies among other things.
* Almost completely rewrote phpinfo(). Allow modules to easily display their
information in phpinfo() without modifying phpinfo() itself (prototype for
the module info function was changed, thus the large amount of updated module
files).
* Initial extended SAPI support for Apache, completely untested.
* CGI now uses SAPI fully as well.
|
|
|
|
|
|
| |
* Warn about adding header information after headers are sent
* Several fixes
|
|
|
|
|
| |
Apache compatability fix
|