commit | 4e92f936f7bbbf337ce6e9a30c527f5c983e88b1 | [log] [tgz] |
---|---|---|
author | Marc Kupietz <kupietz@ids-mannheim.de> | Wed May 03 11:35:05 2023 +0200 |
committer | Marc Kupietz <kupietz@ids-mannheim.de> | Wed May 03 11:35:05 2023 +0200 |
tree | 458d5cd9a4a971ec2ddb1f95a579db62b3f5c3af | |
parent | 97087a1ae54589a50cd4b7aa713136460a134600 [diff] |
Add author/paper id help text for invited speakers Change-Id: Ib3bdcac296c9761fd21b4b9e330fdf8c6d92e1d2
This is a simple registration script for ldap written fully in php that will allow you to have a registration page that does all the form validation, mail confirmation and allowing some basic configuration.
BASE_DN
).sudo apt install redis php-pear composer ocrad imagemagick php-redis # take care on the php version sudo pear install mail sudo pear install Net_SMTP sudo pear install Auth_SASL sudo pear install mail_mime
Clone or download this repository to some path and run: composer install
Copy the example config to the right place: mv config.php.example config.php
Then create a corresponding server vhost and a location like this(nginx):
location /signup { alias /var/www/html/; index index.php; location ~ ^/signup/(captcha\.php|index\.php) { fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass unix:/run/php/php7.4-fpm.sock; include fastcgi_params; } location ~ ^/signup/static/.+$ { root /var/www/html/; try_files $uri =404; } location ~ ^/ { rewrite ^ /signup/index.php; } }
Add your BASE_URL
and other configuration options to the config.php and you might be ready to go!
If you want to add custom css, javascript or html you can do it by editing the files on the static/
folder but be aware that all of them are loaded for any page of the registration process.
The pages you might face inside the registration process are inside the html/
folder. You can customized those templates like to add your site url in the end of registration, add a navbar to head.htm and so on.
The blacklists/
Folder contains usernames.php and passwords.php which are lists of usernames and passwords that won't be allowed.
The example config contains many comments and the variables are self explanatory. What you need to set up to get going is your redis password, LDAP's USER
, PORT
, PASSWORD
and HOST
. You need to set SMTP
and you can set $FALLBACK_SMTP = $SMTP
if you don't want to use the fallback feature.
On the BASE_DN
variable, '{}' will be replaced by the username.
Don't forget to set your BASE_URL
correctly. That is the url the log in page will be presented on, it will end with /signup
if you used the example nginx location.
Also you might want to change the email template (MAIL_TEMPLATE
variable). It has both a text and a html parameter.
You can also blacklist email services with the MAIL_HOST_BLACKLIST
. User registering with those mail services won't be allowed.
MAIL_HOST_DIRECT_FALLBACK
variable if set will cause the FALLBACK_SMTP
to be used instead of SMTP if the user is trying to register with an email host that is on that list.
The LANG_CC
variable if set will determine different templates to be used by default. It is reccomended to set to a 2 letter country code like il
, pt
, us
, uk
and so on, but you can use any string.
To get started templating and translating get started by setting that variable to some string like "il" and copy the template folder:
cp -r templates templates_il
Pay attention to the undescore + LANG_CC
termination. In that example if LANG_CC is set to il
then templates_il will be loaded by default. Otherwise you can access different languages either by passing the termination as a uri path or with the lang GET parameter like in ?lang=il
. Let's suppose you created a templates_pt folder. So you can either access that version of the site with mysite.com/signup/pt
or mysite.com/signup?lang=pt
One important file to edit under templates is strings.php. This file contains many strings in a template format that are used in some parts of the application, like validation errors on the frontend. Pay attention to the template notation with double braces: {{num}}
.
You can edit email.php
to change the mail template messages that are sent for each language.
Check validators.php.