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.

hernandito

Community Developer
  • Joined

  • Last visited

Everything posted by hernandito

  1. Sorry.... can you advise where the .xml can be downloaded, and how do you map it? A screenshot would help.. thank you!
  2. A template for this would be great! When installing I get: I tried changing the port ranges as I have stuff in the 5000 range. Thanks H.
  3. Thank you Squid.... I was hoping something like simply executing the script by putting http://192.168.0.201:84/boot/.... I am on 6.8+ but I don't have any authentication.... just root without password. THanks, H.,
  4. Hi Guys, This may be a weird request. I created a personal web site that I run locally - in the LetsEncrypt docker. I have coded the web site in php. I would like to create a button on the page that executes one or more of my UserScripts. Is this possible? I looked at the html code for the button and it shows: <input type="button" value="Run Script" class="runningNZBGetUIEdits" id="foregroundNZBGetUIEdits" onclick="runScript("/boot/config/plugins/user.scripts/scripts/My script Here/script");"> What can I do to make this executable from my web page? Thank you! H.
  5. I had never noticed this....! I think I am too used to my Putty... or a terminal app on my iPad.... Thanks! H.
  6. Thank you guys. Following Itimpi's advice, I added the following to my go file. cp /boot/menu /usr/local/bin cp /boot/dock /usr/local/bin chmod u+x /usr/local/bin/menu chmod u+x /usr/local/bin/dock My two script files are called "menu" and "dock". I use these scripts for several commands that I can easily execute as needed from the command line. The "dock" script allows me to open the command line of each docker installed. This solution worked perfectly. Thank you again. H.
  7. Hi, Since custom scripts stored on flash drive now do not execute, what is the suggested method to be able to use them? I had my scripts executing within any directory. How can it be configured so the script location is on the “path”? Thank you. H.
  8. Did you download the latest version of the Docker...? In unRAID GUI go to Dockers, click Advanced View, and under NZBGet, click "Force Update".
  9. Thank you CHBMB! To summarize, in NZBGet go to: Settings > Extensions Scripts. In the field labeled ShellOverride enter the following: .py=/usr/bin/python3 This worked perfectly. Thank you my friend... and Happy New Year. H.
  10. Hi Gang, I am now getting Post Processing errors when using NZBtoSickbeard. This was properly working before. The error I am getting is: Fri Jan 03 2020 12:57:47 INFO Executing post-process-script nzbToSickBeard.py for Messiah.2020.S01E02.MULTi.1080p.WEBRip.x264.1-S0CKET-Obfuscated Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: Please use a newer version of Python. Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: Python End-of-Life for current versions: Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: v3.5 in 254 days Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: v3.6 in 720 days Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: v3.7 in 1271 days Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: v3.8 in 1746 days Fri Jan 03 2020 12:57:47 INFO nzbToSickBeard: Python 2.7 is no longer supported. Fri Jan 03 2020 12:57:47 ERROR Post-process-script nzbToSickBeard.py for Messiah.2020.S01E02.MULTi.1080p.WEBRip.x264.1-S0CKET-Obfuscated failed (terminated with unknown status) Fri Jan 03 2020 12:57:47 INFO Collection Messiah.2020.S01E02.MULTi.1080p.WEBRip.x264.1-S0CKET-Obfuscated added to history I can see that NZBGet is using Python 2.7... but it wants a new version. I am not sure if this will solve my issue. Any advise is greatly appreciated. Thanks, H. UPDATE: So It is the fault of Python being an older version. I tried the following commands inside the docker container: apk update && apk add --no-cache python3 rm /usr/bin/python ln -s /usr/bin/python3 /usr/bin/python python --version I can certainly certainly a script that runs the above... But shouldn't the Docker be updated for this? Thanks, H.
  11. Hi guys, im dying to know. Are you guys using a dedicated bare-metal video card pass-though to the VM? Does anyone have a setup where it’s a screen share only, without Needing a Catalina compatible video card? thanks, h.
  12. Do you like this for an icon? I think its appropriate.
  13. Holy crappola.... With the VM, do I need a dedicated Mojave+ compatible video card? Or something that will give high quality desktop connection - video performance. Thank you Ed!
  14. I got the movies be to work. thanks h
  15. Can anyone add new shows? It started doing this recently. It adds them, creates folder, and after a while, I refresh home screen and the show is not there. i tried tvmaze, thetvdb. W/ same results. thanks. h
  16. Sickbeard, Sickrage, Medusa and Sickrage..... I know there were rifts, splits, and terse words. I could not find a "history" for SickGear... Where does it fit in the chronology? I am on Medusa. Thank you Linuxserver.io!!!
  17. Thank you.... EDITED - created the variable and it worked perfectly. Now, can anyone help on my first issue? thanks!!! h.
  18. Hi Guys, I need a little guidance.... I am almost there.... but there is a little bit of a struggle w/ NGINX's page serving... I have Goggled and nothing has helped. First Issue So, reverse proxies are working great. I have my own qualified domain and all external traffic get routed properly. I also have a personal web site for my private use, which I want to password protect when accessing it from the outside via domain name. The web site is stored in the \appdata\letsencrypt\www\personalwebsite folder. In my defaults file I have added the below code the bottom of the block: # main server block server { listen 443 ssl http2 default_server; listen [::]:443 ssl http2 default_server; root /config/www; index index.html index.htm index.php; server_name nandito.com; # enable subfolder method reverse proxy confs include /config/nginx/proxy-confs/*.subfolder.conf; # all ssl related config moved to ssl.conf include /config/nginx/ssl.conf; # enable for ldap auth #include /config/nginx/ldap.conf; client_max_body_size 0; location / { try_files $uri $uri/ /index.html /index.php?$args =404; } location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include /etc/nginx/fastcgi_params; } location ~^/personalwebsite/.* { try_files $uri $uri/ /index.html /index.php?$args =404; auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; } So this has properly password protected when acessing from the internet...: https://MyDomainName.com/personalwebsite but it has ALSO protected it when using it internally.... https://192.168.0.200/personalwebsite Is there a way to not require the password if accessing it internally? Second Issue I own 2 fully qualified domain names. I am only able to certify one of them... in the docker config, I have tried: Docker Name: FirstDomainName.com;SecondDomainName.com Subdomains: www, and Docker Name: FirstDomainName.com Subdomains: www,SecondDomainName.com Neither of these options creates the certificate for the second domain. Is there a way to fix? Once fixed, I will attempt giving the second domain its own folder.... but I don't know where to store this folder... /config/www2? and add a new non-default server block? Thank you guys.... for ages I have been trying to migrate to LE/NGINX... I resolved the php issues by changing some of the php callouts to a MariaDB database. I feel like I have been alone on a small deserted island and I now I am swimming to the shore to join the rest of the world! H.
  19. Thanks Squid.... I was hoping there was a more starightforward solution. It has taken me years developing and tweaking my extensive php... it would be a nightmare trying to disssect all the changes. Is there a way to make the Docker use PHP 5? I find all kinds of links to downgrade PHP versions, but not not for the LSIO docker base. Thanks again, H.
  20. Hi Guys, I really want to switch from Apache (my own custom docker) this this one. In all honesty, when I try, I give up very quickly. I have created my own private web site using PHP that places and extracts data in a MariaDB (Docker) table. With my Apache, and PHP 5.5, I am able to read the data properly. When I try LE NGINX, the data from the db does not show up. I believe there are issues w/ PHP 7 that makes it more strict. But I just want to render the data.... The html/PHP where the page quits looks like this? <table width="100%" border="0" cellspacing="0" cellpadding="0" > <tr valign="top"> <td width=30px bgcolor=white height=76> <?php $servername = $MysqlRSSServer; $username = "root"; $password = "xxxxxx"; $dbname = "rssfeeds"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } (Code continues from here....) In my browser, if I look at the resulting page source.... I get this where it abruptly ends... <div id="poster" class="poster"> <table width="100%" border="0" cellspacing="0" cellpadding="0" > <tr valign="top"> <td width=30px bgcolor=white height=76> I have a PHP script that I have in cron that does put data into the db table. Does anyone have a tip on how I can get this to work? I really want to switch over to LSIO LE! Thank you. H.
  21. I tend to be very picky about design and interfaces. When I have downtime, I end up opening the php and css files to make changes. Then I get in trouble as the changes break with updates. Then I do them again... kinda like a hobby😊.
  22. Or simply change the frame, font, and fill of the un-assigned slots to the same as background color.
  23. I have not touched this docker in like 4 years. I believe there are more updated versions. Sorry.
  24. Awesome my friend. Thank you for the “data to show” option. Much clearer for me. I have yet to map all the drives to test. I am going to be removing the one un-assigned drive to see if it speeds things up. i will report back. thanks again!
  25. Hi Olehj. Thank you for this. It is very helpful. Is there a way to select what fields show up on the main page? Currently it shows everything. It would be nice to turn off things like path, model #, speed, temp, etc. This way it’s easier to read. I have not yet assigned all my drives, but it takes like 60 seconds to load the page. I have 15 drives. Is this normal? I only have one un-assigned drive. Thanks again. h.

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.