I had the same problem. The errors in the web server log were useless, but the errors in the owncloud log were... somewhat useful, at least when stuffed into Google.

My issue was 2 Apps that don't seem to be current: calendar and contacts. They were trying to use some jquery junk that is no longer included, so they would make the entire interface blow up. I'm also pretty sure they were installed by default with Owncloud 6? Owncloud 7? and I hadn't disabled them.

The fix was to disable them:

cd /path/to/owncloud
sudo -u http /usr/local/bin/php -f console.php app:disable calendar
sudo -u http /usr/local/bin/php -f console.php app:disable contacts

That probably won't be exactly the command you need - your web server might run as a different user than http, or your path to php will likely be /usr/bin/php. It could also be other Apps. You can list them with:

sudo -u http /usr/local/bin/php -f console.php app:list
cd apps
ls -lt

Compare the list of active Apps to the directory listing and see if any that are active were NOT just updated with the upgrade to 8. Start by disabling those.

On 3/12/2015 12:45 PM, Ruben Felix wrote:
Hi All,

Afther upgrading OwnCloud 7 to 8 I got a white page and no errors in log files.
Only the access file got a 500 error code but that's all...

does somebody have the same issue?

Thanks!

Ruben


_______________________________________________
User mailing list
[email protected]
http://mailman.owncloud.org/mailman/listinfo/user

--
Joel Lord

_______________________________________________
User mailing list
[email protected]
http://mailman.owncloud.org/mailman/listinfo/user

Reply via email to