Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / doc / requirements.rst
1 System Requirements 
2 ===================
3
4 Meet the system requirements
5 ----------------------------
6
7 #. Check your PHP version::
8
9     php --version
10
11    It must be higher than 5.3.5! Note: This means you cannot use the same
12    version of PHP for testing that you might use to run a Drupal 5 site.
13
14   PHP will also need to have the following libraries installed:
15
16   * `curl <http://curl.haxx.se/libcurl/php/install.html>`_ 
17   * `mbstring <http://php.net/manual/en/mbstring.installation.php>`_ 
18   * `xml <http://www.php.net/manual/en/dom.setup.php#102046>`_ 
19   
20   Check your current modules by running::
21   
22     php -m
23
24 2. Check for Java::
25
26     java -version
27
28    It doesn't necessarily matter what version, but it will be required for
29    Selenium.
30
31
32 #. Directions are written to use command-line cURL. You can make sure it's
33    installed with::
34
35     curl --version
36
37 #. Selenium
38
39   Download the latest version of `Selenium Server
40   <http://docs.seleniumhq.org/download/>`_ It's under the heading Selenium
41   Server (formerly the Selenium RC Server).   This is a single file which can be
42   placed any where you like on your system and run with the following command::
43
44     java -jar selenium-server-standalone-2.44.0.jar & 
45     // replace with the name of the version you downloaded
46