• 1
  • 64
  • 65
  • 66
  • 67(current)
  • 68
[WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app
(2016-03-30, 16:04)osharko Wrote: hi, i'm quite confuse about the installation of HTPC manager on my homemade NAS, i come from synology os and i'ld like to find a configuration like it.
i have to :
- Reproduce video like it's netflix (i have the 70% of the video encoded with h265, is there any app to encode them?)
- Access to all the file (obviously)
- Use DDNS (but maybe this depends on os..)

Then.. i tryed to configure from the web client, but i don't know hot to do

Htpc manager don't do anything of what you want. It's a interface to manage different services and limit access.

You can use ffmpeg to encode the videos and mb3 or plex to stream you own content to your browser/tv/app
Reply
thank you Smile
Reply
Hi

Will this ever support https://sonarr.tv/ ?
Reply
(2016-04-07, 15:45)darksheep Wrote: Hi

Will this ever support https://sonarr.tv/ ?

You can try my fork if you want support for sonarr. Or wait for somebody to add it to htpc manager. The main project seems dead.
Reply
I'm having trouble with a reverse proxy set up. If I just access htpc manager by going to my externalip:port all my modules work fine but if I go to my.dns.net/htpcmanager I can log in to it but all of the modules don't work. If I do a test on settings they all pass which is why this is so weird.
Reply
Post your reverse proxy config.
Reply
im having the same issue. the modules for thew dashboard dont work except for plex

heres my reverse proxy setup

removed server name and ip

Code:
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name ----------------------------;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

           location / {
        proxy_pass http://127.0.0.1:8085;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    location /plexrequest {
           proxy_pass http://127.0.0.1:3579;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      }
    

    location /couchpotato {
        proxy_pass http://127.0.0.1:5050;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    location /sonarr {
        proxy_pass http://127.0.0.1:8989;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }


    location /gui {
        proxy_pass http://localhost:8285/gui;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    location /utorrent {
        proxy_pass http://localhost:8285/gui;
    }


    location /jackett {
        proxy_pass http://127.0.0.1:9117/jackett/;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
Reply
Any plans on adding Deluge dashboard support ?
Thanks
Reply
Last commit is over a year ago. So probably not

Sent from my LG-VS985
Reply
Hi All,

Is anyone able to assist with the connection between HTPC and Plex?

Have configured Plex in HTPC, the "Test" works but when I attempt to see Plex content in HTPC-Manager It says it cannot connect.

I get this error message in the HTPC-Manager logs:
modules.plex ERROR Unable to fetch currently playing information! Exception: '_children'

Thanks
Reply
As @hellow mentioned in a very subtle(humble?) way, this project appears dead and his port has a lot more improvements above the state of this repo. You can find it at https://github.com/Hellowlol/HTPC-Manager .

I hope the moderator would update the OP to link to this repo.
Reply
Hi all!

Im a Synology NAS user and i found this app in the SynoCommunity app list of my NAS.

The HDMI ports on my TV are broken so i cannot connect a pc or android device which has KODI, however i can connect by DLNA to my NAS to watch tv shows/movies/music/etc on this HDMI-less TV.

Quick question...

Can i use this program to feed out files from my NAS to watch them on this TV ?
As it is.. the files work through the TV's DLNA setup and im not sure of anywhere there is any kind of Chromecast-like setup i can use instead (Chromecast not built into this TV)

Thanks in advance.

Silencerbob
Reply
Silencerbob, that's not what this program does at all.
Catchy Signature Here
Reply
Hi,

I am running HTPC manager on a Ubuntu server. However i am having some issues with the "system" module. It's not showing any system information but instead shows:

smartmontools
Python should be executed as an administrator to smartmontools to work properly. Please, try to run python with elevated credentials.

Can someone explain to me what i am supposed to do to get this working? My linux terminal knowledge is not very big and this is a headless machine.

Python is installed and it's the latest version. However i have no idea how to "elevate the credentials" for Python.

Thanks!

Kasper
Reply
(2017-03-19, 17:23)kasper1985 Wrote: Hi,

I am running HTPC manager on a Ubuntu server. However i am having some issues with the "system" module. It's not showing any system information but instead shows:

smartmontools
Python should be executed as an administrator to smartmontools to work properly. Please, try to run python with elevated credentials.

Can someone explain to me what i am supposed to do to get this working? My linux terminal knowledge is not very big and this is a headless machine.

Python is installed and it's the latest version. However i have no idea how to "elevate the credentials" for Python.

Thanks!

Kasper

Hi. You need to use sudo python htpc.py
Reply
  • 1
  • 64
  • 65
  • 66
  • 67(current)
  • 68

Logout Mark Read Team Forum Stats Members Help
[WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app7