Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: System paths.

System paths: Difference between revisions

From MoodleDocs
m (templates, category)
 
No edit summary
 
(23 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Moodle 1.7}}
{{Server settings}}
{{stub}}
An administrator can set the following system paths in ''Settings > Site administration > Server > System Paths''.


[[Category:Administrator]]
==GD version==
 
GD is a graphics library that manipulates graphics. It's used to create thumbnail images from uploaded files and other graphics on the fly. If you don't know what version is installed, leave this on the original setting.
 
'''Note''': When setting the system paths on Windows systems, use of the 8.3 notation for the path and filename is preferred. So instead of entering ''c:\program files\path to aspell\aspell.exe'', enter ''c:\progra~1\path~1\aspell.exe''. Check the exact 8.3 path using the ''dir /x'' command at the prompt.
 
==Path to aspell==
 
If PSpellSpell is selected as the spell engine for TinyMCE in ''Settings > Site administration > Plugins > Text editors > TinyMCE HTML editor'' then you must specify the correct path to access the aspell binary.
 
In addition, you MUST have aspell 0.50 or later installed on your server. On Unix/Linux systems use the which program to determine the path:
 
[root@moodle ~]# which aspell
/usr/bin/aspell
 
In this example the path to enter is ''/usr/bin/aspell''.
 
On a Windows system, download and install [http://aspell.net/win32 GNU aspell] together with at least one dictionary and then use the search facility in Explorer to find the aspell.exe file. The path should look like:
 
c:\program files\aspell\bin\aspell.exe
 
It can be best to install aspell in c:\aspell or use the 8.3 notation if you are installing in ''c:\program files'' so that the path looks like
 
c:\progra~1\aspell\bin\aspell.exe
 
==Path to dot==
 
Path to dot is for enabling image generation in profiling. The generated graphs are really useful to see what each request does. To have profiling visible (and working), the xhprof extension must be installed in PHP.
 
==External links==
 
*[http://aspell.sourceforge.net/ GNU Aspell]
*[http://aspell.net/win32/ GNU Aspell (Win32 version)]
 
==See also==
 
* [http://moodle.org/mod/forum/discuss.php?d=125912 HowTo: Installing aspell in Ubuntu (with dictionary)] forum discussion
 
[[cs:admin/setting/systempaths]]
[[hu:Rendszerútvonalak]]
[[ja:システムパス]]
[[de:Systempfade]]

Latest revision as of 15:04, 14 May 2012

An administrator can set the following system paths in Settings > Site administration > Server > System Paths.

GD version

GD is a graphics library that manipulates graphics. It's used to create thumbnail images from uploaded files and other graphics on the fly. If you don't know what version is installed, leave this on the original setting.

Note: When setting the system paths on Windows systems, use of the 8.3 notation for the path and filename is preferred. So instead of entering c:\program files\path to aspell\aspell.exe, enter c:\progra~1\path~1\aspell.exe. Check the exact 8.3 path using the dir /x command at the prompt.

Path to aspell

If PSpellSpell is selected as the spell engine for TinyMCE in Settings > Site administration > Plugins > Text editors > TinyMCE HTML editor then you must specify the correct path to access the aspell binary.

In addition, you MUST have aspell 0.50 or later installed on your server. On Unix/Linux systems use the which program to determine the path:

[root@moodle ~]# which aspell
/usr/bin/aspell

In this example the path to enter is /usr/bin/aspell.

On a Windows system, download and install GNU aspell together with at least one dictionary and then use the search facility in Explorer to find the aspell.exe file. The path should look like:

c:\program files\aspell\bin\aspell.exe

It can be best to install aspell in c:\aspell or use the 8.3 notation if you are installing in c:\program files so that the path looks like

c:\progra~1\aspell\bin\aspell.exe

Path to dot

Path to dot is for enabling image generation in profiling. The generated graphs are really useful to see what each request does. To have profiling visible (and working), the xhprof extension must be installed in PHP.

External links

See also