#
f9e0d94a |
| 11-Feb-2000 |
Andi Gutmans |
- Baby steps with PHP_WIN32 :) |
#
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 |
#
091acff3 |
| 10-Feb-2000 |
Andi Gutmans |
- PHP_WIN32 |
#
f452c776 |
| 10-Feb-2000 |
Andi Gutmans |
- Introduce PHP_WIN32 |
#
945e9c3f |
| 10-Feb-2000 |
Zeev Suraski |
More cleanup |
#
073b1481 |
| 10-Feb-2000 |
Zeev Suraski |
More abstraction |
#
59b53ea2 |
| 10-Feb-2000 |
Zeev Suraski |
Always use getopt with CGI, never use it for anything else |
#
404bbe1f |
| 10-Feb-2000 |
Zeev Suraski |
Move the logging mechanism to SAPI |
#
1616b519 |
| 05-Feb-2000 |
Thies C. Arntzen |
@- Fixed signal() bug that could cause the Apache master process to @ die. (Thies) the problem was that we *did* register the signal in the apache master process as well. php_mo
@- Fixed signal() bug that could cause the Apache master process to @ die. (Thies) the problem was that we *did* register the signal in the apache master process as well. php_module_startup() -> REGISTER_INI_ENTRIES() -> OnChangeMaxExecutionTime() -> php_set_timeout(). from now on the .ini mechanism only sets PG(max_execution_time) and that gets "converted" to a timeout-signal() in php_request_startup()! we still need to think about the ZTS timeout mechanism.
show more ...
|
#
3a816341 |
| 05-Feb-2000 |
Zeev Suraski |
Cleanup patches |
#
8055da98 |
| 04-Feb-2000 |
Zeev Suraski |
Use the new state functions @- If header information is sent after output has already been sent, the warning @ message will now state the filename and line number at which the first output
Use the new state functions @- If header information is sent after output has already been sent, the warning @ message will now state the filename and line number at which the first output @ was made (Zeev)
show more ...
|
#
430571d6 |
| 30-Jan-2000 |
Zeev Suraski |
Initial work on the protected env vars stuff |
#
680d2dae |
| 29-Jan-2000 |
Zeev Suraski |
Fix buglets in the argv/argc code |
#
b2449f92 |
| 29-Jan-2000 |
Zeev Suraski |
- Change the argument order of php_register_variable() to something more intuitive. - Make the authentication variables be a part of the HTTP_SERVER_VARS[] array |
#
99f079a3 |
| 28-Jan-2000 |
Zeev Suraski |
- A few fixes - Added register_argv_argc directive to allow disabling of argv/argc |
#
ab16816e |
| 28-Jan-2000 |
Zeev Suraski |
Rename gpc_globals to register_globals |
#
e02d610d |
| 28-Jan-2000 |
Andrei Zmievski |
Use sizeof on the proper string. |
#
9ab35ae3 |
| 28-Jan-2000 |
Zeev Suraski |
Tried to centralize global variable registration as much as possible: - Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly to $HTTP_GET_VARS[], contain environment
Tried to centralize global variable registration as much as possible: - 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)
show more ...
|
#
fc678100 |
| 28-Jan-2000 |
Zeev Suraski |
post.c really had nothing to do with POST anymore, and it belongs to the top level directory |
#
97f64988 |
| 24-Jan-2000 |
Zeev Suraski |
NULL out the ticks callback until Stig implements it |
#
f6ac1884 |
| 18-Jan-2000 |
Zeev Suraski |
Make the phpinfo() images work properly again |
#
ec386cc9 |
| 16-Jan-2000 |
Zeev Suraski |
- Remove the pre-request-shutdown hooks, they should no longer be necessary. The session module may not work due to an unknown (and until now, IMO, misdiagnosed) problem, if it does, please r
- Remove the pre-request-shutdown hooks, they should no longer be necessary. The session module may not work due to an unknown (and until now, IMO, misdiagnosed) problem, if it does, please report it!
show more ...
|
Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH |
|
#
2dea694a |
| 16-Jan-2000 |
Zeev Suraski |
Remove the post-startup callback support. Modules are now started only after the entire engine is started. People - please make sure that the session module works properly for you. |