SQLite/PHP read-only? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:32:21Zhttp://stackoverflow.com/feeds/question/61085http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61085/sqlite-php-read-only2SQLite/PHP read-only?Kyle Cronin2008-09-14T03:04:29Z2009-08-29T19:58:26Z
<p>I've been trying to use SQLite with the PDO wrapper in PHP with mixed success. I can read from the database fine, but none of my updates are being committed to the database when I view the page in the browser. Curiously, running the script from my shell does update the database. I suspected file permissions as the culprit, but even with the database providing full access (chmod 777) the problem persists. Should I try changing the file owner? If so, what to?</p>
<p>By the way, my machine is the standard Mac OS X Leopard install with PHP activated.</p>
<p>@<a href="#61102" rel="nofollow">Tom Martin</a></p>
<p>Thank you for your reply. I just ran your code and it looks like PHP runs as user _www. I then tried chowning the database to be owned by _www, but that didn't work either.</p>
<p>I should also note that PDO's errorInfo function doesn't indicate an error took place. Could this be a setting with PDO somehow opening the database for read-only? I've heard that SQLite performs write locks on the entire file. Is it possible that the database is locked by something else preventing the write?</p>
<p>I've decided to include the code in question. This is going to be more or less a port of <a href="http://beta.stackoverflow.com/questions/6936/using-what-ive-learned-from-stackoverflow-html-scraper" rel="nofollow">Grant's script</a> to PHP. So far it's just the Questions section:</p>
<pre><code><?php
$db = new PDO('sqlite:test.db');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://beta.stackoverflow.com/users/658/kyle");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIE, "shhsecret=1293706652");
$page = curl_exec($ch);
preg_match('/summarycount">.*?([,\d]+)<\/div>.*?Reputation/s', $page, $rep);
$rep = preg_replace("/,/", "", $rep[1]);
preg_match('/iv class="summarycount".{10,60} (\d+)<\/d.{10,140}Badges/s', $page, $badge);
$badge = $badge[1];
$qreg = '/question-summary narrow.*?vote-count-post"><strong.*?>(-?\d*).*?\/questions\/(\d*).*?>(.*?)<\/a>/s';
preg_match_all($qreg, $page, $questions, PREG_SET_ORDER);
$areg = '/(answer-summary"><a href="\/questions\/(\d*).*?votes.*?>(-?\d+).*?href.*?>(.*?)<.a)/s';
preg_match_all($areg, $page, $answers, PREG_SET_ORDER);
echo "<h3>Questions:</h3>\n";
echo "<table cellpadding=\"3\">\n";
foreach ($questions as $q)
{
$query = 'SELECT count(id), votes FROM Questions WHERE id = '.$q[2].' AND type=0;';
$dbitem = $db->query($query)->fetch(PDO::FETCH_ASSOC);
if ($dbitem['count(id)'] > 0)
{
$lastQ = $q[1] - $dbitem['votes'];
if ($lastQ == 0)
{
$lastQ = "";
}
$query = "UPDATE Questions SET votes = '$q[1]' WHERE id = '$q[2]'";
$db->exec($query);
}
else
{
$query = "INSERT INTO Questions VALUES('$q[3]', '$q[1]', 0, '$q[2]')";
echo "$query\n";
$db->exec($query);
$lastQ = "(NEW)";
}
echo "<tr><td>$lastQ</td><td align=\"right\">$q[1]</td><td>$q[3]</td></tr>\n";
}
echo "</table>";
?>
</code></pre>
http://stackoverflow.com/questions/61085/sqlite-php-read-only/61102#611021Answer by Tom Martin for SQLite/PHP read-only?Tom Martin2008-09-14T03:30:45Z2008-09-14T03:30:45Z<p>I think PHP commonly runs as the user "nodody". Not sure about on Mac though. If Mac has whoami you could try <code>echo exec('whoami');</code> to find out.</p>
http://stackoverflow.com/questions/61085/sqlite-php-read-only/61243#612431Answer by Michał Słaby for SQLite/PHP read-only?Michał Słaby2008-09-14T10:04:25Z2008-09-14T10:04:25Z<p>Kyle, in order for PDO/Sqlite to work you need write permission to directory where your database resides.</p>
<p>Also, I see you perform multiple selects in loop. This may be ok if you are building something small and not heavy loaded. Otherwise I'd suggest building single query that returns multiple rows and process them in separate loop.</p>
http://stackoverflow.com/questions/61085/sqlite-php-read-only/1352234#13522340Answer by Karl Blessing for SQLite/PHP read-only?Karl Blessing2009-08-29T19:58:26Z2009-08-29T19:58:26Z<p>@Tom
Depends on how the hosting is setup, If the server runs PHP as an Apache Module then its likely that it is 'nobody' (usually whatever user apache is setup as). But if PHP is setup as cgi (such as fast-cgi) and the server runs SuExec then php runs as the same user who owns the files. </p>
<p>Eitherway the folder that will contain the database must be writable by the script, either by being the same user, or by having write permission set to the php user. </p>
<p>@Michal
That aside, one could use beginTransaction(); perform all the actions needed then comit(); to actually comit them. </p>