Ok I did a litle temporary "workaround" for this.
1. As admin - go a head and point out/add the directory where you want the Incoming repository to be. Activate it.
With standalone:
In youre <SUBSONIC_HOME>/jetty/webapp/WEB-INF/jsp
If you pulled it with the Tomcatserver instead there should be a WEB-INF directory inside the subsonic folder.
However. There in this folder you have "more.jsp" this is the page that is shown when clicked on the More-button on the page.
First take a backup, (copy the file to more.jsp.bkp or something,)
Then (since there is no way for me to upload a copy of the "more.jsp" i do like this: (open more.jsp with a texteditor and copy all of the following codecontent, mark all the content in youre more.jsp and paste the "new" content.)
- Code: Select all
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
<html><head>
<%@ include file="head.jsp" %>
<style type="text/css">
#progressBar {width: 350px; height: 10px; border: 1px solid black; display:none;}
#progressBarContent {width: 0; height: 10px; background: url("<c:url value="/icons/progress.png"/>") repeat;}
</style>
<script type="text/javascript" src="<c:url value="/dwr/interface/transferService.js"/>"></script>
<script type="text/javascript" src="<c:url value="/dwr/engine.js"/>"></script>
<script type="text/javascript" src="<c:url value="/dwr/util.js"/>"></script>
<script type="text/javascript">
function refreshProgress() {
transferService.getUploadInfo(updateProgress);
}
function updateProgress(uploadInfo) {
var progressBar = document.getElementById("progressBar");
var progressBarContent = document.getElementById("progressBarContent");
var progressText = document.getElementById("progressText");
if (uploadInfo.bytesTotal > 0) {
var percent = Math.ceil((uploadInfo.bytesUploaded / uploadInfo.bytesTotal) * 100);
var width = parseInt(percent * 3.5) + 'px';
progressBarContent.style.width = width;
progressText.innerHTML = percent + "<fmt:message key="more.upload.progress"/>";
progressBar.style.display = "block";
progressText.style.display = "block";
window.setTimeout("refreshProgress()", 1000);
} else {
progressBar.style.display = "none";
progressText.style.display = "none";
window.setTimeout("refreshProgress()", 5000);
}
}
</script>
</head>
<body class="mainframe" onload="${model.user.uploadRole ? "refreshProgress()" : ""}">
<h1>
<img src="<spring:theme code="moreImage"/>" alt=""/>
<fmt:message key="more.title"/>
</h1>
<c:if test="${model.user.streamRole}">
<h2><img src="<spring:theme code="randomImage"/>" alt=""/> <fmt:message key="more.random.title"/></h2>
<form method="post" action="randomPlaylist.view?">
<table>
<tr>
<td><fmt:message key="more.random.text"/></td>
<td>
<select name="size">
<option value="5"><fmt:message key="more.random.songs"><fmt:param value="5"/></fmt:message></option>
<option value="10" selected="true"><fmt:message key="more.random.songs"><fmt:param value="10"/></fmt:message></option>
<option value="20"><fmt:message key="more.random.songs"><fmt:param value="20"/></fmt:message></option>
<option value="50"><fmt:message key="more.random.songs"><fmt:param value="50"/></fmt:message></option>
</select>
</td>
<td><fmt:message key="more.random.genre"/></td>
<td>
<select name="genre">
<option value="any"><fmt:message key="more.random.anygenre"/></option>
<c:forEach items="${model.genres}" var="genre">
<option value="${genre}">${genre}</option>
</c:forEach>
</select>
</td>
<td><fmt:message key="more.random.year"/></td>
<td>
<select name="year">
<option value="any"><fmt:message key="more.random.anyyear"/></option>
<option value="2000 9999">> 2000</option>
<option value="1990 1999">1990 – 1999</option>
<option value="1980 1989">1980 – 1989</option>
<option value="1970 1979">1970 – 1979</option>
<option value="1960 1969">1960 – 1969</option>
<option value="1950 1959">1950 – 1959</option>
<option value="0 1950">< 1950</option>
</select>
</td>
<td><fmt:message key="more.random.folder"/></td>
<td>
<select name="musicFolderId">
<option value="-1"><fmt:message key="more.random.anyfolder"/></option>
<c:forEach items="${model.musicFolders}" var="musicFolder">
<option value="${musicFolder.id}">${musicFolder.name}</option>
</c:forEach>
</select>
</td>
<td>
<input type="submit" value="<fmt:message key="more.random.ok"/>">
</td>
</tr>
<c:if test="${not model.clientSidePlaylist}">
<tr>
<td colspan="9">
<input type="checkbox" name="autoRandom" id="autoRandom" class="checkbox"/>
<label for="autoRandom"><fmt:message key="more.random.auto"/></label>
</td>
</tr>
</c:if>
</table>
</form>
</c:if>
<h2><img src="<spring:theme code="wapImage"/>" alt=""/> <fmt:message key="more.mobile.title"/></h2>
<fmt:message key="more.mobile.text"><fmt:param value="${model.brand}"/></fmt:message>
<h2><img src="<spring:theme code="podcastImage"/>" alt=""/> <fmt:message key="more.podcast.title"/></h2>
<fmt:message key="more.podcast.text"/>
<c:if test="${model.user.uploadRole}">
<h2><img src="<spring:theme code="uploadImage"/>" alt=""/> <fmt:message key="more.upload.title"/></h2>
<form method="post" enctype="multipart/form-data" action="upload.view">
<table>
<tr>
<td><fmt:message key="more.upload.source"/></td>
<td colspan="2"><input type="file" id="file" name="file" size="42"/></td>
</tr>
<tr>
<td> </td>
<td>
<input type="hidden" id="dir" name="dir" size="37" value="/REPLACE/THIS/WITH/YOUR/PREFFERED/DESTINATION/${model.user.username}"/>
Music will be uploaded into the "Uploaded" directory under you current username.
</td>
<td><input type="submit" value="<fmt:message key="more.upload.ok"/>"/></td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" checked name="unzip" id="unzip" class="checkbox"/>
<label for="unzip"><fmt:message key="more.upload.unzip"/></label>
</td>
</tr>
</table>
</form>
<p class="detail" id="progressText"/>
<div id="progressBar">
<div id="progressBarContent"/>
</div>
</c:if>
</body></html>
What I have done is to completely removed the input text, that makes the textbox with a choice of changing the destination. the functionality is still there as a input-hidden. However. I did also want the uploads should be put into the current usernames own "folder".
You need however do some editing youre self. Down in the file you have:
- Code: Select all
<td>
<input type="hidden" id="dir" name="dir" size="37" value="/REPLACE/THIS/WITH/YOUR/PREFFERED/DESTINATION/${model.user.username}"/>
Music will be uploaded into the "Uploaded" directory under you current username.
</td>
Replace the destination text with youre destination. Save the file and try upload something.
If you get a permission denied as I did was because I had not added the new incoming directory from inside subsonic.
Tested and works well in my version: 3.6 (build 806) – den 1 februari 2009, but you have to take the responsibility for youre self - use this on youre own risk.
//Fredrik L