blob: 570c02f7ab9a4297d8ac5250f545924f116bee4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%! String current = "faq"; %>
<%@ include file="header.jsp" %>
<body>
<a name="top"/>
<div id="container">
<%@ include file="menu.jsp" %>
<div id="content">
<div id="main-col">
<h1 class="bottomspace">Frequently Asked Questions</h1>
<h3>Are there other payment options than PayPal?</h3>
<p>Yes. You can make a payment to subsonic_donation@activeobjects.no on <a href="http://www.moneybookers.com/" target="_blank">Moneybookers</a>.</p>
<h3>How long does it take to get the license after I have donated?</h3>
<p>Normally no more than ten minutes. If it should take longer, please <a href="mailto:sindre@activeobjects.no">take contact</a>,
but please check your spam filter first.</p>
<h3>How do I install the license key I received by email?</h3>
<p>Please follow the guide in the <a href="getting-started.jsp#3">Getting Started</a> documentation.</p>
<h3>I can't access my Subsonic server from the internet or from my iPhone/Android phone.</h3>
<p>Please follow the guide in the <a href="getting-started.jsp#2">Getting Started</a> documentation.</p>
<h3>I forgot my Subsonic password. Can it be retrieved?</h3>
<p>Yes. Please read <a href="http://forum.subsonic.org/forum/viewtopic.php?t=3770">this forum post</a>.</p>
<h3>I've lost my license key. Can I have it resent?</h3>
<p>Yes. Please go <a href="http://subsonic.org/backend/requestLicense.view">here</a>.</p>
<%--TODO: Network shares--%>
</div>
<div id="side-col">
<%@ include file="google-translate.jsp" %>
<%@ include file="download-subsonic.jsp" %>
<%@ include file="donate.jsp" %>
</div>
<div class="clear">
</div>
</div>
<hr/>
<%@ include file="footer.jsp" %>
</div>
</body>
</html>
|