From: moodler Date: Mon, 12 May 2003 05:49:06 +0000 (+0000) Subject: Added new FAQ and fixed the TOC a bit X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=35519660926161dc2f6657020a79685a29b5e013;p=moodle.git Added new FAQ and fixed the TOC a bit --- diff --git a/lang/en/docs/faq.html b/lang/en/docs/faq.html index 448fc7e184..be9c103120 100644 --- a/lang/en/docs/faq.html +++ b/lang/en/docs/faq.html @@ -57,20 +57,14 @@ usually be be able to help you.

Use this list to jump to the appropriate answer below:

- - - - - - - + + + + + + + +

Whenever I try to access or view a file that I uploaded, I get an error "File not Found"

@@ -154,6 +148,24 @@ magic_quotes_runtime = Off

See the section on webserver configuration in the Installation docs for more details.

+ +

I keep getting error messages about session_start

+

If you see errors like this:

+

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

+

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

+

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

+ +

... these are all related to the fact that PHP is failing to save + "session" files on your hard disk (in a directory called /tmp). Usually the + reason is that you don't HAVE a directory called /tmp on your computer. This + is usually the case with Windows installations. + +

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:

+

session.save_path = C:\temp

+

or otherwise in a .htaccess file in your main moodle directory:

+

php_value session.save_path "/home/moodle/sessions"

+ +

 

 

diff --git a/lang/en/docs/files.php b/lang/en/docs/files.php index 7c172dccbd..037b381102 100644 --- a/lang/en/docs/files.php +++ b/lang/en/docs/files.php @@ -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";