Thanks for this guide Joshua. I learned a lot going through it.
So I upgraded to Owncloud 8. Works great,but I did have to comment this line out (previously mentioned)
Navigate to the nginx config
Code:
nano /usr/local/etc/nginx/nginx.conf
If you are doing this from scratch and you follow joshua's guide (coyping his nginx.conf) you
probably wont have to worry about this, but in upgrading to the new version via the GUI it added this line- comment it out with a #
Code:
fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
Also...
In case this happens to someone else, my cron jobs weren't running for some reason. Long before I upgraded to owncloud 8 they weren't running.
I did some research and found
this.
It's my understanding that there was either a power outage, or some freak incident that caused my cron.lock file to not be deleted. I moved the file from /mnt/files (user file directory) to /mnt
I then manually ran this in the owncloud jail jls -> jexec # csh
Code:
php /usr/local/www/owncloud/cron.php
Refreshed the owncloud admin page and it showed as having just ran the cron.
I'm not sure if removing the cron.lock did anything as I didn't test to manually run that command before removing the file. So I'll wait and see if the cron runs itself.
Side note: I did add the cronjob per the guide. When I noticed the cronjobs weren't running I checked to make sure it was still there .
UPDATE 1: The cronjob is working now. I ran it manually at 7, at 7:15 it registered as having ran again.