You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
When installing data_exporter in /var/www/owncloud/custom any occ command fails with:
PHP Fatal error: require(): Failed opening required '/mnt/data/apps/data_exporter/lib/../../../version.php' (include_path='/var/www/owncloud/apps:/var/www/owncloud/custom') in /mnt/data/apps/data_exporter/lib/Platform.php on line 51
Steps to reproduce
Start standard ownCloud docker server container
Install data_exporter in /mnt/data/apps (the docker container has a symlink in /var/www/owncloud/custom pointing to /mnt/data/apps)
Expected behaviour
Data exporter should work
Actual behaviour
Exception being thrown
The text was updated successfully, but these errors were encountered:
vi config.php -> change /var/www/owncloud/apps-external into /tmp/owncloud/apps-external
occ
PHP Fatal error: require(): Failed opening required '/tmp/owncloud/apps-external/data_exporter/lib/../../../version.php' (include_path='/var/www/owncloud/apps:/tmp/owncloud/apps-external') in /tmp/owncloud/apps-external/data_exporter/lib/Platform.php on line 51
Code in data_exporter/lib/Platform.php expects all apps folders to be in-core:
public function __construct(IAppManager $appManager, $versionFile = __DIR__ . '/../../../version.php') {
$this->loadVersion($versionFile);
$this->appManager = $appManager;
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When installing
data_exporter
in/var/www/owncloud/custom
any occ command fails with:Steps to reproduce
data_exporter
in/mnt/data/apps
(the docker container has a symlink in/var/www/owncloud/custom
pointing to/mnt/data/apps
)Expected behaviour
Data exporter should work
Actual behaviour
Exception being thrown
The text was updated successfully, but these errors were encountered: