Here are my notes for getting ownCloud 3 working on B3
Recommend using FireFox as ownCloud seems to have problems with other browsers (see subsequent posts) [EDIT]
PHP Tweaks
Open the PHP configuration file in /etc/php5/apache2/php.ini, look for:
upload_max_filesize = 2M
post_max_size= 2M
In place of 2M I put 1000M (8000M was too big!)
And...
memory_limit= 128M
Replace 128M with 1024M to pass test script:
Then restart apache:
/etc/init.d/apache2 restart
ownCloud Itself
I unpacked files to /home/web/owncloud3.0.0 (This time I did it from Windows using WinRAR and it took ages! First time round I used "use tar xjf" to extract the ".bz2" download file and that was quick)
Created a link:
ln -s owncloud3.0.0 owncloud
chown -R www-data:www-data owncloud*
Visited
http://b3/owncloud and entered credentials as for Installation (below)
Bookmarks App
For the bookmarks app it says you need php-curl. So here's what I did:
apt-get install php5-curl
Open the php.ini file using whatever text editor you have:
nano /etc/php5/apache2/php.ini
vi /etc/php5/apache2/php.ini
You then need to add the following line to your php.ini file, under extensions (which is towards the bottom of the file, so keep scrolling):
extension=php_curl.so
Because of the way PHP is setup on Bubba, you also need to create a symbol link: (solution hat tip: on the forums):
ln –s /etc/php5/conf.d/curl.ini /etc/php5/apache2/conf.d/curl.ini
Changes to the php settings will require a server restart:
/etc/init.d/apache2 restart
Music & Photos
I already had folders on B3 with mirrored copies of my music and pictures files, so to get them into ownCloud all I did was create symbolic links from the mirrors to my ownCloud data folder: