2016-04-24 11:00:13 +02:00
//@TODO: Customize advice based on OS
2016-04-20 12:28:13 +02:00
var HelpPage = React . createClass ( {
render : function ( ) {
return (
2016-05-23 14:16:14 +02:00
< main className = "page" >
2016-05-23 16:24:23 +02:00
< SubPageLogo / >
2016-04-20 21:25:39 +02:00
< h1 > Troubleshooting < / h 1 >
2016-05-20 17:54:53 +02:00
< p > Here are the most commonly encountered problems and what to try doing about them . < / p >
2016-04-24 11:00:13 +02:00
2016-05-20 17:54:53 +02:00
< h3 > Nothing seems to start downloading . < / h 3 >
< p > If you can 't download anything, including ' wonderfullife ', try forwarding ports 4444 and 3333 on your firewall or router. If you can access ' wonderfullife ' but not other content, it' s possible the content is not longer hosted on the network . < / p >
2016-04-24 11:00:13 +02:00
2016-05-20 17:54:53 +02:00
< h3 > Videos have trouble playing . < / h 3 >
< p > Sometimes your video player will start the file while it ' s still empty . Try reloading the page after a few seconds and it may work . You should also see the file appear in your downloads folder ( configured in < a href = "/?settings" > settings < / a > ) . < / p >
2016-04-24 11:00:13 +02:00
< p > A real fix for this is underway ! < / p >
< h3 > How do I turn LBRY off ? < / h 3 >
2016-05-20 17:54:53 +02:00
< p > If you ' re on OS X you can find the app running in the notification area at the top right of your screen . Click the LBRY icon and choose < code > Quit < / c o d e > . < / p >
2016-04-24 11:00:13 +02:00
2016-05-20 17:54:53 +02:00
< p > On Linux , you ' ll find a close button in the menu at the top right of LBRY . < / p >
2016-04-24 11:00:13 +02:00
2016-05-20 17:54:53 +02:00
< p > If you ' re running LBRY from the command line , you may also close the app with the command < code > stop - lbrynet - daemon < / c o d e > < / p >
2016-04-24 11:00:13 +02:00
2016-05-20 17:54:53 +02:00
< h3 > None of this applies to me , or it didn ' t work . < / h 3 >
2016-04-24 11:00:13 +02:00
< p > Please < Link href = "/?report" label = "send us a bug report" / > . Thanks ! < / p >
2016-04-20 12:28:13 +02:00
< section >
2016-04-24 11:00:13 +02:00
< Link href = "/" label = "<< Return" / >
2016-04-20 12:28:13 +02:00
< / s e c t i o n >
< / m a i n >
) ;
}
2016-05-20 17:54:53 +02:00
} ) ;