I loved finding the Ant Music Catalog Mod, but I can not get any of the scripts to populate,;
AllMusic scripts produces Error while reading selection page - no results found.
Amazon script reports There was an error getting picture from Amazon site, without prompting for anything but title.
CDDB script always comes up with HTTP/1.1 404 Not Found error.
FreeDB script always comes up with Unable to find a match. Please refine your search.
Can anyone get the Ant Music Catalog Mod to work if so do you have a zip file of your Ant Music Directory avaliable because mine is screwed somewhere.
Thank-you
I love Ant Movie Catalog I use it all the time for my VHS, DVD, Blu-ray collection and just wanted to use the Ant Music Mod for my LP collection.
Ant Music Catalog
-
- Posts: 745
- Joined: 2007-04-28 05:46:43
- Location: Italy
Re: Ant Music Catalog
I would be happy to help you but I also need help... ;Kalynuik wrote:... AllMusic scripts produces Error while reading selection page - no results found. ...
I say: Search page or function page of AllMusic are changed and now
Code: Select all
indirizzo_pagina := AllMusicUrl+'/cg/amg.dll';
valore_ricerca := 'sql='+UrlEncode(AlbumName)+'&OPT1='+dfltAlbumc+'&Submit=Go&P=amg';
Page := PostPage(indirizzo_pagina, valore_ricerca);
I hope Antp and/or Bad4u could help me... please....
Bye.
-
- Posts: 745
- Joined: 2007-04-28 05:46:43
- Location: Italy
Re: Ant Music Catalog
I would be happy to help you but I also need help... ;Kalynuik wrote:... AllMusic scripts produces Error while reading selection page - no results found. ...
I say: Search page or function page of AllMusic are changed and now
Code: Select all
indirizzo_pagina := AllMusicUrl+'/cg/amg.dll';
valore_ricerca := 'sql='+UrlEncode(AlbumName)+'&OPT1='+dfltAlbumc+'&Submit=Go&P=amg';
Page := PostPage(indirizzo_pagina, valore_ricerca);
I hope Antp and/or Bad4u could help me... please....
Bye.
Try with this:
Code: Select all
indirizzo_pagina := AllMusicUrl+'/search';
valore_ricerca := 'search_term='+UrlEncode(AlbumName)+'&search_type=album';
Page := PostPage(indirizzo_pagina, valore_ricerca);
-
- Posts: 745
- Joined: 2007-04-28 05:46:43
- Location: Italy
Sorry but it's not OK.antp wrote:Try with this:
Code: Select all
indirizzo_pagina := AllMusicUrl+'/search'; valore_ricerca := 'search_term='+UrlEncode(AlbumName)+'&, search_type=album'; Page := PostPage(indirizzo_pagina, valore_ricerca);
The URL created (searching 'morrison') is
http://www.allmusic.com/searchsearch_te ... type=album
and even
http://www.allmusic.com/search/search_t ... type=album
is wrong.
Maybe I don't understand something....
Thanks, anyway, for your help.
What creates such url?
It is a request made by "post", not by "get", so the params are not in the url.
I just translated the search field form of the home page to what should be done in the script to have the equivalent.
If you want to pass the params in the url, you could also try with get method, in case it works (as the search on the site itself seems to generate an url similar to that) :
It is a request made by "post", not by "get", so the params are not in the url.
I just translated the search field form of the home page to what should be done in the script to have the equivalent.
If you want to pass the params in the url, you could also try with get method, in case it works (as the search on the site itself seems to generate an url similar to that) :
Code: Select all
Page := GetPage(AllMusicUrl + '/search/album/' + UrlEncode(AlbumName));
-
- Posts: 745
- Joined: 2007-04-28 05:46:43
- Location: Italy