TheBB Posted January 31, 2018 Share Posted January 31, 2018 (edited) Adapted for Keenetic, the original manual is here. Introduction OwnCloud provides universal access to your files via the web, computer or mobile devices — wherever you are. Attention Spoiler comment next lines in /opt/share/www/owncloud/index.php after unpack if (\version_compare(PHP_VERSION, '7.4.0alpha1') !== -1) { echo 'This version of ownCloud is not compatible with PHP 7.4<br/>'; echo 'You are currently running PHP ' . PHP_VERSION . '.'; return; } example before & after ~ # diff -uraN /opt/share/www/owncloud/index.php.orig /opt/share/www/owncloud/index.php --- /opt/share/www/owncloud/index.php 2020-01-08 20:12:56.000000000 +0300 +++ /opt/share/www/owncloud/index.php 2020-02-05 15:03:02.471994881 +0300 @@ -36,11 +36,11 @@ } // Show warning if PHP 7.4 or later is used as ownCloud is not compatible with PHP 7.4 -if (\version_compare(PHP_VERSION, '7.4.0alpha1') !== -1) { - echo 'This version of ownCloud is not compatible with PHP 7.4<br/>'; - echo 'You are currently running PHP ' . PHP_VERSION . '.'; - return; -} +//if (\version_compare(PHP_VERSION, '7.4.0alpha1') !== -1) { +// echo 'This version of ownCloud is not compatible with PHP 7.4<br/>'; +// echo 'You are currently running PHP ' . PHP_VERSION . '.'; +// return; +//} // running oC on Windows is unsupported since 8.1, this has to happen here because // is seems that the autoloader on Windows fails later and just throws an exception. Requirements Ability to open TCP81 port to access ownCloud from internet. Installation Install necessary packages: opkg install bzip2 curl lighttpd-mod-access lighttpd-mod-fastcgi php7-cgi php7-mod-ctype \ php7-mod-curl php7-mod-dom php7-mod-fileinfo php7-mod-gd php7-mod-iconv php7-mod-intl \ php7-mod-json php7-mod-mbstring php7-mod-pdo-sqlite php7-mod-session php7-mod-simplexml \ php7-mod-sqlite3 php7-mod-xml php7-mod-xmlreader php7-mod-xmlwriter php7-mod-zip Download and unpack ownCloud files: curl https://download.owncloud.org/community/testing/owncloud-10.4.0RC1.tar.bz2 | \ bzip2 -cd | tar -xvC /opt/share/www/ Create the file `/opt/etc/lighttpd/conf.d/clouds.conf` and add following strings: server.port = 81 fastcgi.server = ( ".php" => ( "localhost" => ( "socket" => "/tmp/php-fcgi.sock", "bin-path" => "/opt/bin/php-fcgi", "max-procs" => 1, "bin-environment" => ( "PHP_FCGI_CHILDREN" => "2", "PHP_FCGI_MAX_REQUESTS" => "1000" ) ) ) ) $HTTP["url"] =~ "^/owncloud/data/" { url.access-deny = ("") } $HTTP["url"] =~ "^/owncloud($|/)" { dir-listing.activate = "disable" } Edit /opt/etc/php.ini: upload_max_filesize = 100M post_max_size = 100M memory_limit = 32M Start lighttpd: /opt/etc/init.d/S80lighttpd start Using Owncloud Open http://<ip address of device>:81/owncloud and create a new account. You can access your files using the Web interface, or a Desktop/Mobile app. Edited January 11, 2021 by TheBB updated pkg list Quote Link to comment Share on other sites More sharing options...
Gürkan Gülmez Posted January 13, 2020 Share Posted January 13, 2020 Hello, Is it work with kn-2111. Cheers Gürkan Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 3, 2020 Share Posted February 3, 2020 I tried to use this instruction, but did not succeed. I can install only the php 7.4.1 from OPKG, while the OwnCloud is only compatible with version 7.3 (look at the official website). Upgrading the OwnCloud to version 10.3.2 did not solve the problem, because php 7.4 is still not supported, therefore I take error "This version of ownCloud is not compatible with PHP 7.4". In addition, Google says that there is no way to install an older version of the php packages through the OPKG. Any ideas what can be done? Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 3, 2020 Share Posted February 3, 2020 (edited) + some guys on OpenWrt forum says, it is possible to install custom packages in OPKG by direct download. But I cannot find the right place/link for php 7.3 suitable for Keenetic. Edited February 3, 2020 by Michael Khaskelberg Quote Link to comment Share on other sites More sharing options...
TheBB Posted February 3, 2020 Author Share Posted February 3, 2020 (edited) All the old packages are here. You can install them manually, e.g. `opkg install http://bin.entware.net/mipselsf-k3.4/archive/php7_7.2.22-1_mipsel-3.4.ipk`. You can also try installing "Nextcloud". (in RU) Edited February 3, 2020 by TheBB nextcloud Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 3, 2020 Share Posted February 3, 2020 остановил веб-сервер удалил php 7.4 (ipkg remove ...) скопировал из ссылки все модули PHP версии 7.2.17 в /opt/home opkg install /opt/home/php* сервер старт интерфейс OwnClowd начинает загружаться, но обламывается с ошибкой: "Не установлен PHP-модуль intl." при этом opkg info php7-mod-intl выдает вот что: Package: php7-mod-intl Version: 7.4.1-2 Depends: libc, libssp, librt, libpthread, php7, icu Status: unknown ok not-installed Section: lang Architecture: mipsel-3.4 Size: 142429 Filename: php7-mod-intl_7.4.1-2_mipsel-3.4.ipk Description: Note that this package depends in ICU library which is built without data by default. This is to satisfy programs build and run dependencies but to keep the installed footprint small on the target system(s). However, the data is required to make the ICU library useful - and thus directly affects PHPs ICU extension, too - so consider to also select/install package 'icu-full-data'. Package: php7-mod-intl Version: 7.2.17-2 Depends: libc, libssp, librt, libpthread, php7, icu Status: install user installed Architecture: mipsel-3.4 Installed-Time: 1580746741 С какого фига он продолжает писать про 7.4.1 - не понимаю. Команда ниже не помогает: opkg install /opt/home/php7-mod-intl_7.2.17-2_mipsel-3.4.ipk --force-reinstall --force-overwrite --force-downgrade Чё-то как то грустно. Попробую NextCloud, может он посговорчивее окажется. Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 3, 2020 Share Posted February 3, 2020 NextCloud заработал на php 7.2.17, вопрос решен. PS тормоза просто космические. Quote Link to comment Share on other sites More sharing options...
TheBB Posted February 5, 2020 Author Share Posted February 5, 2020 On 2/3/2020 at 8:23 PM, Michael Khaskelberg said: С какого фига он продолжает писать про 7.4.1 - не понимаю. Команда ниже не помогает: The dependencies are broken. On 2/3/2020 at 8:23 PM, Michael Khaskelberg said: opkg install /opt/home/php* step by step one by one On 2/3/2020 at 8:23 PM, Michael Khaskelberg said: Чё-то как то грустно. "Extra" is a weak device (ну, что поделать) The first post was updated Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 6, 2020 Share Posted February 6, 2020 21 hours ago, TheBB said: The dependencies are broken. ........ step by step one by one Too complicated. I don’t see the point. Now testing NextCloud on my NAS - more powerfull, more convenient to set up and tune. Let's Keenetic be only a router. Quote Link to comment Share on other sites More sharing options...
zyxmon Posted February 6, 2020 Share Posted February 6, 2020 36 минут назад, Michael Khaskelberg сказал: Too complicated. What is too complicated in "Attension" remark? Just open it. Quote Link to comment Share on other sites More sharing options...
Michael Khaskelberg Posted February 6, 2020 Share Posted February 6, 2020 13 минуты назад, zyxmon сказал: What is too complicated in "Attension" remark? Just open it. Already saw the "Attention". But I see no reason to restore broken dependencies. Either "clean install" or "use NAS". Considering the fact that NextCloud works on my Extra too slowly, I will not even try the first option. Quote Link to comment Share on other sites More sharing options...
Alem Posted September 7, 2023 Share Posted September 7, 2023 (edited) Hi.Php 8.4 not work.Requires Php 8?? Edited September 10, 2023 by Alem Quote Link to comment Share on other sites More sharing options...
BABA Posted February 10 Share Posted February 10 (edited) В 07.09.2023 в 13:35, Alem сказал: Hi.Php 8.4 not work.Requires Php 8?? ngnix + php8.2.8 + nextcloud (v26) working with my hero(kn-2410). but it is exxxtreeemly slow. Even creating an album on it takes 15-25 seconds. Manytimes fails. My conf is OPKG installed on 64gb usb3.0. partitioned 5gb ext4 for opkg + 512mb swap. php -m [PHP Modules] Core ctype curl date dom fileinfo filter gd hash iconv intl json libxml mbstring mysqlnd openssl pcre PDO pdo_mysql pdo_sqlite posix random Reflection session SimpleXML SPL sqlite3 standard xml xmlreader xmlwriter zip zlib [Zend Modules] Edited February 10 by BABA Quote Link to comment Share on other sites More sharing options...
Alem Posted April 20 Share Posted April 20 I agree. Even Nextcloud worked very slowly with Peak DSL 256 mb ram. I thought it would be worth a try to use basic NAS functions with Seagate backup hub+ 5 TB HDD. Instead: Entware file browser+KeeDns+webdav file synchronization+aria2c works fine. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.