summaryrefslogtreecommitdiff
path: root/ext/session
Commit message (Collapse)AuthorAgeFilesLines
* Move "replace value" logic to ZendStanislav Malyshev2000-11-201-13/+3
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Fix #3261 - variables declared as "global" in function do not get the rightStanislav Malyshev2000-11-191-5/+26
| | | | | value after session_start.
* Add some additional checksSascha Schumann2000-11-031-4/+17
| | | | | Submitted by: mookid@sigent.ru (Mikhail Zabaluev)
* Fix implementation of hash algorithmSascha Schumann2000-11-031-1/+1
|
* Const'ify part of sapi_request_info.Sascha Schumann2000-11-021-1/+1
| | | | | | query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const.
* Add support for serializing references.Stanislav Malyshev2000-10-301-4/+20
| | | | | | @- Add support for serializing references (Stas) # WDDX and shared memory functions not covered yet
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-291-7/+7
|
* Allow to send secure cookiesStanislav Malyshev2000-10-282-4/+20
|
* Add session_adapt_url().Sascha Schumann2000-10-262-7/+14
|
* session_unset() now cleans up $HTTP_SESSION_VARS as well.Andrei Zmievski2000-10-261-0/+3
|
* Fixed a bug in session.c. If the user calls session_module_name with aAlexander Feldman2000-10-231-7/+11
| | | | | | | parameter, then the mod_data pointer is initialized to NULL and then php_session_save_current_state did not check this value before referencing the pointer. Added a check in php_session_save_current_state.
* Fixed crash (bus error) in readdir() and session cleanup when compiledfoobar2000-10-181-1/+1
| | | | | with Sun CC.
* fix indentationSascha Schumann2000-10-171-1/+1
|
* fixes bug 7055 & 7235Daniel Beulshausen2000-10-161-6/+14
|
* Add session_write_close(). This is primarily intended to enableSascha Schumann2000-10-114-30/+34
| | | | | | | | | script writers to release the lock associated with the session lock before the request finishes. You can pass arrays now to session_set_save_handler(), so that the handlers can be located in an object for better abstraction.
* Return SUCCESS from write handler, if vallen is 0.Sascha Schumann2000-09-291-3/+5
| | | | | | Submitted by: tcarroll@chc-chimes.com PR: #6958
* Clean up STR_CAT macro (it is still ugly)Sascha Schumann2000-09-271-8/+3
|
* Remove superflucious variableSascha Schumann2000-09-261-3/+1
|
* Deactivate E_NOTICE message on gcSascha Schumann2000-09-201-0/+2
|
* s/url_scanner.h/url_scanner_ex.h/Sascha Schumann2000-09-201-1/+1
|
* Make the new url scanner the default.Sascha Schumann2000-09-201-1/+1
| | | | | If there are any problems (especially with characters > 127), let me know.
* Kill warningSascha Schumann2000-09-191-2/+0
|
* *** empty log message ***Sascha Schumann2000-09-191-3/+1
|
* Libc5-readdir_r workaroundSascha Schumann2000-09-111-1/+1
|
* Convert some more "complex" expressions manually to Z_* macros.Sascha Schumann2000-09-061-7/+7
|
* Rename symbols whose first character was an underscore.Sascha Schumann2000-09-063-49/+49
|
* Convert to Z_* macrosSascha Schumann2000-09-061-47/+47
|
* Why make it more complex than necessary?Sascha Schumann2000-09-061-58/+13
| | | | | | | | | | | These changes should have been committed right after Zeev made the original change to use the PHP_INI system months ago. Instead of working around the system, we make proper use of it now. This includes using php_alter_ini_entry(), so that we change the values in the php_ps_globals struct indirectly.
* Now it should not crash, though still leaksStanislav Malyshev2000-09-051-1/+8
| | | | | # I'll continue with it tomorrow
* This fix wasn't quite right and is no longer necessary after the recent ↵Zeev Suraski2000-09-051-1/+1
| | | | php_ini optimizations
* - Fix leakZeev Suraski2000-09-051-3/+3
| | | | | - Remove redundant php_ini code
* Fix crashStanislav Malyshev2000-09-052-2/+1
| | | | | # This is getting worse... Seems that more work is needed
* - Remove track_vars - it is now always onZeev Suraski2000-09-051-38/+7
| | | | | | | - Make the various $HTTP_*_VARS[] arrays be defined always, even if they're empty - Fix Win32 build and warnings
* Try to fix session INI variables handlingStanislav Malyshev2000-09-051-21/+38
| | | | | | | | This should also fix #6538. # This code gets really hairy, I do not like it, # but it's the only working thing I could come with. # If original creator reviews and cleans it up, it'd be great
* Extend HTTP headers for private-caching and add a new PHP functionSascha Schumann2000-09-012-5/+33
| | | | | | | session_cache_limiter. Submitted by: Jon Parise <jon@csh.rit.edu>
* s/PATH_MAX/MAXPATHLEN/Sascha Schumann2000-09-011-1/+1
|
* Speed up standard php encoding function and add new php_binary serializer.Sascha Schumann2000-09-011-11/+99
|
* Solaris/x86 insists of having a large buffer for storing the result ofSascha Schumann2000-09-011-2/+3
| | | | | | | readdir_r(), otherwise it will segfault. PR: #6479
* Fix buildZeev Suraski2000-08-201-3/+3
|
* Provide PHP_SEPARATOR which expands to the default directory separatorSascha Schumann2000-08-201-9/+3
| | | | | on the target platform.
* Remove bogus "by"Sascha Schumann2000-08-101-1/+1
|
* Open session files in binary mode (fix #5953)Stanislav Malyshev2000-08-051-3/+7
| | | | | @- Fixed \n in session variables bug on Win32 (Stas)
* Reworded some of the php_error messages for grammar and clarity.Jon Parise2000-07-271-6/+6
| | | | | (For example, settled on "cannot" instead of "can't" in all case)
* Always use the current DIR_DELIMITER to create the session file pathSascha Schumann2000-07-111-1/+1
|
* Unify use of my email addressSascha Schumann2000-07-108-8/+8
|
* Also output the name of the save_handler when reporting a failed writeSascha Schumann2000-07-101-2/+5
| | | | | attempt.
* Fix stupid bug.Stanislav Malyshev2000-07-091-9/+9
|
* (PHP session_destroy) return the error condition from storage handler'sSascha Schumann2000-07-052-7/+19
| | | | | | | session_destroy method. Submitted by: juhl@eisenstein.dk
* Fix couple of crashes on error conditionsStanislav Malyshev2000-07-021-1/+12
| | | | | Make session_module_name really work