Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
dynamitemedia
Binge Watcher

Re: Roku PHP Remote

"kc8pql" wrote:

Hope people will understand some bugs 😞

Steel yourself. They can be tough in the general forum when things don't work. 😉


Yes i see that with a few posts, LOL

I havent played with any of the new channels i am so far behind, i also need to get a website done!! thats what i get for jumping into this last week, LOL
Twitter: iptvmyway facebook: iptvmyay
Channels: Warriors of War, Go Fight Live, Heading Outdoorz, IPTVmyway
0 Kudos
renojim
Community Streaming Expert

Re: Roku PHP Remote

"brandon15811" wrote:
I actually don't personally own a roku, I made this while I was bored at my aunts, but could somebody give me the prompt that is used in the telnet shell, I think its a >

That is correct.

-JT
Roku Community Streaming Expert

Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.

I am not a Roku employee.
0 Kudos
brandon15811
Visitor

Re: Roku PHP Remote

"renojim" wrote:
"brandon15811" wrote:
I actually don't personally own a roku, I made this while I was bored at my aunts, but could somebody give me the prompt that is used in the telnet shell, I think its a >

That is correct.

-JT


Okay, thanks

EDIT: Also, could someone test this out for me
http://pastebin.com/raw.php?i=Yijmr2UR
0 Kudos
pirate96
Visitor

Re: Roku PHP Remote

Works great for me! The keyboard search is working fine.
Where my thoughts go....... http://wokokon.com
0 Kudos
brandon15811
Visitor

Re: Roku PHP Remote

"pirate96" wrote:
Works great for me! The keyboard search is working fine.

Could you test using the top buttons?
0 Kudos
dynamitemedia
Binge Watcher

Re: Roku PHP Remote

so i decided to play with this a bit tonight and i cant get it to do anything but give me a 500 internal server error.

[16-Sep-2010 02:26:56] PHP Warning:  fsockopen() [<a href='function.fsockopen'>function.fsockopen</a>]: unable to connect to 192.168.10.106:8080 (Operation timed out) in 
xxxx/ remote/telnet.class.php on line 55


if i take out the 8080 for port in the class it will then show the webpage but still toss out a error

PHP Warning:  fsockopen() expects parameter 2 to be long, string given in 
xxxx/remote/telnet.class.php on line 55
Twitter: iptvmyway facebook: iptvmyay
Channels: Warriors of War, Go Fight Live, Heading Outdoorz, IPTVmyway
0 Kudos
brandon15811
Visitor

Re: Roku PHP Remote

"dynamitemedia" wrote:
so i decided to play with this a bit tonight and i cant get it to do anything but give me a 500 internal server error.

[16-Sep-2010 02:26:56] PHP Warning:  fsockopen() [<a href='function.fsockopen'>function.fsockopen</a>]: unable to connect to 192.168.10.106:8080 (Operation timed out) in 
xxxx/ remote/telnet.class.php on line 55


if i take out the 8080 for port in the class it will then show the webpage but still toss out a error

PHP Warning:  fsockopen() expects parameter 2 to be long, string given in 
xxxx/remote/telnet.class.php on line 55

Try restarting your roku
0 Kudos
dynamitemedia
Binge Watcher

Re: Roku PHP Remote

tried that still no good....

thought it was a Firewall issue maybe but have the port opened and still no good, any one who has this working have any ideas?
Twitter: iptvmyway facebook: iptvmyay
Channels: Warriors of War, Go Fight Live, Heading Outdoorz, IPTVmyway
0 Kudos
kbenson
Visitor

Re: Roku PHP Remote

"dynamitemedia" wrote:
tried that still no good....

thought it was a Firewall issue maybe but have the port opened and still no good, any one who has this working have any ideas?


It might have something to do with the PHP version you are running. From the source, it looks like the $port variable is a string of "8080" but fsockopen expects a long. it should auto-convert, but you can change
var $port = "8080";
on line 55 of telnet.class.php to
var $port = 8080;
and see if it works. I suspect that it will just show whatever the next error is, and that the problem is a bit beeper.
-- GandK Labs
Check out Reversi! in the channel store!
0 Kudos
dynamitemedia
Binge Watcher

Re: Roku PHP Remote

thanks i tried that but still getting this 500 internal error


[16-Sep-2010 12:53:31] PHP Warning:  fsockopen() [<a href='function.fsockopen'>function.fsockopen</a>]: unable to connect to 192.168.10.106:8080 (Operation timed out) in /XXXXX/roku/remote/telnet.class.php on line 55


now i can do it locally no problems... i mean telnet to the box...

i have opened the ports for 8080 as well... restarted multiple times, closed the debug window and the the installer window and no good.
Twitter: iptvmyway facebook: iptvmyay
Channels: Warriors of War, Go Fight Live, Heading Outdoorz, IPTVmyway
0 Kudos