Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] DVBLink, Kerio Connect, Apache-php, TVHProxy, Webgrabplus

Featured Replies

@alturismo Thanks, that did indeed resolve the problem and I could reach the tvhproxy from the Plex Docker container. Unfortunately TVHProxy fails to get the channels list from TVHeadEnd:

 

Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/flask/app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "/usr/lib/python2.7/site-packages/flask/app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/usr/lib/python2.7/site-packages/flask/app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/usr/lib/python2.7/site-packages/flask/app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/lib/python2.7/site-packages/flask/app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/opt/tvhproxy/tvhProxy.py", line 54, in lineup
for c in _get_channels():
TypeError: 'NoneType' object is not iterable
::ffff:192.168.1.231 - - [2021-07-16 02:50:57] "GET /lineup.json HTTP/1.1" 500 412 0.010207
[2021-07-16 02:50:59,315] ERROR in app: Exception on /lineup.json [GET]

 

However when I connect with a browser, copying the value from the TVH_URL field into the address bar of the browser, I reach TVHeadend and get a channels list returned. I am reaching the point where I think I will just record from within TVHeadEnd soon, without the proxy flask.

  • 2 weeks later...
  • Replies 195
  • Views 64.4k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • @Reptar yes. So i have to downgrade the OnlyOffice Plugin. This helped me: https://help.nextcloud.com/t/error-after-upgrading-app/126540/17 only the command on Step 5 isn't right. Maybe this

  • JonathanM
    JonathanM

    Title of the thread you posted this in is: [Support] DVBLink, Kerio Connect, Apache-php, TVHProxy, Webgrabplus   So if you are trying to be helpful, you need to add a little more inform

  • After hours of testing the DVBLink Docker is working without Problems. The Config Files are now in the Unraid share so the configuration is consistant. The DVBLink Docker is starting correct

Posted Images

Hello,

I am a user of the Apache-PHP container but I would like to be able to change some PHP values in its INI file but I don't have access to it.

 

Changing the values in the PHP code does not work (tested with upload_max_filesize without success).

 

Changing values in an .htaccess file doesn't work any better, worse, you get a 500 error.

 

Accessing the container via the console does not work for me on my unRAID server.

 

Thanks for helping me with how to fix my problem.

  • 4 months later...

@chvb Is an upgrade to 6.4.2.6 with your OnlyOfficeDocumentServer possible? With the latest Plugin Version you container will not open Files.

16 hours ago, sonic6 said:

@chvb Is an upgrade to 6.4.2.6 with your OnlyOfficeDocumentServer possible? With the latest Plugin Version you container will not open Files.

 

Are you also getting the "The "documentType" parameter for the config object is invalid. Please correct it." error?

9 hours ago, sonic6 said:

@Reptar yes. So i have to downgrade the OnlyOffice Plugin.

This helped me: https://help.nextcloud.com/t/error-after-upgrading-app/126540/17 only the command on Step 5 isn't right.

Maybe this is the right one:

find ./onlyoffice -type d -exec chmod 0750 {} \;

find ./onlyoffice -type f -exec chmod 0640 {} \;

 

Thanks, that did it for me!!

On 12/1/2021 at 8:04 PM, Reptar said:

 

Are you also getting the "The "documentType" parameter for the config object is invalid. Please correct it." error?

 

On 12/1/2021 at 11:42 PM, sonic6 said:

@Reptar yes. So i have to downgrade the OnlyOffice Plugin.

This helped me: https://help.nextcloud.com/t/error-after-upgrading-app/126540/17 only the command on Step 5 isn't right.

Maybe this is the right one:

find ./onlyoffice -type d -exec chmod 0750 {} \;

find ./onlyoffice -type f -exec chmod 0640 {} \;

 

I was getting the exact error above, and following the steps in the link with the corrected commands you provided fixed it for me. Thank you!

  • 1 month later...
On 12/2/2021 at 5:42 AM, sonic6 said:

@Reptar yes. So i have to downgrade the OnlyOffice Plugin.

This helped me: https://help.nextcloud.com/t/error-after-upgrading-app/126540/17 only the command on Step 5 isn't right.

Maybe this is the right one:

find ./onlyoffice -type d -exec chmod 0750 {} \;

find ./onlyoffice -type f -exec chmod 0640 {} \;

Thank you 🙂

Can we get an update for onlyofficedocumentserver please. Documents won’t open and I get error (Error when trying to connect (Not supported version) (version 5.6.4.20)) so I think it needs a version update?

 

