]> git.mjollnir.org Git - moodle.git/commitdiff
Added new FAQ and fixed the TOC a bit
authormoodler <moodler>
Mon, 12 May 2003 05:49:06 +0000 (05:49 +0000)
committermoodler <moodler>
Mon, 12 May 2003 05:49:06 +0000 (05:49 +0000)
lang/en/docs/faq.html
lang/en/docs/files.php

index 448fc7e184fc1f1ba7b30934b41aff1363af62a4..be9c103120c101b5309b539b5acaf2057cb312e7 100644 (file)
   usually be be able to help you.</p>\r
 <p class="normaltext">Use this list to jump to the appropriate answer below:</p>\r
 \r
-<p class="questionlink"><a href="#filenotfound">Whenever I try to access or view \r
-  a file that I uploaded, I get an error &quot;File not Found&quot;</a></p>\r
-<p class="questionlink"><a href="#php">PHP - is it installed and what version \r
-  do I have?</a></p>\r
-<p class="questionlink"><a href="#blankpages">Why are all my pages blank?</a> \r
-</p>\r
-<p class="questionlink"><a href="#errorgetstring">My pages show fatal errors such \r
-  as : call to undefined function: get_string()</a></p>\r
-<p class="questionlink"><a href="#headerssent">Why do I keep getting error messages \r
-  about &quot;headers already sent&quot;?</a></p>\r
-<p class="questionlink"><a href="#failedopen">I keep getting this error: Failed \r
-  opening required '/web/moodle/lib/setup.php'</a></p>\r
-<p class="questionlink"><a href="#quotes">Any text I add with an apostrophe (') \r
-  or a quote (&quot;) causes errors or comes up with a slash added</a></p>\r
+<p class="questionlink"><a href="#filenotfound">Whenever I try to access or view a file that I uploaded, I get an error &quot;File not Found&quot;</a></p>\r
+<p class="questionlink"><a href="#php">PHP - is it installed and what version do I have?</a></p>\r
+<p class="questionlink"><a href="#blankpages">Why are all my pages blank?</a></p>\r
+<p class="questionlink"><a href="#errorgetstring">My pages show fatal errors such as : call to undefined function: get_string()</a></p>\r
+<p class="questionlink"><a href="#headerssent">Why do I keep getting error messages about &quot;headers already sent&quot;?</a></p>\r
+<p class="questionlink"><a href="#failedopen">I keep getting this error: Failed opening required '/web/moodle/lib/setup.php'</a></p>\r
+<p class="questionlink"><a href="#quotes">Any text I add with an apostrophe (') or a quote (&quot;) causes errors or comes up with a slash added</a></p>\r
+<p class="questionlink"><a href="#sessiontmp">I keep getting error messages about session_start</a></p>\r
 <p class="questionlink">&nbsp;</p>\r
 <h3 class="question"><a name="filenotfound"></a>Whenever I try to access or view \r
   a file that I uploaded, I get an error &quot;File not Found&quot;</h3>\r
   magic_quotes_runtime = Off</p>\r
 <p class="answer">See the section on <a href="http://moodle.org/doc/?file=install.html#webserver">webserver \r
   configuration</a> in the Installation docs for more details.</p>\r
+\r
+<h4 class="question"><a name="sessiontmp"></a>I keep getting error messages about session_start</h4>\r
+<p class="answer">If you see errors like this:</p>\r
+<p class="answercode">Warning: session_start() [function.session-start]: open(/tmp\sess_d40f380d37d431fc1516e9a895ad9ce0, O_RDWR) failed: No such file or directory (2) in G:\web\moodle\lib\setup.php on line 123</p>\r
+<p class="answercode">Warning: session_start() [function.session-start]: open(/tmp\sess_d40f380d37d431fc1516e9a895ad9ce0, O_RDWR) failed: No such file or directory (2) in G:\web\moodle\lib\setup.php on line 123</p>\r
+<p class="answercode">Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at G:\web\moodle\lib\setup.php:1) in G:\web\moodle\lib\setup.php on line 123</p>\r
+\r
+<p class="answer">... these are all related to the fact that PHP is failing to save \r
+  "session" files on your hard disk (in a directory called /tmp).  Usually the \r
+  reason is that you don't HAVE a directory called /tmp on your computer.  This \r
+  is usually the case with Windows installations.\r
+\r
+<p class="answer">The solution is to fix the PHP setting for this path to point to a real directory.  You can do this in your php.ini file:</p>\r
+<p class="answercode">session.save_path = C:\temp</p>\r
+<p class="answer">or otherwise in a .htaccess file in your main moodle directory:</p>\r
+<p class="answercode">php_value session.save_path "/home/moodle/sessions"</p>\r
+\r
+\r
 <h2>&nbsp;</h2>\r
 <h2>&nbsp;</h2>\r
 \r
index 7c172dccbdfe934dbaccbc77fb531432b93000be..037b3811023db3bd52e8073ac21457bd1f077823 100644 (file)
@@ -6,8 +6,8 @@ $string['background.html'] = "Background";
 $string['features.html'] = "Features";
 $string['release.html'] = "Release Notes";
 $string['install.html'] = "Installation";
+$string['faq.html'] = "Installation FAQ";
 $string['upgrade.html'] = "Upgrading";
-$string['faq.html'] = "FAQ Answers";
 $string['teacher.html'] = "Teacher Manual";
 $string['developer.html'] = "Developer Manual";
 $string['cvs.html'] = "Using CVS";