summaryrefslogtreecommitdiff
path: root/ext/sqlite/sess_sqlite.c
Commit message (Collapse)AuthorAgeFilesLines
* - Move the old sqlite extension to PECLJohannes Schlüter2010-11-191-200/+0
| | | | | | # discussed in http://www.mail-archive.com/internals@lists.php.net/msg47463.html
* Removed safe_modeKalle Sommer Nielsen2010-04-261-1/+0
| | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #41285 (Improved fix for CVE-2007-1887 to work with non-bundledIlia Alshanetsky2007-05-051-3/+7
| | | | | sqlite2 lib).
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Fixed bug #33185 (--enable-session=shared does not build)foobar2005-05-301-2/+2
|
* Avoid using floating point arithmetic and rely on safe_emallocSascha Schumann2004-03-071-1/+1
| | | | | | | | | | | | | for the multiplication. The actual size requirement is spelled out as: ** The result is written into a preallocated output buffer "out". ** "out" must be able to hold at least 2 +(257*n)/254 bytes. ** In other words, the output will be expanded by as much as 3 ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead. ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.)
* Corrected string escape calculation.Ilia Alshanetsky2004-03-071-1/+1
|
* Fixed possible crash due to an integer overflow.Ilia Alshanetsky2004-03-061-2/+2
|
* Whoops... Ilia forgot a ')'John Coggeshall2004-01-131-1/+1
|
* Fixed a bug that would cause the sqlite session database to grow endlessly.Ilia Alshanetsky2004-01-121-1/+9
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* funny fixesMarcus Boerger2003-07-021-3/+3
|
* further improve the performance and clean upSterling Hughes2003-07-021-4/+7
|
* not necessary, already assumed binary safe (it has to be under the currentSterling Hughes2003-07-021-35/+0
| | | | | session architecture), and anything else is fair play
* ws fixSterling Hughes2003-07-021-1/+1
|
* set synching to offSterling Hughes2003-07-021-19/+22
| | | | | cleanup some silly code
* no c++ style commentsSterling Hughes2003-07-021-1/+0
|
* make this actually work.Sterling Hughes2003-07-021-6/+9
|
* Fix warnings and allow builds without ext/sessionMarcus Boerger2003-07-011-2/+5
|
* WSWez Furlong2003-07-011-10/+10
|
* Add sqlite session handler.Wez Furlong2003-07-011-0/+213
Modified (quite a bit!) patch from John Coggeshall. It compiles, but it otherwise untested. session.save_path == path to actual database file for the session. eg: session.save_path=/tmp/mysite-session.db