History log of /PHP-5.3/main/SAPI.h (Results 76 – 100 of 133)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 2b060b3b 26-Oct-2000 Sascha Schumann

Add sapi_add_header_ex, which lets you specify whether you want
to add or replace a header.


# bccdaff6 23-Oct-2000 Rasmus Lerdorf

Move server_filter to an extension-specific global


# 32b10882 22-Oct-2000 Rasmus Lerdorf

Need a global server filter for the Apache 2.0 module


# 545ae277 13-Oct-2000 Hartmut Holzgraefe

post handler registration done right
(never use emalloc in an extension MINIT function)


# 22e48a81 11-Oct-2000 Hartmut Holzgraefe

@ - POST handler for Adobe FDF format (Hartmut)
the FDF handler is now working and totaly living
in the fdf extension, no more special code in
main is needed


Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1
# b7ecaacd 09-Sep-2000 Zeev Suraski

More security-related (control) patches:
- Avoid displaying errors during startup, unless display_startup_errors is enabled.
- Implemented post_size_max limit. Defaults to 8MB.
- Impleme

More security-related (control) patches:
- 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).

show more ...


# 75086e30 08-Sep-2000 Zeev Suraski

- Implemented is_upload_file()


# 91c808ec 08-Sep-2000 Zeev Suraski

Restore the headers_only test to the centralized SAPI startup. If necessary, it can
be overriden in the activate() callback.


Revision tags: php-4.0.2, PRE_LIBMYSQL_REVERT, php-4.0.2RC1
# 320105bc 20-Aug-2000 Sascha Schumann

Use size_t as parameter type in the getenv member of struct sapi_module


Revision tags: PRE_FILE_COMPILE_API_CHANGE, PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# 16017f6d 02-Jul-2000 Sascha Schumann

Change header protection macros to conform to standard.

Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

All identifiers that begin with an underscore and either an

Change header protection macros to conform to standard.

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.

show more ...


Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2
# 4010b422 26-Jun-2000 Andrei Zmievski

Separate plain name returned by php_sapi_module() and pretty name
used for output.


Revision tags: php-4.0.1RC, PRE_EIGHT_BYTE_ALLOC_PATCH, php-4.0.0
# e043439f 18-May-2000 Zeev Suraski

Update the license with the new clause 6


Revision tags: php-4.0RC2
# 3220bb57 28-Apr-2000 Zeev Suraski

- Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it

- Fix an invalid trick (it was valid when header() was using
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

show more ...


# 53586378 01-Apr-2000 Zeev Suraski

@- Fix a problem when dealing with large POST blocks in CGI mode


Revision tags: PHP-4.0-RC1
# c32e09f7 20-Mar-2000 Rasmus Lerdorf

As it turns out, there are some browsers that can't handle default
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

As it turns out, there are some browsers that can't handle default
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

show more ...


# 245428b2 19-Mar-2000 Thies C. Arntzen

fix some protos


# a508bec8 26-Feb-2000 Zeev Suraski

- From CODING_STANDARDS:
[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,

- From CODING_STANDARDS:
[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

show more ...


# d23e5d83 25-Feb-2000 Stig Bakken

@- Implemented default_charset and default_mimetype config directives (Stig)
Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.


# ba03c9f2 24-Feb-2000 Stig Bakken

started implementing directives for default mimetype/charset


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1
# 9b621d1c 19-Feb-2000 Zeev Suraski

Get the license right... (this won't make it to RC1 of B4)


# a6393de6 17-Feb-2000 Zeev Suraski

Make POST handling the way it should be. RFC1867, and any future POST handlers we might
have in the future now obey to the variables_order directive, and there's a real way modular
way to ha

Make POST handling the way it should be. RFC1867, and any future POST 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)

show more ...


Revision tags: BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 80bdd19e 11-Feb-2000 Zeev Suraski

Fine tune Andi's patch


# 49e98c3d 10-Feb-2000 Zeev Suraski

request_info.c is dead! long live SAPI
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@

request_info.c is dead! long live SAPI
@- 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)

show more ...


# 6723bdd9 10-Feb-2000 Zeev Suraski

request_info.c is giving up


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# 5bdd18ca 10-Feb-2000 Zeev Suraski

Yes, you guessed it... More cleanup


123456