|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-03-11 16:08 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 13:00:01 2025 UTC |
Description: ------------ When called by apache, php_sqlite cannot change database. If called locally, it can. Database is chmoded into 666. Reproduce code: --------------- <?php $db=sqlite_open('foo'); //Or sqlite_open('foo','0666'); sqlite_query($db,'update ...'); //OR INSERT sqlite_close($db); ?> Expected result: ---------------- sqlite foo .dump //Expected to see things inserted or updated Actual result: -------------- sqlite foo .dump //The same as not changed