summaryrefslogtreecommitdiff
path: root/ext/session
Commit message (Collapse)AuthorAgeFilesLines
* - Committing my session cookie patch; it's a bug fix and good to have in theexperimental/first_unicode_implementationDerick Rethans2010-03-161-3/+11
| | | | | history.
* Fixed a possible open_basedir/safe_mode bypass in session extension ↵Ilia Alshanetsky2010-01-311-1/+6
| | | | identified by Grzegorz Stachowiak.
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-038-8/+8
|
* Along with the valid char set, also add a length check to the Rasmus Lerdorf2009-12-261-2/+4
| | | | | | | | | session id here to avoid a lower-level error on the open() later on in case we exceed MAX_PATH. The lower level open() error includes the session dir path in it, so this is a very low-priority security fix. People should not be running production systems with display_errors turned on.
* protect http_session_vars from interrupt corruptionStanislav Malyshev2009-12-041-2/+5
| | | | | improve save_path check
* removed now obsolete NetWare hack since I fixed thisGuenter Knauf2009-11-032-11/+1
| | | | | with Novell some longer time ago in their SDK header.
* Kill compiler warningsKalle Sommer Nielsen2009-08-011-1/+1
|
* configure dependency has to be optional as wellAntony Dovgal2009-07-281-1/+1
|
* fix segfault in session/tests/031.phpt by adding optional extensionAntony Dovgal2009-07-282-1/+10
| | | | | | dependency (php_hash_hashtable has to be initialized when setting session.hash_function)
* fix crash when session hash function generated long hashes with ↵Gwynne Raskind2009-07-172-8/+27
| | | | hash_bits_per_character larger than 4
* fix testJani Taskinen2009-05-261-0/+1
|
* - Dropped *_TEXT* macros in favor of unicode macros direct usageFelipe Pena2009-05-251-7/+7
|
* fix buildAntony Dovgal2009-05-191-1/+1
|
* - WS + sync with PHP_5_3 (thanks Ilia & Co.)Jani Taskinen2009-05-185-216/+194
|
* Add a test for bug#42596 so people wont try bogusly fixing it againHannes Magnusson2009-04-061-0/+32
|
* Fix segfault on invalid session.save_pathHannes Magnusson2009-04-061-1/+1
|
* - Removed:Felipe Pena2009-03-262-5/+2
| | | | | | | | | | | | - UG(unicode) checks - pcre_cache_entry.unicode_mode - Changed: - ZEND_STR_TYPE -> IS_UNICODE - convert_to_text -> convert_to_unicode - convert_to_text_ex -> convert_to_unicode_ex (Felipe, Steph)
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-108-8/+8
|
* - Fixed testsFelipe Pena2009-01-051-9/+0
|
* - Fixed testsFelipe Pena2009-01-057-245/+0
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-318-8/+8
|
* Add mod_files.bat (equivalent to mod_files.sh).Andrei Zmievski2008-12-301-0/+57
|
* Fix bug #35975 - Session cookie expires date format isn't the most ↵Scott MacVicar2008-12-111-2/+2
| | | | compatible. Sync to that of setcookie().
* Latest and greatest versions of these session tests - checked on 6.0 snap on ↵Ant Phillips2008-11-279-8/+260
| | | | Windows, Linux and Linux 64 bit.
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-11/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+11
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-11/+0
|
* Avoid updating upload progress information too frequently on high transfertArnaud Le Blanc2008-09-273-14/+31
| | | | | | | | rate. [DOC] (HEAD only) Added session.upload_progress.min_freq http://wiki.php.net/rfc/session_upload_progress
* Added ability to cancel upload in rfc1867 handlerArnaud Le Blanc2008-09-172-0/+20
|
* Added testsArnaud Le Blanc2008-09-1113-0/+1168
|
* Implemented ability to provide upload progress feedback through sessionArnaud Le Blanc2008-09-112-3/+311
| | | | | data.
* MFBJani Taskinen2008-09-072-2/+2
|
* Fix test on WindowsKalle Sommer Nielsen2008-09-071-1/+1
|
* remove special treatment of /tmp pathAlexey Zakhlestin2008-08-312-12/+2
|
* MFB: this test depends on session.hash_bits_per_character, but it was not ↵Alexey Zakhlestin2008-08-261-0/+1
| | | | explicitly set
* - Fixed some inconsistencies with the behaviour of sessions. Changed ↵Jani Taskinen2008-08-067-61/+73
| | | | session_start() to return false when session start fails.
* - MFB: sync parameter parsing API changes in session_set_save_handler()Jani Taskinen2008-08-061-4/+9
|
* - MFB: snprintf -> slprintf, nuketh extra folding tags, ws fixesJani Taskinen2008-08-061-41/+37
|
* ws + folding tagsJani Taskinen2008-08-061-139/+173
|
* - Nuke ending periodJani Taskinen2008-08-051-1/+1
|
* Fixes #45406 - Patch by oleg dot grenrus at dynamoid dot comKalle Sommer Nielsen2008-08-041-4/+14
|
* - Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-1/+1
|
* support for closuresDmitry Stogov2008-07-172-0/+108
|
* - Fix tests (do NOT assume things in php.ini always to be same...or sane)Jani Taskinen2008-07-155-1/+18
|
* - MFB: Added arginfoFelipe Pena2008-06-271-18/+82
|
* - killed off UEXPECTSteph Fox2008-05-275-12/+9
| | | | | | - com_dotnet gets a .cvsignore - Ulf will take care of mysql extensions, rest complete
* - Removed UEXPECT(F)Felipe Pena2008-05-2767-2886/+0
|
* use ZEND_U_CONVERTER() macro to prevent segfaults when the converter is not ↵Antony Dovgal2008-05-211-1/+1
| | | | set (i.e. NULL)
* Fix session test failures as reported by Antony Dovgal.Ant Phillips2008-04-305-8/+20
| | | | | | | These were caused by the tests assuming default values for some session configuration settings, in particular session.save_path and session.name. The tests now explicitly set these settings in the --INI-- section.
* Fix session test failures as reported by Antony Dovgal.Ant Phillips2008-04-309-0/+24
| | | | | | | These were caused by the tests assuming default values for some session configuration settings, in particular session.save_path and session.name. The tests now explicitly set these settings in the --INI-- section.