diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
commit | a1a18f77a50804e0127dfa4b0f5240c49c541184 (patch) | |
tree | 19a38880afe505beddb5590379a8134d7730a277 /subsonic-site/src/main/webapp/faq.jsp | |
parent | b61d787706979e7e20f4c3c4f93c1f129d92273f (diff) | |
download | dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.gz dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.bz2 dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.zip |
Initial Commit
Diffstat (limited to 'subsonic-site/src/main/webapp/faq.jsp')
-rw-r--r-- | subsonic-site/src/main/webapp/faq.jsp | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/subsonic-site/src/main/webapp/faq.jsp b/subsonic-site/src/main/webapp/faq.jsp new file mode 100644 index 00000000..570c02f7 --- /dev/null +++ b/subsonic-site/src/main/webapp/faq.jsp @@ -0,0 +1,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> |