2
edits
(→Mysql) |
(add mbstring as a requirement) |
||
| Line 6: | Line 6: | ||
It is strongly recommended that the Weave Registration Server be set up under https, or behind a firewall with an https proxy in front of it. It uses standard http auth (implemented in the code), which will send the password in the clear unless done over https. | It is strongly recommended that the Weave Registration Server be set up under https, or behind a firewall with an https proxy in front of it. It uses standard http auth (implemented in the code), which will send the password in the clear unless done over https. | ||
The Weave Registration Server requires PHP with PDO, UTF8 and JSON support installed. This should be the case if you are running PHP 5.1+. PDO will need drivers for whatever storage and authentications engines are used. Be sure to have locale en_US.utf8 (check with locale -a). | The Weave Registration Server requires PHP with PDO, UTF8, mbstring, and JSON support installed. This should be the case if you are running PHP 5.1+. PDO will need drivers for whatever storage and authentications engines are used. Be sure to have locale en_US.utf8 (check with locale -a). | ||
WebDav must not be enabled for this server - it intercepts some of the http packets and syncing will fail. | WebDav must not be enabled for this server - it intercepts some of the http packets and syncing will fail. | ||
| Line 90: | Line 90: | ||
To serve up the captchas, use the | To serve up the captchas, use the | ||
<pre> | <pre> | ||
Alias /misc/1.0/captcha_html <full path to weave user directory>/ | Alias /misc/1.0/captcha_html <full path to weave user directory>/weaveserver-registration/1.0/captcha.php | ||
</pre> | </pre> | ||
edits