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.
WebMonkey R12 - 2006/09/28
-
coltxL2717
- Posts: 7
- Joined: Fri Jul 28, 2006 6:24 pm
-
SnakeCharmer
- Posts: 5
- Joined: Tue Jan 10, 2006 4:26 pm
- Location: UK
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
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
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.
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.
Download MediaMonkey ♪ License ♪ Knowledge Base ♪ MediaMonkey for Windows 2024 Help ♪ MediaMonkey for Android Help
Lowlander (MediaMonkey user since 2003)
Lowlander (MediaMonkey user since 2003)
Can you try to change the following
to
Let me know if that works.[/code]
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
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
Download MediaMonkey ♪ License ♪ Knowledge Base ♪ MediaMonkey for Windows 2024 Help ♪ MediaMonkey for Android Help
Lowlander (MediaMonkey user since 2003)
Lowlander (MediaMonkey user since 2003)
Not sure what you mean here, isn't it in the language file?kanski wrote:How I replace "download album links" to "share folder links (folder with tracks of current album)"?
As for the album download, I assume that this is when they are downloaded as a compressed file?
Download MediaMonkey ♪ License ♪ Knowledge Base ♪ MediaMonkey for Windows 2024 Help ♪ MediaMonkey for Android Help
Lowlander (MediaMonkey user since 2003)
Lowlander (MediaMonkey user since 2003)