LANG=en_US.UTF-8
export LANG
#!/bin/sh
# Start the MyMedia server for the Roku Digital Video Player
LANG=en_US.UTF-8
export LANG
# Kill the server. This is a python program so killall doesn't work.
# awk also doesn't seem to work with Unslung, so use sed.
prog=`ps ax | grep rss_server | grep -v grep | tail -1 | sed -e 's/ *\([0-9]*\) .*/\1/'`
if [ -n "$prog" ]; then
kill $prog
fi
sleep 2
cd /home/roku/server
nohup python rss_server.py > /dev/null 2>&1 < /dev/null &
"Gunslinger2" wrote:
yes,
<type 'exceptions.UnicodeDecodeError'> at /feed
'ascii' codec can't decode byte 0xc3 in position 2: ordinal not in range(128)
#!/bin/bash
#
# /etc/rc.local: Local multi-user startup script.
#
LANG=en_US.UTF-8
export LANG
cd /home/roku/server
python2.6 /home/roku/server/rss_server.py > /dev/null 2>&1 &
We’re upgrading Roku Community to bring you a faster, more mobile-friendly experience. You may notice limited functionality or read-only access during this time. You will not be able to log in or post new comments or kudos during this time. Read more here.
Planned Downtime:
Community will be unavailable for up to 24–48 hours during the upgrade window during the week of May 12 and you may notice reduced functionality.
In the meantime, for additional assistance, visit our Support Site.
Thanks for your patience — we’re excited to share what’s next!