Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Attach:
(Clear Attachment)
(more attachments)
Allowed file types: gif, jpg, png, txt, tpl, lng, ini, pvd, psf, ini, cfg, csv, zip, xml, pas, 7z
Restrictions: 4 per post, maximum total size 1024KB, maximum individual size 1024KB
Note that any files attached will not be displayed until approved by a moderator.
Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
How many words are in this question?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Ivek23
« on: May 15, 2015, 05:56:42 pm »

I found this on blu-ray.com forum

Quote
What happened to AllRovi?

12-23-2013, 12:00 AM

All I get at http://www.allrovi.com is "Http/1.1 Service Unavailable"; anyone know what's going on?

Maybe someone knows what's going on?

As a result, it is now AllRovi script also useless, because it does not work anymore.

AllRovi web site is not working.

It has happened, changes at AllMovie web page, which now has a new modified image.
Posted by: Ivek23
« on: January 07, 2014, 11:57:29 am »

I found this on blu-ray.com forum

Quote
What happened to AllRovi?

12-23-2013, 12:00 AM

All I get at http://www.allrovi.com is "Http/1.1 Service Unavailable"; anyone know what's going on?

Maybe someone knows what's going on?

As a result, it is now AllRovi script also useless, because it does not work anymore.
Posted by: Ivek23
« on: March 03, 2013, 12:09:56 pm »

The Wayback Machine changed the url in the source code.

Now, data can be transferred only from the side, which is archived and as the URL for this archived page.

Example for movie  Donnie Darko:
http://web.archive.org/web/20090527121017/http://allmovie.com/work/donnie-darko-237115

Previously, this url sufficient to transfer all data from various archived page for a movie, but this is no longer the case. Now this url only transfers data from the Overview page (the first page for each movie). If you want to transfer data from other archived pages of a movie, you also have the url addresses of other archived pages.
 
Quote
Example for movie  Donnie Darko:
http://web.archive.org/web/20090527143437/http://allmovie.com/work/donnie-darko-237115/review
http://web.archive.org/web/20090529032858/http://allmovie.com/work/donnie-darko-237115/cast
http://web.archive.org/web/20090529032903/http://allmovie.com/work/donnie-darko-237115/credits
http://web.archive.org/web/20090529032853/http://allmovie.com/work/donnie-darko-237115/awards
This is due to different days or different time periods, when the other side for a movie also archived.



Add the url addresses to:

The link to the Wayback Machine:
WEB Search Link:

http://web.archive.org/web/
http://wayback.archive.org/web/

The link to the AllMovie WEB Search:
AllMovie WEB Search Link URL's:

http://wayback.archive.org/web/*/http://www.allmovie.com/work/*
http://web.archive.org/web/*/http://www.allmovie.com/work/*

The all link to the AllMovie WEB Donnie Darko Movie:
http://web.archive.org/web/20090527121017/http://allmovie.com/work/donnie-darko-237115
http://web.archive.org/web/20090527143437/http://allmovie.com/work/donnie-darko-237115/review
http://web.archive.org/web/20090529032858/http://allmovie.com/work/donnie-darko-237115/cast
http://web.archive.org/web/20090529032903/http://allmovie.com/work/donnie-darko-237115/credits
http://web.archive.org/web/20090529032853/http://allmovie.com/work/donnie-darko-237115/awards

The link to the Personal Video Database WEB Search:
Quote
PVD WEB Search Link URL's:

So far, we can now obtain information on old AllMovie only via Web searches, and this title: ...
title:http://wayback.archive.org/web/*/http://www.allmovie.com/work/%s
or
title:http://web.archive.org/web/*/http://www.allmovie.com/work/%s
or
title:http://web.archive.org/web/*/http://allmovie.com/work/%s
or
title:http://web.archive.org/web/*/http://www.allmovie.com:80/work/%s
...  in PVD Web Search.


Notice:
Place it only underlined url address.

Example for movie  Donnie Darko:
Here, add this to the search part of the url (donnie-darko-237115) or just a number (237115).

If there is movie archiving, you will find the results.

Example for movie 13 Going On 30
http://wayback.archive.org/web/*/http://www.allmovie.com/work/13-going-on-30-285849
http://wayback.archive.org/web/*/http://allmovie.com/work/285849



