| View previous topic :: View next topic |
| Author |
Message |
olav
Joined: 21 Apr 2007 Posts: 8
|
Posted: Sat Apr 21, 2007 6:04 pm Post subject: file not found on WM5/ exact link works in win2k |
|
|
Hi,
I rebuilt a php directory indexer such that it outputs all my media files in the correct ums format, for both win2k and wm5, such that I can browse through a webinterface and play my files.
In the header I did declare the function Connect(UMSLink).
This fellow works on wm5: http://www.umediaserver.net/MobileTechTV.html
A dump of the page source (the first is for win2k, the button for wm5):
<a href="ums:\\TCP:{my_hostname}.net\MediaRoot/mp3/Cecilia Bartoli - Se tu m'ami/02.mp3"> 02.mp3 </a>
<INPUT id="ums:\\TCP:{my_hostname}.net\MediaRoot/mp3/Cecilia Bartoli - Se tu m'ami/02.mp3" style="WIDTH: 60px; HEIGHT: 18px" onclick="Connect(this.id)" type="button" value=" play">
It works on win2k, but the wm5 player tells me that the file could not be found. What am I doing wrong?
Cheers,
Olav |
|
| Back to top |
|
 |
Admin Site Admin
Joined: 04 Aug 2006 Posts: 488
|
Posted: Sun Apr 22, 2007 12:40 am Post subject: |
|
|
Use backward slash for both desktop & mobile player:
<a href="ums:\\TCP:{my_hostname}.net\MediaRoot\mp3\Cecilia Bartoli - Se tu m'ami\02.mp3"> 02.mp3 </a>
<INPUT id="ums:\\TCP:{my_hostname}.net\MediaRoot\mp3\Cecilia Bartoli - Se tu m'ami\02.mp3" style="WIDTH: 60px; HEIGHT: 18px" onclick="Connect(this.id)" type="button" value=" play"> |
|
| Back to top |
|
 |
olav
Joined: 21 Apr 2007 Posts: 8
|
Posted: Sun Apr 22, 2007 8:47 am Post subject: |
|
|
| That did the trick...thanks! |
|
| Back to top |
|
 |
|