EDIT: I have followed the instructions above and got it working again but how do i stop onlyoffice from updating in nextcloud?

 

 

 

These are the steps that worked for me.

 

1. Disable and remove the OnlyOffice app from the Nextcloud web UI.

2. Open the UnRAID terminal using the >_ button in the top right part of the UnRAID interface or ssh.
 2a. Navigate to the Nextcloud directory by typing (change the bolded nextcloud value to the name of the docker container):
 cd /mnt/user/appdata/nextcloud/www/nextcloud/apps/

3. Download the previous version of the OnlyOffice by typing:
 sudo -u root wget https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.1.2/onlyoffice.tar.gz

4. Unpack the archive:
 sudo -u root tar xvf onlyoffice.tar.gz

5. Restart Nextcloud docker instance

6. Fix the access permissions of the underlying files and folders:
 find ./onlyoffice -type d -exec chmod 0750 {} \;
 find ./onlyoffice -type f -exec chmod 0640 {} \;

Edited by SavageAUS

  • 2 months later...
On 1/24/2022 at 4:51 AM, SavageAUS said:

Can we get an update for onlyofficedocumentserver please. Documents won’t open and I get error (Error when trying to connect (Not supported version) (version 5.6.4.20)) so I think it needs a version update?

 

EDIT: I have followed the instructions above and got it working again but how do i stop onlyoffice from updating in nextcloud?

 

 

 

These are the steps that worked for me.

 

1. Disable and remove the OnlyOffice app from the Nextcloud web UI.

2. Open the UnRAID terminal using the >_ button in the top right part of the UnRAID interface or ssh.
 2a. Navigate to the Nextcloud directory by typing (change the bolded nextcloud value to the name of the docker container):
 cd /mnt/user/appdata/nextcloud/www/nextcloud/apps/

3. Download the previous version of the OnlyOffice by typing:
 sudo -u root wget https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.1.2/onlyoffice.tar.gz

4. Unpack the archive:
 sudo -u root tar xvf onlyoffice.tar.gz

5. Restart Nextcloud docker instance

6. Fix the access permissions of the underlying files and folders:
 find ./onlyoffice -type d -exec chmod 0750 {} \;
 find ./onlyoffice -type f -exec chmod 0640 {} \;

 

