Everything posted by bmilcs
- [Plugin] Custom Tab
-
[Plugin] Custom Tab
What URL are you using? How is it formatted?
-
[Plugin] Custom Tab
It works if I choose In Tab or Popup. Not if I choose URL (iframe).
-
[Plugin] Custom Tab
Indeedily does did do.
-
[Plugin] Custom Tab
Great Plugin However, I can't get Krusader to behave for me anymore. This is the error I get: I've tried using your screenshot example with no luck. I imagine it's quite dated at this point.
-
Unraid OS version 6.7.2 available
Rolled it on back. I'll give it a few weeks and try again
-
Unraid OS version 6.7.2 available
Updated and now all my drives are missing. Let the good times roll.
-
**VIDEO GUIDE** How to setup a virtual VPN router to route any device through a vpn
Hi spaceinvader one, I followed your guide and my proxy is working flawlessly. Great instructional video. Quick question: What ports do I use when forcing a web browser through the router's ip? For example, I want to use Vivaldi has my VPN protected web browser on my desktop. I downloaded several extensions and I can't seem to get any of them to work. I'm using the IP we set up as our virtual router, which works perfectly when applied in my Windows IPV4 settings for my entire desktop. 1) Does it have something to do with the specific ports I'm trying to use? Most extensions want HTTP, HTTPS, FTP ports, and the default ones do not work properly. 2) How do I point specific dockers to this VPN Router's address for VPN protection? Google searches yield "you can't use different IP address per each Unraid Docker". Thanks again ?
-
[Support] brettm357 - UniFi
I backed up my Unifi Settings from my Windows Unifi Client and then closed it out. Ran this docker and imported the settings. All of my devices say "Disconnected". How do I go about fixing this? The setup pages seem to be filled out correctly, but it is simply not showing up as working.
-
[Support] Linuxserver.io - LazyLibrarian
I am not sure I follow. Where exactly do you mean? From the Docker list page? IE: Or: ?
-
[Plugin] unbalanced
Hi. I don't have the time to read through the 41 pages of support here. However, here's a brief description of my issue: Installed unBalance, enabled "Yes", clicked Apply. No hyperlink to visit GUI. Fine. I try entering it manually. OK. Tried switching the port #. Still no good. Is there a simple fix? Is this a common issue?
-
[Support] Linuxserver.io - LazyLibrarian
Also, anytime I change a setting or try to launch from the Docker GUI: Unable to connect Firefox can’t establish a connection to the server at 127.0.0.1:5299.
-
[Support] Linuxserver.io - LazyLibrarian
I am having one heck of a time getting Deluge to communicate properly with LazyLibrarian. Is anyone else having this trouble? I've tried so many different things. It's my belief that magnet links are completely not working for me. If I go the Black Hole route, LazyLibrarian doesn't handle any post processing. Unhandled exception in downloadResult: Traceback (most recent call last): File "/app/lazylibrarian/lazylibrarian/resultlist.py", line 276, in downloadResult controlValueDict["NZBurl"], newValueDict["AuxInfo"]) File "/app/lazylibrarian/lazylibrarian/downloadmethods.py", line 499, in TORDownloadMethod (Source, downloadID, full_url)) File "/app/lazylibrarian/lazylibrarian/database.py", line 48, in action sqlResult = self.connection.execute(query, args) InterfaceError: Error binding parameter 1 - probably unsupported type.
-
[Support] activ- flexget
Not sure what happened: my guess is that an auto-update occurred and now I can't login to Flexget via Unraid Docker Page. Checked passwd field in the config and it's still the same. How can I extract my old config?
-
[Support] Linuxserver.io - LazyLibrarian
Any news on the update? I am still receiving the ajax error and the dockers up-to-date.
-
[Support] activ- flexget
How can I code this properly? I want to rename any podcast with "Thursday" in the title to Date TMP. I want to rename any podcast with "Monday" in the title to Date MMP. How do I successfully apply an if/then statement to execute this? I tried something like this, but of course it didn't work. I am not a programmer Thanks! web_server: bind: 0.0.0.0 port: 3539 web_ui: yes templates: podcast: accept_all: yes pathscrub: windows limit_new: 1 tasks: MMP: template: podcast rss: http://billburr.libsyn.com/rss/ download: /mnt/user/podcasts/Monday_Morning_Podcast/ if: - "'Monday' in title" set: filename: "{{ rss_pubdate | formatdate('%Y-%m-%d') }} - MMP.mp3" - "'Thursday' in title" set: filename: "{{ rss_pubdate | formatdate('%Y-%m-%d') }} - MMP.mp3"