I attach AllMovie WEB Archive URL's in zip format, where is a list of about 400 to 500 URLs films (movies lists in txt, nfo, html format) for all those who are old AllMovie data may also be interested. Some of these data are from May 2011, since then working AllRovi and from somewhere in March or April, 2012, this new web pages AllMovie, these data can not be more to be found.

AllMovie WEB Archive URL's in zip format is attached.


[attachment deleted by admin]
Posted by: Ivek23
« on: January 17, 2013, 11:11:42 am »

Here is solution:

Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
  AddFieldValue(mfURL, 'http://web.archive.org'+Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else
  AddFieldValue(mfURL, MovieURL);
 
 //Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, 'http://web.archive.org'+Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

 //AddFieldValue(mfURL, MovieURL); // Changed to:
 AddCustomFieldValueByName('Urlw', '<link url="' + MovieURL + '">' + MovieURL + '</link>');
 AddCustomFieldValueByName('Urlw1', '<link url="' + MovieURL + '">' + MovieURL + '</link>');
   
 //Get Review URL
 if GET_REVIEW then begin
  EndPos := Pos('">Review</a>', HTML);
  if EndPos > 0 then begin
   curPos := PrevPos('<a href="', HTML, EndPos);
   ExtraLinks[smReview] := 'http://web.archive.org'+Copy(HTML, curPos + 9, EndPos - curPos - 9);
  end; 
 end;
 
 //Get Cast URL
 EndPos := Pos('">Cast</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
  ExtraLinks[smCast] := 'http://web.archive.org'+Copy(HTML, curPos + 9, EndPos - curPos - 9);
 end;
 
 //Get Credits URL
 if GET_CREDITS then begin
  EndPos := Pos('">Production Credits</a>', HTML);
  if EndPos > 0 then begin
   curPos := PrevPos('<a href="', HTML, EndPos);
   ExtraLinks[smCredits] := 'http://web.archive.org'+Copy(HTML, curPos + 9, EndPos - curPos - 9);
  end;
 end;

 
 //Title
 curPos := Pos('<span class="title">', HTML) + Length('<span class="title">');
 EndPos := PosFrom('</span>', HTML, curPos);
 
 AddCustomFieldValueByName('Titlew', Copy(HTML, curPos, EndPos - curPos));
 
 
 //Poster
 curPos := PosFrom('<tr><td valign="top"><img src="', HTML, EndPos);
 if curPos > 0 then begin
  curPos := curPos + Length('<tr><td valign="top"><img src="');
  EndPos := PosFrom('"', HTML, curPos);
 
  ExtraLinks[smPoster] := 'http://web.archive.org'+Copy(HTML, curPos, EndPos - curPos);
  if Pos('noimage', ExtraLinks[smPoster]) > 0 then
   ExtraLinks[smPoster] := '';
 end;

I attach the script, which is now corrected.

[attachment deleted by admin]
Posted by: Ivek23
« on: January 16, 2013, 04:28:25 pm »

The Wayback Machine changed the url in the source code. I still find old AllMovie saved(cached) pages, but now with them you can not download more info data. If little change url address, the URL redirects to the new AllMovie page url address.

BTW:
I attach the script if you can anyone help to script work again.
I am already looking for solutions, but so far no solution.


After The Sunset

http://web.archive.org/web/20100201075229/http://allmovie.com/work/after-the-sunset-294201

[attachment deleted by admin]
Posted by: rick.ca
« on: September 28, 2012, 10:54:36 pm »

So we may as well leave the script as is for a time, in case the data returns.

I love it when being lazy turns out to be the right answer. ;)
Posted by: Ivek23
« on: September 24, 2012, 03:26:13 pm »

Quote
Quote
How it works AllRovi movie script given the changes that I do not know.

I was saving just the link to the tab, which is of course now useless. So I deleted the data and removed that section of the script. For those saving the detail, I'm not sure what it does, but probably nothing (i.e., I don't think it will effectively delete any existing data). So we may as well leave the script as is for a time, in case the data returns.
So we may as well leave the script as is for a time, in case the data returns

Someday they may return data, we will see, maybe we will in the future again experience what a surprise from the AllRovi.com.

Apparently, it was a temporary error with the AllRovi.com. The error is corrected, Releases page is already back and working normally.
Posted by: Ivek23
« on: September 24, 2012, 06:43:40 am »

So we may as well leave the script as is for a time, in case the data returns.

