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 ( {
2016-08-08 00:13:17 +02:00
componentDidMount : function ( ) {
document . title = "Help" ;
} ,
2016-04-20 12:28:13 +02:00
render : function ( ) {
return (
2016-05-23 14:16:14 +02:00
< main className = "page" >
2016-08-08 00:45:26 +02:00
< section className = "card" >
< h3 > Read the FAQ < / h 3 >
< p > Our FAQ answers many common questions . < / p >
< p > < Link href = "https://lbry.io/faq" label = "Read the FAQ" icon = "icon-question" button = "alt" / > < / p >
< / s e c t i o n >
< section className = "card" >
< h3 > Get Live Help < / h 3 >
< p >
Live help is available most hours in the # help channel of our Slack chat room .
< / p >
< p >
< Link button = "alt" label = "Join Our Slack" icon = "icon-slack" href = "https://slack.lbry.io" / >
< / p >
< / s e c t i o n >
< section className = "card" >
< h3 > Common Issues < / h 3 >
< h4 > Nothing seems to start downloading . < / h 4 >
< 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-08-08 00:45:26 +02:00
< h4 > Videos have trouble playing . < / h 4 >
< 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
2016-08-08 00:45:26 +02:00
< p > A real fix for this is underway ! < / p >
2016-04-24 11:00:13 +02:00
2016-08-08 00:45:26 +02:00
< h4 > How do I turn LBRY off ? < / h 4 >
< 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-08-08 00:45:26 +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-08-08 00:45:26 +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 >
< / s e c t i o n >
< section className = "card" >
< h3 > None of this applies to me , or it didn ' t work . < / h 3 >
< p > Please < Link href = "/?report" label = "send us a bug report" / > . Thanks ! < / p >
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
} ) ;