#
723bbcbe |
| 03-Aug-2001 |
Sascha Schumann |
Do the nul'ifiying of php_var_serialize's result at the right place |
#
4a1943c5 |
| 03-Aug-2001 |
Sascha Schumann |
Pass on nul'ified data |
#
60024a46 |
| 03-Aug-2001 |
Sascha Schumann |
Add some casts |
#
4dfa9154 |
| 03-Aug-2001 |
Sascha Schumann |
Convert serializer to smart_str.. avoids lots of sprintf's and copying of data. |
#
797a079a |
| 30-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH work, and a bit of cleanup |
#
d87cc976 |
| 28-Jul-2001 |
Zeev Suraski |
Redesigned thread safety mechanism - nua nua |
#
fe6f8712 |
| 27-Jul-2001 |
Zeev Suraski |
- Get rid of ELS_*(), and use TSRMLS_*() instead. - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any unco
- Get rid of ELS_*(), and use TSRMLS_*() instead. - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
show more ...
|
Revision tags: PRE_TSRM_MERGE_PATCH |
|
#
00596b41 |
| 25-Jul-2001 |
Sascha Schumann |
Get rid of memchr |
#
6f297a37 |
| 20-Jul-2001 |
Zeev Suraski |
Fix Windows build |
#
9576ab24 |
| 18-Jul-2001 |
Sascha Schumann |
Instead of using the poor system rand() algorithm and the system-time seed, rely on the long-living LCG to determine whether to start the GC process. |
#
249c010d |
| 13-Jul-2001 |
Thies C. Arntzen |
make regession test of session work without the ugly hack in session.c and removed that ugly hack. |
#
319149fd |
| 11-Jul-2001 |
Hartmut Holzgraefe |
workaround to make ext/session well behaved with 'make test' and E_ALL |
#
e15d0193 |
| 11-Jul-2001 |
Hartmut Holzgraefe |
cleanup in preparation for session_readonly() |
#
ef13ab57 |
| 04-Jul-2001 |
Sascha Schumann |
Improve url scanner speed (up to 40% for large chunks of data) and handle some corner cases better. The scanner has been changed to the format as proposed in "RE2C - A More Versatile Scanner
Improve url scanner speed (up to 40% for large chunks of data) and handle some corner cases better. The scanner has been changed to the format as proposed in "RE2C - A More Versatile Scanner Generator" by Cowan et al.
show more ...
|
#
7f08918b |
| 29-Jun-2001 |
Hartmut Holzgraefe |
suppress sending of cookies if session id already came from a non-cookie source |
Revision tags: PRE_GRANULAR_GARBAGE_FIX |
|
#
bd4f32cf |
| 21-Jun-2001 |
Thies C. Arntzen |
- fixed the reference in session thingie - regression test checked (this time;-) - added new regression test for references - references _between_ session variables also work in when the
- fixed the reference in session thingie - regression test checked (this time;-) - added new regression test for references - references _between_ session variables also work in when the session var replaces an already existing global var (this was a brain twister) - saved one strlen call per session variable - fixed one tiny leak
show more ...
|
#
375ef3ae |
| 20-Jun-2001 |
Sascha Schumann |
Back out severely broken patch. I currently don't have the time to debug this. Please reapply a fixed version. |
Revision tags: php-4.0.6 |
|
#
45f62992 |
| 20-Jun-2001 |
Thies C. Arntzen |
@- Fixed references in sessions. This doesn't work when using the @ WDDX session-serializer. Also improved speed of sessions. (Thies) from now on php_set_session_var no longer copies the var
@- Fixed references in sessions. This doesn't work when using the @ WDDX session-serializer. Also improved speed of sessions. (Thies) from now on php_set_session_var no longer copies the variable recovered from a session (tested with php, php_binary and wddx). this should speed up session deserializing quite a bit. (this damn thing has cost me 6 hours of my life;-)
show more ...
|
Revision tags: php-4.0.6RC4 |
|
#
22790c96 |
| 10-Jun-2001 |
Harald Radi |
removed warnings |
#
5ebe991c |
| 10-Jun-2001 |
Sascha Schumann |
Signal that no entry was found |
#
b31801b2 |
| 08-Jun-2001 |
Sascha Schumann |
Check for http_session_vars != NULL. |
Revision tags: php-4.0.6RC3 |
|
#
9c558821 |
| 06-Jun-2001 |
Rasmus Lerdorf |
Fold a bit more code |
Revision tags: php-4.0.6RC2 |
|
#
1beda9ee |
| 24-May-2001 |
Stig Bakken |
* include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) |
#
5e112d43 |
| 23-May-2001 |
Sascha Schumann |
Due to dynamic registration of storage handlers, OnUpdateSaveHandler might be called before that registration takes place and hence the INI update is dismissed. In that case, we defer the lo
Due to dynamic registration of storage handlers, OnUpdateSaveHandler might be called before that registration takes place and hence the INI update is dismissed. In that case, we defer the lookup to the first request init.
show more ...
|
#
699489d4 |
| 22-May-2001 |
Andrei Zmievski |
@- Made $HTTP_SESSION_VARS['foo'] and $foo be references to the same value @ when register_globals is on. (Andrei) |