f7a9f984d8
Changelog: Version 4.0.8 Oct 10th 2012 Show Login Button when user and password are autocompleted Sanitize LDAP base, user and groups Security: Fix for insufficiently Random Values (CVE-2008-4107) Security: Fixed multiple XSS vulnerabilities (CVE-2012-5056) Security: Fixed a HTTP header injection (CVE-2012-5057) Security: Fixed an Auth bypass in /lib/base.php (CVE-2012-5336)
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.8 2012/11/07 21:30:45 ryoon Exp $
|
|
|
|
To use ownCloud, you will need to perform the following steps.
|
|
|
|
1. If you want to use with MySQL server, install databases/mysql51-*
|
|
and enable it, then create database.
|
|
|
|
2. Install apache httpd server, for example www/apache24 and www/ap-php.
|
|
|
|
3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
|
|
|
|
DocumentRoot "${PREFIX}/share/owncloud"
|
|
LoadModule php5_module lib/httpd/mod_php5.so
|
|
AddType application/x-httpd-php .php
|
|
<Directory "${PREFIX}/share/owncloud">
|
|
DirectoryIndex index.php
|
|
Options All
|
|
Allow from All
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
4. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
|
|
|
|
extension=dom.so
|
|
extension=gd.so
|
|
extension=json.so
|
|
extension=mbstring.so
|
|
extension=pdo.so
|
|
extension=zip.so
|
|
|
|
extension=pdo_sqlite.so ;if you select sqlite backend.
|
|
extension=mysql.so ;if you select MySQL backend.
|
|
|
|
5. Start apache httpd.
|
|
|
|
6. Access http://localhost/ and setup.
|
|
===========================================================================
|