Skip to content

How to install requisites in CentOS

Alvaro Graves edited this page Oct 24, 2013 · 11 revisions

This is a brand new page and its subject to possible errors/lack of information. If you think there is an error in the requirements in CentOS, please let me know

  • yum install httpd sqlite git curl
  • In /etc/php.ini
    • Change to short_open_tag = On (this was necessary for older versions of LODSPeaKr)
  • In /etc/httpd/conf/httpd.conf, add (if they don't already exist):
 LoadModule rewrite_module modules/mod_rewrite.so
 
 ...

 AddHandler php5-script .php
 AddType application/x-httpd-php .php
  • In the same httpd.conf, change
    • AllowOverride None for AllowOverride All
  • Restart Apache with sudo /etc/init.d/httpd restart
  • Now that all the requisites are ready, you can continue with the Installation

See also

Clone this wiki locally