WebMonkey R12 - 2006/09/28

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

Nautme
Posts: 41
Joined: Tue Mar 21, 2006 10:51 am

Pocket PC/SmartPhone

Post by Nautme »

Has anyone tried using WebMonkey on a Pocket PC or SmartPhone?

I've tried, but I only get a blank screen in IE and MiniMo shows frames that are too small for me to see. Any suggestions?

On the bright side, if I save a play list, I can copy it to my phone/pocket pc and listen to the songs. Pretty cool.
coltxL2717
Posts: 7
Joined: Fri Jul 28, 2006 6:24 pm

Post by coltxL2717 »

I got webmonkey running and its been great but i was wondering if anyone knew of a free webhost. I've been hosting it on IIS and i'm tired of it. Thanks.
SnakeCharmer
Posts: 5
Joined: Tue Jan 10, 2006 4:26 pm
Location: UK

Post by SnakeCharmer »

Hi,

I'm trying to install Webmonkey (it looks awesome!) unfortunately I am new to all this server stuff have some inevitable problems!

I have Installed IIS and entering http://localhost/localstart.asp into my browser loads a page which says:

"Your Web service is now running. To add documents to your default Web site, save files in c:\inetpub\wwwroot\."

So I assumed IIS was fine and went ahead and unzipped the webmonkey download to c:\inetpub\wwwroot\ (and copied over the Webmonkey.mdb file with my Mediamonkey.mdb) however when I try to access http://localhost/default.asp I get the following error:


HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services

--------------------------------------------------------------------------------

Technical Information (for support personnel)

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.
/includes/statistics.asp, line 11


Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

Page:
GET /default.asp


Do I need to change any settings in IIS (I haven't as yet). I haven't got MSAccess on this computer either - do I need to install it? Am I on the right track and can anyone help?! I looked for info on webmonkey but couldn't find a lot - I think it needs an idiot guide for folks like me! If anyone can help me sort this out I'd happily produce one to help others.

Thanks

Jake
Lowlander
Posts: 58888
Joined: Sat Sep 06, 2003 5:53 pm

Post by Lowlander »

It seems that you have copied the WebMonkey.mdb to the folder where you have your MediaMonkey.mdb located.

You actually need to do the reverse. Put both the WebMonkey.mdb and MediaMonkey.mdb (you can copy it) in the data folder. Once you get things running you can look into another location for the databases.

Moving the database out of the IIS environment can help prevent them from being downloaded by others. But to do so you will need to modify the settings to be able to do so. You can also keep the databases in the WebMonkey data folder and tell MediaMonkey where to find the database.

I would advice to start slow by just copying the WebMonkey.mdb back to it's original folder and also add the MediaMonkey.mdb. After that you can open the settings.asp file in NotePad and edit any settings necessary.
kanski
Posts: 80
Joined: Fri Mar 10, 2006 11:18 am
Location: Russian Fed.
Contact:

Post by kanski »

I get error when dowload big tracks (>4Mb) from webmonkey:

"HTTP 500 Internal Server Error
error 'ASP 0251 : 80004005'
Response Buffer Limit Exceeded
gettrack.asp line 117
Execution of the ASP page caused the Response Buffer to exceed its configured limit."

Win2003sp1, iis6.0
Lowlander
Posts: 58888
Joined: Sat Sep 06, 2003 5:53 pm

Post by Lowlander »

Can you try to change the following

Code: Select all

		Response.AddHeader "content-disposition", "filename=" & strPathSplit(uBound(strPathSplit))
		Set Stream = server.CreateObject("ADODB.Stream")
		Stream.Type = adTypeBinary
		Stream.Open
		Stream.LoadFromFile strPathNew
			Response.BinaryWrite Stream.Read
		Stream.Close
		Set Stream = Nothing
		Response.Flush
		Response.End
to

Code: Select all

			Response.Clear
			Response.AddHeader "content-disposition", "filename=" & strPathSplit(uBound(strPathSplit))
			Set Stream = server.CreateObject("ADODB.Stream")
			Stream.Open
			Stream.Type = 1
			Stream.LoadFromFile strPathNew
			Response.AddHeader "Content-Length", Stream.Size
			Response.Buffer = False
			While Not Stream.EOS
				Response.BinaryWrite Stream.Read(1024 * 64)
			Wend
			Stream.Close
			Set Stream = Nothing
			Response.Flush
			Response.End
Let me know if that works.[/code]
kanski
Posts: 80
Joined: Fri Mar 10, 2006 11:18 am
Location: Russian Fed.
Contact:

Post by kanski »

thanks, i can download tracks, but i get error when try download album.

How I replace "download album links" to "share folder links (folder with tracks of current album)"?
kanski
Posts: 80
Joined: Fri Mar 10, 2006 11:18 am
Location: Russian Fed.
Contact:

Post by kanski »

"Response object error 'ASP 0251 : 80004005'

Response Buffer Limit Exceeded

/tracklisting.asp, line 0

Execution of the ASP page caused the Response Buffer to exceed its configured limit. "
Lowlander
Posts: 58888
Joined: Sat Sep 06, 2003 5:53 pm

Post by Lowlander »

kanski wrote:How I replace "download album links" to "share folder links (folder with tracks of current album)"?
Not sure what you mean here, isn't it in the language file?

As for the album download, I assume that this is when they are downloaded as a compressed file?
Post Reply