pkgsrc/www/php-owncloud/MESSAGE
ryoon f016f68f93 Update to 5.0.13
* Fix MESSAGE for sqlite3

Changelog:
Version 5.0.13 Nov 8th 2013

    SECURITY: Fix a possible security bypass on admin page under certain circumstances and MariaDB
    Correctly update database schema during app update
    Fix automatic login rejecion error message
    Several Oracle fixes
    Fixing serverroot/webroot calculation
    Adding detection for aborted uploads for chunked uploads
    Fixing directory handling that end with a space
    Fixing home storage handling
    Allow to share a file/folder as public link also if one of it parents was already shared as link
    Fix search in shared folders
    Fix check for uploads into Shared folder
    Several Shared folder handling fixes
    Prefere them PNGs over core SVGs
    Fall back to default log file of specified logfile doesn't exist
    Several IE fixes
    Fix LDAP login for certain circumstances
    Fixed chunk size calculation for encrypted files
    Fix recursive delete for smb
    Fix using touch for creating files for smb
    Support OCS Share API
    Fix updating ETAGs
    Don't write user passwords into logfile
    Enable configuration of timezones for logfile timestamps
    Cleanup share database table for files that no longer exist
    Adding privilege check on move and rename operations
2013-11-22 14:34:33 +00:00

40 lines
1.2 KiB
Text

===========================================================================
$NetBSD: MESSAGE,v 1.13 2013/11/22 14:34:33 ryoon Exp $
To use ownCloud, you will need to perform the following steps.
1. If you want to use with MySQL server, install databases/mysql55-*
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
Alias /owncloud ${PREFIX}/share/owncloud
<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=iconv.so
extension=json.so
extension=mbstring.so
extension=zip.so
extension=zlib.so
extension=pdo.so ;if you select sqlite backend.
extension=pdo_sqlite.so ;if you select sqlite backend.
extension=mysql.so ;if you select MySQL backend.
extension=pgsql.so ;if you select PostgreSQL backend.
5. Start apache httpd.
6. Access http://localhost/owncloud/ and setup.
===========================================================================