On Thu, Dec 11, 2008 at 3:05 PM, John H <span dir="ltr"><<a href="mailto:arizonamythtv@gmail.com">arizonamythtv@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I had the same problem so I just ended up hard coding the port. To fix<br>
your problem, in /modules/stream edit the handler.pl file on line 112<br>
I changed it to ':'.portnumber where portnumber is the actual port<br>
number.<br>
</blockquote></div><br>I have never gotten streaming to work, I am trying to follow this, here's an excerpt from the handler.pl I have:<br><br># ASX mode?<br> if ($ENV{'REQUEST_URI'} =~ /\.asx$/i) {<br> # URI back to this file? We just need to take the current URI and strip<br>
# off the .asx suffix.<br> my $uri = ($ENV{'HTTPS'} || $ENV{'SERVER_PORT'} == 443)<br> ? 'https'<br> : 'http';<br> my $serverAddr = $ENV{'HTTP_X_FORWARDED_HOST'} || $ENV{'SERVER_NAME'} || $ENV{'SERVER_ADDR'};<br>
$uri .= '://'.$serverAddr.':'.$ENV{'SERVER_PORT'}<br> .$ENV{'REQUEST_URI'};<br> <br><br><br>The second last line is line 112. What exactly should it look like? I have replaced "SERVER_PORT" with my port, and it still looked at port 80. Then I changed SERVER_PORT to 'SERVER_PORT'.port# but no go. I also tried replacing the 443 on the fifth line above to my port #, it still looked for port 80.<br>
<br><br>Thanks<br>Bob<br>