![]() |
|
Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for XBMC (/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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
- steve1977 - 2011-12-04 03:09 guy_smiley:) Wrote:You need to enable WSGI if you haven't already, it's "sudo a2enmod wsgi". That's now where all my probs again surface. I am on Win7 and not Linux... Let me google some more. Maybe someone has insights in this forum how to accomplish things in Win7? - steve1977 - 2011-12-04 04:08 I am making some progress to set up WSGI on Apache to run Maraschino (windows 7!). Still not there. Getting the following error. Any thoughts? [Sun Dec 04 10:02:06 2011] [warn] mod_wsgi: Compiled for Python/2.7. [Sun Dec 04 10:02:06 2011] [warn] mod_wsgi: Runtime using Python/2.7.2. [Sun Dec 04 10:02:06 2011] [notice] Child 6848: Child process is running [Sun Dec 04 10:02:09 2011] [notice] Child 6848: Acquired the start mutex. [Sun Dec 04 10:02:09 2011] [notice] Child 6848: Starting 250 worker threads. [Sun Dec 04 10:02:09 2011] [notice] Child 6848: Starting thread to listen on port 80. [Sun Dec 04 10:02:09 2011] [notice] Child 6848: Starting thread to listen on port 80. [Sun Dec 04 10:02:40 2011] [notice] Parent: Received shutdown signal -- Shutting down the server. [Sun Dec 04 10:02:40 2011] [notice] Child 6848: Exit event signaled. Child process is ending. [Sun Dec 04 10:02:41 2011] [notice] Child 6848: Released the start mutex [Sun Dec 04 10:02:42 2011] [notice] Child 6848: All worker threads have exited. [Sun Dec 04 10:02:42 2011] [notice] Child 6848: Child process is exiting [Sun Dec 04 10:02:42 2011] [notice] Parent: Child process exited successfully. - N3MIS15 - 2011-12-04 04:13 I just got this running on my unraid server. This is in no way a guide, i havent tested it fully. (requires python already installed. if u have sickbeard/sab/couch/headphones already running it will be installed already) These are the steps i took: Download python-setuptools: http://pypi.python.org/pypi/setuptools#files i used setuptools-0.6c11-py2.6.egg Run the scipt: sh /boot/setuptools-0.6c11-py2.6.egg (assumes the file is saved in the root of flash) Install dependencies: easy_install cherrypy easy_install Flask easy_install Flask-SQLAlchemy easy_install jsonrpclib a couple of these failed to download the first time for me but on the second try they worked.. not sure why Download Maraschino: wget -O maraschino.tar.gz --no-check-certificate https://github.com/Maraschino/maraschino/tarball/master Extract and setup your settings... (Dont forget setup.py )To run Maraschino you need to: python maraschino-cherrypy.py I think thats everything, would be nice to have a pkg for all of this, but that is a bit out of my leage. - steve1977 - 2011-12-04 05:47 While I am still struggling to get things working outside my home network, I have one idea for the skilled coders around. Subsonic has an API creating a widget that accesses it would be amazing. This would (quite easily) allow audio streaming to Maraschino from whereever you are. It should be quite straight forward for someone who knows how to code / access API. - steve1977 - 2011-12-04 06:12 I just installed the latest built, which works well from my home network. Looks very impressive!!! Two questions: 1) Sabnzbd doesn't display anymore, but I assume that this is due to me getting something wrong. Can you please remind how to properly enter the Sabnzbd URL in settings. I searched this thread, but didn't find the instructions. 2) The Sickbeard feature sounds awesome. Unfortunately, I am on Windows. Any idea whether Windows binaries for the SB Beta are somewhere to find without building myself from source? Thanks a lot!!! - nashant - 2011-12-04 07:19 I might have broken something with the sab widget. Have you tried reloading? I've found that when I run first from a fresh git pull I have to enter settings then restart. I'm looking into fixing that. As far as sickbeard goes, pull the api version on team-sickbeard's git and run it with python - DejaVu - 2011-12-04 07:41 I'm not having any problems with the Sab widget....!? - steve1977 - 2011-12-04 07:50 nashant Wrote:I might have broken something with the sab widget. Have you tried reloading? I've found that when I run first from a fresh git pull I have to enter settings then restart. I'm looking into fixing that. Unfortunately, I have now screwed up my settings, so cannot test now. Can you please remind me what the Sabnzbd URL should be in Maraschino settings. I can then add it back in properly and try whether it works after restart. nashant Wrote:As far as sickbeard goes, pull the api version on team-sickbeard's git and run it with python No way to get the Windows binaries? It is all running now and I am worried breaking my running SB when switching to running it with python instead of the exe. Thanks again guys for Maraschino, this is truly amazing!!! - steve1977 - 2011-12-04 08:05 mrkipling Wrote:@gugahoi: Did this ever see the day light? If not, what's the current way to add the icon file names? Do I need to manually enter the full path? - N3MIS15 - 2011-12-04 08:05 steve1977: http://<ip>:<port>/api?apikey=<API key> if u are running secure sabnzbd you will need https:// Quote:Did this ever see the day light? If not, what's the current way to add the icon file names? Do I need to manually enter the full path? its there, try adding an application |