summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/protected/pages/Day2/CreateDB.page
diff options
context:
space:
mode:
authorxue <>2007-04-06 03:06:36 +0000
committerxue <>2007-04-06 03:06:36 +0000
commit05c6a7a2ef0d6be3a02b8e1a3e2bd2b6afacf799 (patch)
treeee00c40f3be3b9de95d139ccfb51330ffbfea05b /demos/blog-tutorial/protected/pages/Day2/CreateDB.page
parent16bbf435c8048c3c726de78adc8a670b8a527229 (diff)
Finished blog tutorial day 2.
Diffstat (limited to 'demos/blog-tutorial/protected/pages/Day2/CreateDB.page')
-rw-r--r--demos/blog-tutorial/protected/pages/Day2/CreateDB.page6
1 files changed, 5 insertions, 1 deletions
diff --git a/demos/blog-tutorial/protected/pages/Day2/CreateDB.page b/demos/blog-tutorial/protected/pages/Day2/CreateDB.page
index 0d45ba50..291b20e4 100644
--- a/demos/blog-tutorial/protected/pages/Day2/CreateDB.page
+++ b/demos/blog-tutorial/protected/pages/Day2/CreateDB.page
@@ -47,7 +47,7 @@ SQLite does not support <a href="http://www.sqlite.org/omitted.html">foreign key
</com:NoteBox>
<p>
-We use the <a href="http://www.sqlite.org/download.html">SQLite command line tool</a> to create the SQLite database. We first create a directory <tt>protected/data</tt> to hold the SQLite database file. Per SQLite's requirement, this directory and the database file to be created must be set writable by the Web server process. We now execute the following command under the directory <tt>protected/data</tt>:
+We then use the <a href="http://www.sqlite.org/download.html">SQLite command line tool</a> to create the SQLite database. We create a directory <tt>protected/data</tt> to hold the SQLite database file. We now execute the following command under the directory <tt>protected/data</tt>:
</p>
<com:TTextHighlighter CssClass="source">
@@ -60,4 +60,8 @@ The database has been created as <tt>protected/data/blog.db</tt> and we shall se
<img src="<%~ directories.gif %>" />
+<com:NoteBox>
+It is required by SQLite that both the directory <tt>protected/data</tt> and the database file <tt>protected/data/blog.db</tt> be set writable by the Web server process.
+</com:NoteBox>
+
</com:TContent> \ No newline at end of file