0ed4e4faa2
* Change to 4.5 branch Changelog: Version 4.5.3 Nov 27th 2012 Fix the new from url button Fix a memory overflow with downloading of big files via WebDAV Better error output in case of DB problems Fix problems with uploading files who have special characters in the name Improved reverse proxy and load balancer support Fix wrong folder size calculation Improved share link generation Fix the syncing of the Shared folder Fix Sharing by link from within Shared folder Several LDAP integration fixes Fix support for PostgreSQL Several WebDAV fixes Fix drag and drop uploading Improved translations Several Gallery fixes Several Contacts fixes Smaller fixes Version 4.5.2 Nov 14th 2012 Fix syncing of shared folder Various sharing bugs fixed Fix bug with deleting users Fix check if resharing is allowed Fix webdavauth app Several ldap fixes Fix data migration Fix folder uploads Fix generatino of etags Fix user specific mount configuration Several PostgreSQL fixes Improved performance of file updates Fix some php warnings Fix filesize calculation Add visual feedback if password is set Various smaller fixes Several critical security fixes XSS vulnerability in user_webdavauth (oC-SA-2012-003) Code Execution in /lib/migrate.php (oC-SA-2012-004) Code Execution in /lib/filesystem.php (oC-SA-2012-005)
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.9 2012/11/27 12:11:36 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=iconv.so
|
|
extension=json.so
|
|
extension=mbstring.so
|
|
extension=pdo.so
|
|
extension=zip.so
|
|
extension=zlib.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.
|
|
===========================================================================
|