BrianDelShasta wrote:Edit line 129 of more.jsp. I added a new directory and also readonly so no one can change it:
- Code: Select all
<td><input type="text" id="dir" name="dir" readonly ="true" size="37" value="c:\uploaddir"/></td>
I've been using this program for a couple of months and loved it so much I made a donation. Great job, Sindre, on a fantastic program!
I used the syntax indicated above and want my upload directory to point to G:\Music\Incoming, which I created in this directory on the XP machine, but I receive the Permission denied error.
I'm logged in with an administrator profile that has upload permissions, so I'm fairly confident in that fact. I've uploaded from this profile several times to the default directory with no issues. I checked the actual folder permissions on my XP machine and know the new directory and the default directory are both set to Read Only, which seems to work with the default directory.
Here's how I entered it:
- Code: Select all
<td><input type="text" id="dir" name="dir" readonly ="true" size="37" value="G:\Music\Incoming"/></td>
I noticed there was a space between readonly and ="true" so I tried removing it like this:
- Code: Select all
<td><input type="text" id="dir" name="dir" readonly="true" size="37" value="G:\Music\Incoming"/></td>
This also gave the Permission denied error. However, if I hard code it to be the default directory, G:\Music\MP3's\Incoming, I don't get the error:
- Code: Select all
<td><input type="text" id="dir" name="dir" readonly="true" size="37" value="G:\Music\MP3's\Incoming"/></td>
It seems I may be doing something wrong. Any help on this would be greatly appreciated.
Thought of the Day: They say the best things in life are free, but are all free things the best?