Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.68 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.68 KB

install

A makefile is a macro for installing Drupal. It contains a list of files that can be fetched using the power of drush, the command line tool for administering Drupal.

eduerp.make is the EduERP makefile that fetches Drupal, EduERP modules and other dependencies and libraries for a functional EduERP installation

eduerp.enable is a simple shell script that runs drush commands to establish a default EduERP installation.

Requirements

  1. Web server - Apache or alternative
  2. Database server - MySQL 4.1 or higher
  3. PHP - PHP 4.4.0 or higher (5.3 recommended - Requires GD extension for image processing and SOAP for Zimbra)
  4. Drush (preferably from PEAR channel - pear.drush.org)
  5. Git

Usage

  • Create Apache virtualhost for the domain where EduERP will be hosted e.g http://domain.edu.ng
  • Change directory to the webroot and download the installation files.
wget --no-check-certificate https://raw.github.com/eduerp/install/master/eduerp.enable
wget --no-check-certificate https://raw.github.com/eduerp/install/master/eduerp.make
  • Run eduerp.make and agree to download - (downloads Drupal, EduERP, dependent modules and libraries)
    drush make eduerp.make
  • Go to URL of the virtualhost e.g http://domain.edu.ng and complete the installation.
  • Go back to webroot, make eduerp.enable executable and run it
    chmod a+x eduerp.enable
    sh eduerp.enable
  • Follow next steps for Post-Installation-Configuration