Hi everybody,
I just updated my servers from 5.5 to 7.2.
Since that, I cannot access my owncloud as the following error is displayed (in french)
PHP est configuré pour remplir des données brutes POST. A partir de PHP 5.6, cela va générer des avis pour du code parfaitement valide.
Pour corriger ce problème, configurezalways_populate_raw_post_data
à-1
dans votre php.ini
Which basically says that because I’m now using a version of PHP>5.6, I have to change a line (always_populate_raw_post_data=-1) in my php.ini.
The problem is that even when I create a php.ini at the root of my Owncloud folder with the right line in it, the error message is still displayed.
I tried to find existing php.ini file within the owncloud folders, but I did not find any.
But I found that the .user.ini exists and already contains the line always_populate_raw_post_data=-1
Any idea about how to get this variable to be accepted by owncloud?
Thank you very much!
Server configuration
Operating system: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
Web server: http://cloud.ulysse.blau.com
PHP version: 7.2.16
Where did you install ownCloud from: Download from website
The content of config/config.php:
<?php $CONFIG = array ( 'instanceid' => '***', 'passwordsalt' => '***', 'secret' => '****', 'trusted_domains' => array ( 0 => 'ulysseblau.com', 1 => 'cloud.ulysseblau.com', ), 'datadirectory' => '/homepages/19/d234433622/htdocs/ulysseblau/cloud/data', 'overwrite.cli.url' => 'http://ulysseblau.com/cloud', 'dbtype' => 'sqlite3', 'version' => '8.0.3.4', 'installed' => true, 'theme' => '', 'maintenance' => false, );