Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC (/showthread.php?tid=113136) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - DejaVu - 2012-06-05 I've been on the official for sometime now due to being heavily involved in creating my own NewzNab server, but your additions are persuading me to make a new frankenstein branch again. @rflores2323 Might I suggest joining over on Maraschino's forum too? Its got some additions with some upcoming features mainly from N3MIS15 showcased on there... Maraschino Updater being the main one at the moment, but N3MIS15 seems to have loads up his sleeve if his repo is anything to go by! Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - N3MIS15 - 2012-06-05 I'm good at starting things but not finishing them... A few things I have on the go are updater, adding some core stuff like daemonizing and pidfile support, editing the xbmc library with the json API (frodo only), headphones module and I have sent a few bug fix pull requests. No guarantees it will all make master tho. RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-09 (2012-06-05, 19:03)N3MIS15 Wrote: I'm good at starting things but not finishing them... A few things I have on the go are updater The updater would be really fantastic to have seeing the light. Is there anyone who is using Maraschino outside the home network to access sabnzbd, SB, CP, et al? With only opening the "80" port. If so, would be fantastic if he can write a few lines how he achieved that. I used to have it running, but always had some smaller issues (e.g., thumbs not loading for recently added, movie library not showing properly). Thanks a ton in advance! RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - guy_smiley:) - 2012-06-09 (2012-06-09, 10:04)steve1977 Wrote:(2012-06-05, 19:03)N3MIS15 Wrote: I'm good at starting things but not finishing them... A few things I have on the go are updater I swear I do this every couple of months This is in sites-available as 'maraschino' Code: <VirtualHost *> This is httpd.conf Code: ServerName myserver.dyndns.org This has everything working via reverse proxies, no missing images except in the SickBeard widget in Maraschino. Set your XBMC to the local IP and it will pull images as usual. RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - SlackMaster - 2012-06-09 I have maraschino running on my openelec install on port 7000. All the settings point to local 192.168... ip's since the machine is within the same network. To access it from outside, I just set the public port on my router to 80 and then the private port to 7000. That way requests that come in from outside on standard http translate to 7000 internally. I'd edit your settings file though and make sure you have auth on. So basically it looks like this http://mywebsiteaddress.com ----> points to 192.168.0.100:7000 RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - SlackMaster - 2012-06-09 Hello, First off, awesome creation. My hat's off to those that spend their time working on this. I've donated $20 to the cause. Keep up the great work and thanks for everything! I have Maraschino running on openelec. Like others, I had issues with the disk drives in the latest beta 4 eden release. To fix this, I did like the post said and created an autostart.sh file in the .config directory (if you're a noob like me and using a PC to make your files, be sure to use an editor like textpad and select "UNIX" not "PC" when saving the file). Here's my issue now, Maraschino is running on my XBMC machine, but my entire media library is on a server in the other room, I'm streaming via samba shares. To get the samba shares to show up, I had to mount them. So again, I followed the directions of others and added some additional lines to my autostart.sh file. Here's what I have so far. Code: #!/bin/sh Everything starts up fine, but here's what my disk space module looks like: As you can see, the used space on the tv share seems a bit off. I assume this is because that share is actually 4 2TB drives in a JBOD, whereas the other two drives are stand alone. ( I may be wrong about that ). Anyone else got any idea what might be causing this issue and if so, perhaps how to fix it? Thanks RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-09 (2012-06-09, 11:27)guy_smiley:) Wrote: I swear I do this every couple of months Thanks, this is helpful. I am conscious that you have been helping before, so even more appreciated. Two more questions: 1) I assume that this description is what works with Apache. I keep reading that Maraschino may ditch support for Apache. Under this circumstance, what would I need to do to set it up with cherrypy (still only opening port 80). 2) I just installed Apache server (UniServer) at a friend's computer and set up everything as I thought I had done myself before. Issue is that Maraschino does not show up. Instead, I am getting the file directory (authors, maraschino.py, etc.). I have the wsgi-file set-up and also thought I had done everything done the same way as before. Any idea what I could have done wrong? Thanks in advance! RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - guy_smiley:) - 2012-06-10 (2012-06-09, 21:02)steve1977 Wrote:(2012-06-09, 11:27)guy_smiley:) Wrote: I swear I do this every couple of months I had this set up before. The only issue is you need to have Maraschino in it's own directory, i.e.: ,myserver.dyndns.org/maraschino. Add the following to your httpd.conf; Code: ProxyPass /maraschino http://localhost:7000/ Have you set up the file maraschino in sites-available and enabled it? This is what enables the wsgi, not just having the maraschino.wsgi in that folder; Code: <VirtualHost *> RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-10 (2012-06-10, 00:05)guy_smiley:) Wrote: Have you set up the file maraschino in sites-available and enabled it? This is what enables the wsgi, not just having the maraschino.wsgi in that folder; I tried adding the lines above, but this doesn't work. After adding, I cannot start the service. I checked my "old" working install and noticed that I had added the following line: > LoadModule wsgi_module modules/mod_wsgi.so I also did add this line, but unfortunately, this did not improve anything... Any thoughts? RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - guy_smiley:) - 2012-06-10 (2012-06-10, 06:35)steve1977 Wrote: I tried adding the lines above, but this doesn't work. After adding, I cannot start the service. I checked my "old" working install and noticed that I had added the following line: Yes actually. Based on that; Code: sudo apt-get install libapache2-mod-wsgi That should install and then enable it. RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-10 Thanks for your continued help. I am running Uniserver on Win7x64. I have installed activepythonx32 and uniserverx32. I have downloaded a pre-compiled modwsgi.so and added the line above. Unfortunately, it does not work. Uniserver comes with Apache 2.4 and modwsgi appears to be for Apache 2.2. Could this be the issue and any idea how to resolve i? RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - guy_smiley:) - 2012-06-10 (2012-06-10, 07:51)steve1977 Wrote: Thanks for your continued help. I am running Uniserver on Win7x64. I have installed activepythonx32 and uniserverx32. I have downloaded a pre-compiled modwsgi.so and added the line above. Unfortunately, it does not work. Uniserver comes with Apache 2.4 and modwsgi appears to be for Apache 2.2. Could this be the issue and any idea how to resolve i? Sorry, no idea unfortunately. I believe some other users use Windows that might be able to help you. I'm trying to avoid it at the moment RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-10 (2012-06-10, 08:00)guy_smiley:) Wrote:(2012-06-10, 07:51)steve1977 Wrote: Thanks for your continued help. I am running Uniserver on Win7x64. I have installed activepythonx32 and uniserverx32. I have downloaded a pre-compiled modwsgi.so and added the line above. Unfortunately, it does not work. Uniserver comes with Apache 2.4 and modwsgi appears to be for Apache 2.2. Could this be the issue and any idea how to resolve i? Thanks for your replies. All, has anyone set-up Maraschino on Apache successfully with Win7x64. I am struggling to get wsgi running and thus cannot host Maraschino. Any help appreciated! RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - SlackMaster - 2012-06-11 (2012-06-09, 11:55)SlackMaster Wrote: Hello, FYI... I figured out why this is happening. It's because my server is running on an installation of Windows Home Server 2003. I have (4) 2TB Drives and WHS uses windows drive extender to JBOD these into one logical drive, where I have my tv share located. It seems there is a bug where explorer (and several other places) show the total disk space to be that of the initial drive of the JBOD rather than the entire combined sizes. Therefore it shows 2.82TB used of 1.8TB total, which makes the OS go all funky, hence the issue in XBMC showing the wrong disk size and I assume also causing the issue with Maraschino. It's a small eye sore, but apparently one I'll have to live with. Just thought I'd update in case anyone else ran into this issue. RE: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - steve1977 - 2012-06-12 Quick follow-up. Anyone succeeded to get WSGI working on win7? It used to work for me before, but does not work on clean-install. My suspiciion is WSGI not being compatible with apache 2.4 (which came with the new uniserver install), but just a suspicion. any help welcome!!! |