NextCloud Install App from GitHub
From WikiMLT
Install ocDownloader app on NextCloud 24
In the current case I was in need to try out the parched version 1.9 (not merged pull request) of ocDownloader which is compatible with NexCloud 24. So the first step is to get the downloadable link from the target repository.
Then go into the NextCloud's apps directory and clone the repository. Remove the existing ocDownloader app and clone the target one.
cd /var/www/<nextcloud>/apps
sudo rm -R ocdownloader
sudo git clone https://github.com/JasonPoon-cn/ocdownloader.git
sudo chown -R www-data:www-data ocdownloader
Finally go into the NextCloud's document root directory and run the updater script.
sudo -u www-data php occ upgrade
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
Setting log level to debug
Turned on maintenance mode
Updating database schema
Updated database
Updating <ocdownloader> ...
Updated <ocdownloader> to 1.9.0
Starting code integrity check...
Finished code integrity check
Update successful
Turned off maintenance mode
Resetting log level
References
- NextClud Docs: Upgrade manually
- NextClud GitHub: Add NC24 compatibility Issue#245 | Support for NC24 Pull#247