Visit BoonEx Page at Facebook

Facebook

Join BoonEx group at LinkedIn

LinkedIn

Follow BoonEx on Twitter

Twitter

Subscribe to BoonEx Blog RSS feed

RSS

Changes between Version 8 and Version 9 of RayThingsToKnow

Show
Ignore:
Author:
IgorL (IP: 212.241.9.40)
Timestamp:
04/14/09 06:48:08 (7 months ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RayThingsToKnow

    v8 v9  
    11== Things To Know Before Installation. == 
    22 
    3     * Access to your shell account using SSH client. Your account should have enough rights to install new applications and run them. Usually only '''superuser (root)''' has such rights. That's why many shared hosting companies cannot provide this which makes RMS installation on such servers '''impossible'''. 
     3   * Access to your shell account using SSH client. Your account should have enough rights to install new applications and run them. Usually only '''superuser (root)''' has such rights. That's why many shared hosting companies cannot provide this which makes RMS installation on such servers '''impossible'''. 
    44 
    5     * Make sure JRE (Java Runtime Environment) is installed on your server. If not, you should advise with your hosting provider support service or you can install it by yourself. You can download the distribution kit for JRE from the [http://www.sun.com Sun company] official site. 
     5   * Make sure JRE (Java Runtime Environment) is installed on your server. If not, you should advise with your hosting provider support service or you can install it by yourself. You can download the distribution kit for JRE from the [http://www.sun.com Sun company] official site. 
    66 
    7     * Make sure you are able to run the following commands under your shell account: 
    8     {{{ 
     7   * Make sure you are able to run the following commands under your shell account: 
     8   {{{ 
    99chmod 
    1010chown 
    1111nano (or vi) 
    1212ps 
    13     }}} 
     13   }}} 
    1414 
    15     * Make sure you have set appropriate PHP settings in '''php.ini''' file for uploading media files. 
     15   * Make sure you have set appropriate PHP settings for uploading media files. 
    1616 
    17         a) If PHP on your server is running in CGI mode, you need to create a '''php.ini''' file with the following contents: 
    18         {{{ 
     17      a) If PHP on your server is running in CGI mode, you need to create a '''php.ini''' file with the following contents: 
     18      {{{ 
    1919upload_max_filesize=300M 
    2020post_max_size=300M 
    21         }}} 
    22         The numbers are given just for example (in megabytes) 
     21max_input_time=3000 
     22max_execution_time=3000 
     23memory_limit=128M 
    2324 
    24         Then copy this file to the ray/modules/movie/files subfolder 
     25      }}} 
    2526 
    26         b) If PHP on your server is running as Apache module, place this code in the '''.htaccess''' file which resides in the main Dolphin directory: 
    27         {{{ 
     27      Then copy this file to the ray/modules/movie/files subfolder 
     28 
     29      b) If PHP on your server is running as Apache module, place this code in the '''.htaccess''' file which resides in the main Dolphin directory: 
     30      {{{ 
    2831php_value upload_max_filesize 300M 
    2932php_value post_max_size 300M 
    30         }}} 
     33php_value max_input_time 3000 
     34php_value max_execution_time 3000 
     35php_value memory_limit 128M 
     36 
     37      }}} 
    3138 
    3239    * You can also change some MySQL settings to prevent connection timeouts when uploading big files: