![]() |
|
XBMC Commander - Yet another unofficial third-party XBMC remote for iPad - 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: XBMC Commander - Yet another unofficial third-party XBMC remote for iPad (/showthread.php?tid=81018) 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 |
- Eddict - 2011-03-23 21:57 grywnn Wrote:Yeah myselfthat would be great! or make the (length of the) timeout adjustable via settings? - codex70 - 2011-03-24 18:09 Been using commander and very impressed. One option I would love is to be able to do a slideshow of photos from commander. Going to files, then pictures I can view some of my photos on the ipad (all photos are on an smb nas drive), but many come up as too large to view. I've tried running xbmc on the ipad, but as yet it's very difficult to use, slow and regularly crashes. Trying to view photos is almost impossible. Anyway, I know commander is supposed to be a remote, but it would be nice to have the slideshow, and even possibly as a screen saver so you can sit it on the side playing photos whilst not in use. Anyway, just an idea. - hotlobster - 2011-03-25 22:09 Hi I've just bought Commander, to fit my new iPad 2, and it fits well. Really nice app. Gratz. There's a little problem with the way you get the picture if xbmc web server is behind apache and mod_proxy. If I proxy with apache, it doesn't download thumbnails. The query is urlencoded and Apache seems lost. Request end with 404 error: Code: GET /vfs/special%3A%2F%2Fmasterprofile%2FThumbnails%2FVideo%2F9%2F9defb067.tbn HTTP/1.1" 404 506 "-" "Commander 1.9.8 (iPad; iPhone OS 4.3; fr_FR)""The requested URL /vfs/special://masterprofile/Thumbnails/Video/9/9defb067.tbn was not found on this server." If i get the same url trought apache too but without urlencoding, it works, and download the thumb. So to make short: Doesn't Work: Code: http://mediacenter/vfs/special%3A%2F%2Fmasterprofile%2FThumbnails%2FVideo%2F9%2F9defb067.tbnWorks: Code: http://mediacenter/vfs/special://masterprofile/Thumbnails/Video/9/9defb067.tbnBut the urlencoded query direct to xbmc http server works of course: Works: Code: http://mediacenter[b]:8080[/b]/vfs/special%3A%2F%2Fmasterprofile%2FThumbnails%2FVideo%2F9%2F9defb067.tbnAnyway to fix this on next version by not urlencode those query ? Other apps like XBMC remote control works ok. Thanks. - grywnn - 2011-03-25 23:31 codex70 Wrote:Been using commander and very impressed. One option I would love is to be able to do a slideshow of photos from commander. Going to files, then pictures I can view some of my photos on the ipad (all photos are on an smb nas drive), but many come up as too large to view. ...an idea i actually like a lot ![]() But i think i'll wait until xbmc supports server side scaling of images, which will make things a lot easier. @hotlobster That's what i call a detailed bug report ! Please try adding [nocanon] to the end of your ProxyPass directive. This will tell apache to pass the URL path "raw" to the backend You might want to limit this to vfs urls though, like Code: ProxyPass /vfs/ http://server:8080/vfs/ [nocanon] )Otherwise: I need to do the urlencoding to handle possible special characters in the profile name. I'll remove the encoding of "/" and ":" in my code, which should make the paths valid again, and shouldn't have too much impact on profile names. Unfortunately (or fortunately, depends on the point of view) the next update is already in revision, so this "fix" won't make it in there. - Arquizona - 2011-03-26 00:49 This wonderful app, will run with XBMC Dharma 10.1? - hotlobster - 2011-03-26 02:08 Quote:That's what i call a detailed bug report ! And that's what I call fast support. ![]() I didn't know this nocanon option. Tryed but didn't work, apache doesn't start with it. Quote:Syntax error on line 1 of /etc/apache2/httpd.conf: My httpd.conf have this line: Quote:ProxyPass /vfs http://localhost:8080/vfs/ [nocanon] I've tryed with "nocanon" too, apache starts, but no behavior change on this problem. This nocanon option is not really well documented, I will investigate further. Thanks for the trick. Anyway I can wait, this is only for when I use it outside my network. As it's totally useless, this is just to show my friends from outside how cool this app is .
- grywnn - 2011-03-26 09:53 Arquizona Wrote:This wonderful app, will run with XBMC Dharma 10.1?It will ![]() @hotlobster Drop the [], i've put them there by mistake. So much for reading the documentation at 11 pm after ~5 beers
- hotlobster - 2011-03-26 12:32 That's what I've tryed after, but no success. There's still the canonical url problem. I'll try url rewriting on apache side. This is dirty but should work
- hotlobster - 2011-03-27 13:48 I've foud a good trick. ![]() Just set at virtualhost level in apache: Code: AllowEncodedSlashes OnBy default apache ignore %2F in a url and answer 404, if it's not inside a variable. Found it here: http://framework.zend.com/issues/browse/ZF-3959 Cheers. - Arquizona - 2011-03-28 00:45 dibsta Wrote:Hi Gyrwnn Same problem here... correct ip Any other clue?
|