Seems this needs to be done every time NC itself is updated (not the docker, NC itself).  This docker has not been updated in probably a year at this point and there are a couple of other options for DocumentServer in the app store.  Did anyone find an alternative that works with the latest Onlyoffice connector within NC?  Any limits to mobile editing etc. (I believe that's why I installed this version in the first place).  Thanks!

  • 1 month later...

Hi, 

I am looking for some help please. I have the Apache-PHP container running well for some time but now have a need for may PHP code to send mail. It looks like there is no sendmail service running and where it tri and install it with

apt-get install sendmail

I get the following error

Setting up tzdata (2019a-0ubuntu0.14.04) ...
mv: cannot move '/etc/localtime.dpkg-new' to '/etc/localtime': Device or resource busy
dpkg: error processing package tzdata (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 tzdata
E: Sub-process /usr/bin/dpkg returned an error code (1)

 

Thank in advanced to anyone that can help

  • 1 month later...

Sorry but it shit app, it kill my proxy config. DONT use this 

13 hours ago, Cemion said:

Sorry but it shit app, it kill my proxy config. DONT use this 

Title of the thread you posted this in is:

[Support] DVBLink, Kerio Connect, Apache-php, TVHProxy, Webgrabplus

 

So if you are trying to be helpful, you need to add a little more information, like which app you are talking about, and what exactly happened.

 

Otherwise your post is rather useless.

TVHPROXY simply displays internal Server Error. Is anyone able to get another image from docker added or this template fixed.

 

The below Docker Template seems to run okay but I have no idea how to get permissions to edit the template file within the container in /opt, Any chance anyone can take a look. 

 

https://hub.docker.com/r/geertbongers/tvhproxy/

Edited by Nano

  • 2 months later...

@chvb Any chance for an image update for Kerio?

  • 5 months later...

[Apache-PHP]

any way to have .htaccess files working on this? would love to use it but they don't seem to work and i can't quite figure out how to get them to work

  • 5 months later...

Like a few other people here I also wanted mod_rewrite enabled and a newer version of PHP.

I modified chvb's image and uploaded a new container here: https://hub.docker.com/r/evilalmus/docker_apache_php

I've applied to have it added to community apps, but for now if you use the Apache-PHP template from chvb and update the repository to `evilalmus/docker_apache_php` it should work fine. 

Same minimum requirements as the original:

    Mapped ports:

        Port 80

        Port 443

    Mapped Paths:

        /config : this path is used to store the configuration and the SSL certs files of the reverse proxy.

        /web : this path is the web directory

        /logs : this path is the logs directory
        /etc/localtime  :  hosts timezone info

This version has mod_rewrite enabled and PHP Version 8.1.2-1ubuntu2.13

Limited support in https://github.com/evilalmus/UNRAID_COMMUNITY_APPS/issues as I find that much easier to keep track of than forums. 

  • 10 months later...

I'm having a weird issue with only office that doesn't want to work. i deleted the container, deleted appdata, grabbed a new one. i can reach the website but files won't open in nextcloud. i'm trying to see where the problem could be.

 

I keep having the following show up in the logs

 

 

[2024-06-26T04:09:48.933] [WARN] [localhost] [docId] [userId] nodeJS - Failed to subscribe to plugin folder updates. When changing the list of plugins, you must restart the server. https://nodejs.org/docs/latest/api/fs.html#fs_availability
[2024-06-26T04:09:49.108] [WARN] [localhost] [docId] [userId] nodeJS - sqlQuery error sqlCommand: SELECT column_name as "column_name" FROM informati: error: database "onlyoffice" does not exist
    at /snapshot/server/DocService/node_modules/pg-pool/index.js:45:11
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
[2024-06-26T04:09:49.108] [ERROR] [localhost] [docId] [userId] nodeJS - getTableColumns error: error: database "onlyoffice" does not exist
    at /snapshot/server/DocService/node_modules/pg-pool/index.js:45:11
    at processTicksAndRejections (node:internal/process/task_queues:96:5)

 

==> /var/log/onlyoffice/documentserver/nginx.error.log <==

i was able to recreate the container and generate the database, i'm able to link the nextcloud to it. But the files don't open still and i'm getting the same error from nodeJS

 

[2024-06-26T04:22:23.955] [WARN] [localhost] [docId] [userId] nodeJS - Failed to subscribe to plugin folder updates. When changing the list of plugins, you must restart the server. https://nodejs.org/docs/latest/api/fs.html#fs_availability

  • 1 month later...
On 8/23/2023 at 9:53 PM, almus said:

Like a few other people here I also wanted mod_rewrite enabled and a newer version of PHP.

I modified chvb's image and uploaded a new container here: https://hub.docker.com/r/evilalmus/docker_apache_php

I've applied to have it added to community apps, but for now if you use the Apache-PHP template from chvb and update the repository to `evilalmus/docker_apache_php` it should work fine. 

Same minimum requirements as the original:

    Mapped ports:

        Port 80

        Port 443

    Mapped Paths:

        /config : this path is used to store the configuration and the SSL certs files of the reverse proxy.

        /web : this path is the web directory

        /logs : this path is the logs directory
        /etc/localtime  :  hosts timezone info

This version has mod_rewrite enabled and PHP Version 8.1.2-1ubuntu2.13

Limited support in https://github.com/evilalmus/UNRAID_COMMUNITY_APPS/issues as I find that much easier to keep track of than forums. 

 

Hello. Thx for your work.

I din't find the topic for your docker in the unraid forum. Is this normal ?

I having a issue with the connection to mariadb. I get "no host found" But if I go on the ip adress of the db it works.

  • 9 months later...

Hello everyone,

i want to run Apache-php to host a php site with access to my mySQL database. However, i need to install the pdo driver. Normally i would just uncomment the „extension=pdo_mysql“ part from the php.ini. But it seems like the php.ini is not where it says when running phpinfo(). It says: /etc/php/8.1/apache2/php.ini. But the folter /php/ does not exist.

 

Thus, my question, can anyone point me in the right direction? How can i enable the pdo_mysql driver when utilizing the docker container apache-php? 

 

I added a snippet from phpinfo() with the referenced path. In addition I added a snippet from the php.ini file which is located in /etc/php.ini. It only has 13 lines and does not contain the lines that i would expect. The third snippet is from the folder /etc/ no folder /php/ visible. Instead php.ini is sitting in /etc/ directly.

 

Thanks for any help :)

IMG_0145.jpeg

IMG_0144.jpeg

IMG_0143.jpeg

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.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.