Document a workaround for the UTF-8 locale problem in owncloud 5. ok aja

This commit is contained in:
stsp 2013-04-27 15:50:39 +00:00
parent a673865760
commit 8bc3c017cf
3 changed files with 14 additions and 3 deletions

View File

@ -1,8 +1,9 @@
# $OpenBSD: Makefile,v 1.41 2013/04/20 06:38:55 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.42 2013/04/27 15:50:39 stsp Exp $
COMMENT= easy and universal access to shared and/or personnal files
V= 5.0.5
REVISION= 0
DISTNAME= owncloud-${V}
EXTRACT_SUFX= .tar.bz2

View File

@ -1,4 +1,4 @@
$OpenBSD: README,v 1.14 2013/04/03 17:40:48 robert Exp $
$OpenBSD: README,v 1.15 2013/04/27 15:50:39 stsp Exp $
+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
@ -26,7 +26,15 @@ The maximum upload size for files can be modified in
When not using Apache, make _sure_ to set the data directory to a
location outside of the document root.
To finish the installation, point you browser to:
ownCloud attempts to use the UTF-8 locale, which does not work inside
the /var/www chroot by default. This causes warning messages in
ownCloud's admin configuration page and log. To prevent this problem,
run the following as root:
# mkdir -p /var/www/usr/share/locale/en_US.UTF-8/
# cp /usr/share/locale/en_US.UTF-8/LC_CTYPE \
/var/www/usr/share/locale/en_US.UTF-8/
To finish the installation, point your browser to:
http://<hostname>/owncloud/
Database Configuration

View File

@ -2,3 +2,5 @@ To completely deinstall ownCloud you need to perform the following step
as root:
rm -f /var/www/conf/modules/owncloud.conf
and remove the "backgroundjobs" cron(8) job if it exists.
The directory /var/www/usr/share/locale/en_US.UTF-8/ may also need
to be removed, if it was created for ownCloud.