Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | added private_no_expire mode on session patched by Yasuo Ohgaki. | Rui Hirokawa | 2001-11-02 | 1 | -0/+11 | |
| | ||||||
* | Fix ZTS build. | Andrei Zmievski | 2001-10-22 | 1 | -1/+0 | |
| | ||||||
* | @- Added session_cache_expire() function. (patch from anuradha@gnu.org) | Andrei Zmievski | 2001-10-22 | 1 | -0/+24 | |
| | ||||||
* | fix ws issue introduce in my use_trans_sid commit... | Sterling Hughes | 2001-10-18 | 1 | -2/+2 | |
| | | | | | # still getting used to emacs | |||||
* | fix formatting, this line really was too long ;) | Sterling Hughes | 2001-10-18 | 1 | -1/+5 | |
| | ||||||
* | force use of the session.use_trans_sid setting | Sterling Hughes | 2001-10-18 | 1 | -4/+6 | |
| | ||||||
* | * zend_module_entry change: apino, debug and zts are moved first, | Stig Bakken | 2001-10-11 | 1 | -0/+2 | |
| | | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) | |||||
* | Always seed the LCG from the request-init hook, otherwise the seed | Sascha Schumann | 2001-09-21 | 1 | -4/+8 | |
| | | | | | | | | | would be shared among the threads which is quite pointless. Also use a function of the current time as one factor. Use gettimeofday() instead of time(), because it is faster on some operating systems. | |||||
* | revert last commit. Guys, discuss such things first, then commit. Mkay? | Sascha Schumann | 2001-09-11 | 1 | -10/+3 | |
| | ||||||
* | Add an API function for setting the session id from a session module... | Sterling Hughes | 2001-09-11 | 1 | -3/+10 | |
| | | | | | # The SRM folks wanted/needed this | |||||
* | - Don't wrap lines... this is annoying while coding. | Derick Rethans | 2001-09-09 | 1 | -2/+2 | |
| | ||||||
* | Restore session_adapt_url() | Zeev Suraski | 2001-08-31 | 1 | -6/+16 | |
| | ||||||
* | Cleanup and clarify | Zeev Suraski | 2001-08-31 | 1 | -12/+6 | |
| | ||||||
* | define_sid updates | Zeev Suraski | 2001-08-31 | 1 | -8/+6 | |
| | ||||||
* | Fix trans_sid handler registration logic | Zeev Suraski | 2001-08-31 | 1 | -1/+1 | |
| | ||||||
* | Cleanup | Zeev Suraski | 2001-08-27 | 1 | -16/+2 | |
| | ||||||
* | More fixes and refinements | Zeev Suraski | 2001-08-27 | 1 | -17/+15 | |
| | ||||||
* | Fix my session updates. | Zeev Suraski | 2001-08-26 | 1 | -10/+18 | |
| | | | | | | trans_sid handling will no longer slow down performance unless a session is actually in use. | |||||
* | Fix trans-sid. | Zeev Suraski | 2001-08-26 | 1 | -8/+14 | |
| | | | | | | Still need to figure out how to turn trans-sid only when sessions are actually used. | |||||
* | Make the session module more independent | Zeev Suraski | 2001-08-26 | 1 | -28/+35 | |
| | ||||||
* | Get rid of TRANS_SID - it's always possible to use it now. | Zeev Suraski | 2001-08-25 | 1 | -3/+9 | |
| | ||||||
* | Move the trans-sid mechanism to use the output buffering mechanism. | Zeev Suraski | 2001-08-25 | 1 | -13/+27 | |
| | | | | | | | | Advantages: - Would work with the output buffering mechanism in general, and with output compression in particular - Should yield better performance (untested as of yet) | |||||
* | API update | Zeev Suraski | 2001-08-21 | 1 | -1/+1 | |
| | ||||||
* | Track down a few more functions that don't check for 0 args and use | Rasmus Lerdorf | 2001-08-13 | 1 | -4/+6 | |
| | | | | | faster mechanism | |||||
* | We don't consistently check for args passed to functions that don't | Rasmus Lerdorf | 2001-08-13 | 1 | -0/+7 | |
| | | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there. | |||||
* | Added $_SESSION to the $_* family. | foobar | 2001-08-11 | 1 | -7/+12 | |
| | ||||||
* | more tsrm cleanup | Sascha Schumann | 2001-08-06 | 1 | -2/+2 | |
| | ||||||
* | more tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -4/+4 | |
| | ||||||
* | more tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -3/+3 | |
| | ||||||
* | more tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -6/+6 | |
| | ||||||
* | further tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -14/+8 | |
| | ||||||
* | - TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -1/+1 | |
| | | | | | - whitespace fixes | |||||
* | Do the nul'ifiying of php_var_serialize's result at the right place | Sascha Schumann | 2001-08-03 | 1 | -4/+0 | |
| | ||||||
* | Pass on nul'ified data | Sascha Schumann | 2001-08-03 | 1 | -0/+4 | |
| | ||||||
* | Add some casts | Sascha Schumann | 2001-08-03 | 1 | -3/+3 | |
| | ||||||
* | Convert serializer to smart_str.. avoids lots of sprintf's and | Sascha Schumann | 2001-08-03 | 1 | -36/+17 | |
| | | | | | copying of data. | |||||
* | More TSRMLS_FETCH work, and a bit of cleanup | Zeev Suraski | 2001-07-30 | 1 | -7/+0 | |
| | ||||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -93/+63 | |
| | ||||||
* | - Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -5/+5 | |
| | | | | | | | - 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... | |||||
* | Get rid of memchr | Sascha Schumann | 2001-07-25 | 1 | -3/+12 | |
| | ||||||
* | Fix Windows build | Zeev Suraski | 2001-07-20 | 1 | -1/+0 | |
| | ||||||
* | Instead of using the poor system rand() algorithm and the | Sascha Schumann | 2001-07-18 | 1 | -3/+2 | |
| | | | | | | system-time seed, rely on the long-living LCG to determine whether to start the GC process. | |||||
* | make regession test of session work without the ugly hack in session.c | Thies C. Arntzen | 2001-07-13 | 1 | -7/+0 | |
| | | | | | and removed that ugly hack. | |||||
* | workaround to make ext/session well behaved with 'make test' and E_ALL | Hartmut Holzgraefe | 2001-07-11 | 1 | -1/+9 | |
| | ||||||
* | cleanup in preparation for session_readonly() | Hartmut Holzgraefe | 2001-07-11 | 1 | -12/+12 | |
| | ||||||
* | Improve url scanner speed (up to 40% for large chunks of data) | Sascha Schumann | 2001-07-04 | 1 | -0/+10 | |
| | | | | | | | 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. | |||||
* | suppress sending of cookies if session id already came | Hartmut Holzgraefe | 2001-06-29 | 1 | -0/+2 | |
| | | | | | from a non-cookie source | |||||
* | - fixed the reference in session thingie | Thies C. Arntzen | 2001-06-21 | 1 | -25/+30 | |
| | | | | | | | | | | - 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 | |||||
* | Back out severely broken patch. I currently don't have the time | Sascha Schumann | 2001-06-20 | 1 | -9/+16 | |
| | | | | | to debug this. Please reapply a fixed version. | |||||
* | @- Fixed references in sessions. This doesn't work when using the | Thies C. Arntzen | 2001-06-20 | 1 | -16/+9 | |
| | | | | | | | | @ 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;-) |