Edjet LMS Server

Install and configure PostgreSQL

Download PostgreSQL 10 32-bit from:
https://www.enterprisedb.com/downloads/postgres-postgresql-downloads

Install PostgreSQL 10:

  • into “C:\PostgreSQL\“ folder
  • check all components including pgAdmin4

To enable postgres support in php add in file “C:\apache2\conf\httpd.conf” this line:
LoadFile "C:\PostgreSQL\bin\libpq.dll"

Create PostgreSQL database

  1. Run PgAdmin4
  2. Log into PostgreSQL using “postgres” superuser
  3. Create new role template_c6 (with password, enable login and enable create database)
  4. Create new empty database named “learnis” with owner template_c6*
    Note: database encoding must be set to UTF-8 otherwise the installation will fail.

  5. *You can choose different name according to your project name
Related