1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
From: William Desportes <williamdes@wdes.fr>
Date: Mon, 4 Sep 2023 15:41:48 +0200
Subject: Update documentations for Debian specifics
Origin: vendor
Forwarded: not-needed
README.md | 28 +++++-----------------------
hooks/classes/README | 4 ++--
hooks/functions/README | 4 +++-
3 files changed, 10 insertions(+), 26 deletions(-)
diff --git a/README.md b/README.md
index 06c19e4..08da5c4 100644
@@ -45,36 +45,18 @@ The [demo](http://demo.phpldapadmin.org) site, will also be running the same doc
In summary, for the time being, expect `master` to be buggy and broken, and I'll update this readme as enhancements progress.
-## Installation
-The following instructions will be for PLA v2 when its commited to GIT. Checkback regularly, as it will be pushed when its is semi functional.
-
### Installation on your server
#### Prerequisites
+
* A HTTP server (eg: Apache, Nginx)
* PHP (minimum version 7.2) https://www.php.net
-* Composer https://getcomposer.org
-* GIT
#### Installation
-1. Checkout the code from github
- ```bash
- git clone https://github.com/leenooks/phpLDAPadmin.git
- ```
-
-1. Install composer dependencies.
- ```bash
- composer install
- ```
-
-1. Edit your `.env` file as appropriate
-
- copy `.env.example` to `.env` as a start.
-
-1. Configure your webserver to have PLA's root in the `public` directory
-### Using Docker
-Instructions to come.
+1. `apt install phpldapadmin`
+2. Configure in `/etc/phpldapadmin/config.php`
+3. Browse http://localhost/phpldapadmin/
## Getting Help
The best place to get help with PLA (new and old) is on Stack Overflow (https://stackoverflow.com/tags/phpldapadmin/info)
@@ -82,7 +64,7 @@ The best place to get help with PLA (new and old) is on Stack Overflow (https://
## Found a bug?
If you have found a bug, and can provide detailed instructions so that it can be reproduced, please open an [issue](https://github.com/leenooks/phpLDAPadmin/issues) and provide those details.
-Before opening a ticket, please check to see if it hasnt already been reported, and if it has, please provide any additional information that will help it be fixed.
+Before opening a ticket, please check to see if it hasn't already been reported, and if it has, please provide any additional information that will help it be fixed.
*TIP*: Issues opened with reproducible details accompanied with a patch (or a pull request) to fix the problem will be looked at first.
diff --git a/hooks/classes/README b/hooks/classes/README
index 1a0f343..a32043c 100644
@@ -1,3 +1,3 @@
-Put your hook class files here.
+Put your hook class files in: /etc/phpldapadmin/hooks/classes
-A file wich contains "class MyClass" definition must be called "MyClass.php".
+A file that contains "class MyClass" definition must be called "MyClass.php".
diff --git a/hooks/functions/README b/hooks/functions/README
index e5b29d7..ee25e08 100644
@@ -1 +1,3 @@
-Put your hook function files here.
\ No newline at end of file
+Put your hook function files in: /etc/phpldapadmin/hooks/functions
+
+You can find an example in: /usr/share/doc/phpldapadmin/
|