![]() |
|
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 |
- mrkipling - 2011-11-08 03:01 I spent some time looking into it and it turns out that Flask can be run on top of CherryPy quite easily... Edit: CherryPy installation instructions here - percula - 2011-11-08 05:04 lastimp Wrote:Sorry for the noob questions, but I can't for the life of me get this to run on Ubuntu 10.04 I keep getting... If its not permissions, make sure you installed the SQL piece too. Code: sudo easy_install Flask-SQLAlchemy- percula - 2011-11-08 05:13 Zenshi Wrote:Also, would it be possible in the near future to use this in a location rather then the root, as I asked a few posts before? Not sure if you are talking about the actual file locations (maraschino being in the root of the web directories) or if you mean in the URL (http://your_IP_address/). So... If you want to locate the files in some other place than /var/www feel free, just make sure you get the permissions right. So you could put them in /maraschino if you wanted to. Then you have to adjust the Apache config file to reflect the new path to the files. If you mean "root" in terms of URL... Go to the Apache config file and change it. Code: WSGIScriptAlias /what/ever/path/you/want/it/to/be /var/www/maraschino/maraschino.wsgi- HarryRosen - 2011-11-08 05:14 is the webserver suppose to start upon reboot? mine didn't and I had to start the apache service manually - percula - 2011-11-08 05:19 Zenshi Wrote:Yes, that's the case, I wanna install it on my main web server (testing it on my macbook) but have other things already being served there. Simple change in the Apache config file... as an example. Code: Listen 7777- percula - 2011-11-08 05:24 NO!!!!!!! It doesn't work on Chrome!!!!! (LOL, you did a ton of work, one can not expect full cross browser compatibility, but I had to say it ![]() Looking incredible ![]() I think someone already mentioned the paths in the code. Same issues if you server out of a non root URL with the setup/mod work. - mrkipling - 2011-11-08 11:22 percula Wrote:NO!!!!!!! It doesn't work on Chrome!!!!! Fully tested in Chrome, it's my browser of choice ![]() What's not working for you? Platform / build no? Perhaps a silly question but have you cleared your cache? That one caught me out after updating - the styling was messed up for me because stylesheets are dynamically generated using the LESS JS script and the old stylesheet was cached. - mrkipling - 2011-11-08 14:02 Okay, so apparently this project is kinda hard to get running ![]() If anybody is still having problems with Apache then I've just pushed a few changes which make it possible to serve Maraschino using CherryPy. This method is considerably easier and much the same as CouchPotato or SickBeard's installation, so if you've installed either of those then you should be able to get Maraschino running too. I wrote up the installation method on the project website: http://www.maraschinoproject.com/installation/cherrypy I've tested this method myself and it appears to work a charm, but if anybody decides to try it out for themselves then I'd appreciate feedback (problems encountered, how difficult you found it, etc.) It's still possible to serve using Apache, by the way, and this is the method that I'll be using personally. Take your pick
- Zenshi - 2011-11-08 18:59 Hey MrK, Is it possible to have the trakt module showing movies/tv shows recommendations when we're not playing anything? Cheers, Zenshi. - mrkipling - 2011-11-08 19:22 Zenshi Wrote:Hey MrK, I definitely want to add trakt movie and TV show recommendations - undecided as to whether it should go into the trakt module when not playing or into its own module. I'll probably get round to adding this reasonably soon as it will be fun to do ![]() I'm currently working on a disk space module though, so want to get that finished first. Needs more testing, and as it stands probably doesn't work in Windows... |