Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

extension=php_curl.dll
extension=php_mbstring.dll
extension=php_openssl.dll
extension=php_pgsql.dll
extension=php_pdo_pgsql.dll

Note

Download cacert.pem certificate and add path under below

curl.cainfo = "path_to_file\cacert.pem"

Go to PHP folder and Install composer:

...

Code Block
psql -U postgres
postgres=# create database webclient;
postgres=# create user webclient;
postgres=# alter user webclient with encrypted password 'webclient';
postgres-# grant all privileges on database webclient to webclient;

For Postgres 15 and newer here are additional steps:

Code Block
GRANT ALL PRIVILEGES ON DATABASE webclient TO webclient;
\c webclient postgres
# You are now connected to database "webclient" as user "postgres".
GRANT ALL ON SCHEMA public TO webclient;

Copy and prepare the code

...