Someday they may return data, we will see, maybe we will in the future again experience what a surprise from the AllRovi.com.
Posted by: rick.ca
« on: September 24, 2012, 02:28:09 am »

Quote
How it works AllRovi movie script given the changes that I do not know.

I was saving just the link to the tab, which is of course now useless. So I deleted the data and removed that section of the script. For those saving the detail, I'm not sure what it does, but probably nothing (i.e., I don't think it will effectively delete any existing data). So we may as well leave the script as is for a time, in case the data returns.
Posted by: Ivek23
« on: September 23, 2012, 02:57:18 pm »

On AllRovi movie web sites has been a change (or cancellation) to the Releases page [no more data on the old DVD editions(releases) of the movies]. DVD Releases Url opens basic movie web page. How it works AllRovi movie script given the changes that I do not know. Currently I can not verify and test the script.
Posted by: Ivek23
« on: February 18, 2012, 01:26:43 pm »

Maybe this will help in future:
http://liveweb.archive.org/http://www.allrovi.com/search/?r=allmovie
http://liveweb.archive.org/http://www.allmovie.com/search/

or maybe like this url - ()between the bracket, as this is written():
()http://wayback.archive.org/web/*/http://www.allmovie.com/work/*()
Posted by: Ivek23
« on: February 18, 2012, 07:09:25 am »

I don't think so.

http://web.archive.org/web/http://www.allmovie.com/work/greys-anatomy-tv-series-323967

used to show the archive of the old Allmovie page for Grey's Anatomy. It's now redirected to the new site. Although the Wayback site explains how to view older versions, this doesn't seem to work.

I have a feeling that will happen the same way than before with Google Search.
Posted by: rick.ca
« on: February 17, 2012, 09:00:21 pm »

I don't think so.

http://web.archive.org/web/http://www.allmovie.com/work/greys-anatomy-tv-series-323967

used to show the archive of the old Allmovie page for Grey's Anatomy. It's now redirected to the new site. Although the Wayback site explains how to view older versions, this doesn't seem to work.
Posted by: Ivek23
« on: February 17, 2012, 08:25:04 pm »

Posted by: rick.ca
« on: February 17, 2012, 08:07:20 pm »

Quote
not web.archive.com but web.archive.org

Right. I notice many of those links are being redirected to the new site. I wonder if they all will in time. That will make it more difficult to access the old version in the archive. :(
Posted by: Ivek23
« on: February 17, 2012, 09:57:14 am »

Great. We now have three (including allmovie at web.archive.com) sites with the same information )
Correction:
not web.archive.com but web.archive.org
Posted by: rick.ca
« on: February 16, 2012, 09:27:42 pm »

Great. We now have three (including allmovie at web.archive.com) sites with the same information. ::)

I tested a sample of my AllRovi URL's and they all still go to AllRovi. So hopefully 10 Things I Hate About You being redirected to this new site is just an exception. :-\
Posted by: Ivek23
« on: February 16, 2012, 06:01:14 pm »

In the case of a corporation AllRovi is now a small new feature (I do not know how long ago it works), I've noticed myself until today:

When the movie or people want to access the old URL to a Web page, for example this url
http://www.allmovie.com/work/10-things-i-hate-about-you-177526
http://www.allmovie.com/work/100-girls-249188

http://www.allmovie.com/artist/chevy-chase-12488

allrovi url
http://www.allrovi.com/movies/movie/10-things-i-hate-about-you-v177526
the same page as for the above mentioned url,

is now opened slightly different web page, as an example, the web page opens with these URLs:

http://www.allrovi.com/movies/movie/100-girls-v249188

http://www.allrovi.com/name/chevy-chase-p+12488

In new AllMovie web pages, I noticed a little less information than in AllRovi
web pages. In the future we will see if anything changes in this regard.


Posted by: Ivek23
« on: October 13, 2011, 12:54:01 pm »

New news about AllRovi.
or this All topics for AllRovi.

Now it is only this notice:

Quote

This community is no longer active.

Please visit www.allrovi.com/feedback for support
or view the archived content.


All topics for AllRovi are now in the archive format (click to view the archived content).
Posted by: Ivek23
« on: October 13, 2011, 12:53:40 pm »

I'm sorry.
I accidentally delete this message:

«Reply # 63 on: 10 October 2011, 19:33:59»

For all users, which in addition to other sources for movie information is also used
 AllRovi script for the movie information

The Wayback Machine again functioning normally.
anything