Tag: OwnCloud
OwnCloud Change Data Directory
Stop your webserver Check if your config.php already contains a datadirectory entry. If it does, remember that location (let’s assume it’s ‘/var/www/owncloud/data’ for now). Change or create the “datadirectory” entry in config.php file, so that it points to wherever you want to have your data from now on. Assuming the directory you want to move the data folder to is ‘/media/usbdisk/ocdata’, your config.php should look like this after the change:…
OwnCloud cURL is using an outdated NSS version (NSS/3.19.1 Basic ECC)
Enable Web DAV nano /usr/local/apache/conf/httpd.conf #Include conf/extra/httpd-dav.conf (Uncomment This Line) #LoadModule dav_module modules/mod_dav.so (Uncomment This Line) #LoadModule dav_fs_module modules/mod_dav_fs.so (Uncomment This Line) #LoadModule auth_digest_module modules/mod_auth_digest.so (Uncomment This Line) nano /usr/local/apache/conf.d/owncloud.conf <Limit GET POST> order allow,deny allow from all </Limit> <Limit PUT DELETE> order allow,deny allow from all </Limit> Save and restart apache service httpd restart Upgrade CURL rpm -Uvh http://nervion.us.es/city-fan/yum-repo/rhel6/x86_64/city-fan.org-release-1-13.rhel6.noarch.rpm yum clean all yum install libcurl and then restart the…
OwnCloud Enable MS Office Online Edit Support
1. Previews currently are only supported on non-windows systems 2. LibreOffice/OpenOffice needs to be installed Ubuntu/Debian -> apt-get install –no-install-recommends libreoffice-writer CentOS -> http://diegolamonica.info/how-to-make-l … entos-6-3/ 3. The correct path to your libreoffice / openoffice binary needs to be configured (check the manual of your system how to find it) 4. Make sure that the user running your webserver/PHP process is allowed to execute this binary 5. The PHP functions…
WD MyCloud Install OwnCloud
echo deb http://ftp.us.debian.org/debian/14 jessie main >> /etc/apt/sources.listapt-get update apt-get install php5 php5-gd service apache2 restart apt-get install php5-mcrypt php5-imagick /etc/init.d/apache2 restart nano /etc/php5/apache2/php.ini Ctrl + w and type ‘timezone’ [Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone5 date.timezone = Asia/Seoul —————————————————————————— and type like above Ctrl + O , enter, Ctrl + W /etc/init.d/apache2 restart > /etc/apt/sources.list echo deb http://ftp.us.debian.org/debian/ wheezy main…