Coders Refuge Forums: Legacy Resource: (FSY23) IMDB Info Box v1.0 - Coders Refuge Forums

Jump to content

  • (4 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

Legacy Resource: (FSY23) IMDB Info Box v1.0 Rate Topic: -----

#41 User is offline   darkmesaia 

  • Newbie
  • Pip
  • Group: Premium Members
  • Posts: 6
  • Joined: 29-August 09
  • IPB Version:2.3

Posted 08 January 2010 - 04:11 AM

For example, these films

http://www.imdb.com/title/tt1087830/

http://www.imdb.com/title/tt0914837/

Why error turns them for the movies!

And basically what I've noticed too, are the errors turns out to IMDB if not poster, I do not know what may be to blame
0

#42 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 22 January 2010 - 05:15 PM

Michael, this MOD has been working fine for me all of the time but since yesterday all of the sudden i still get all info except from the User Rating with stars.

Here is an example:

http://yourforum.gr/...howtopic=232872

could this be a change to imdb site or ?
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#43 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 24 January 2010 - 01:51 PM

It's most likely a change with the IMDB site, there are similar reports of issues like this above. I'll try to devote some time this week to seeing what issues are now goig on with this mod. As above, it might be helpful to provide me the URLs of movies you are having trouble with so I have good info to test with.
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#44 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 24 January 2010 - 02:44 PM

ok, i can give you a couple but this affect any movie i post and all previous movies, i am getting all info but not user ratings and stars any more

I repeat, this affects all previous movies i have posted.
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#45 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 24 January 2010 - 02:53 PM

here is an example of what the posted movies look like without the ratings

http://yourforum.gr/...howtopic=232148
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#46 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 24 January 2010 - 03:38 PM

i have installed it on a different test installation and it seems no user ratings appear there too

i am pretty sure it has to do with the imdb website
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#47 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 01 February 2010 - 04:51 PM

Michael, i know you have a busy schedule but i would really appreciate if you could find some time to look into this issue. I am willing to donate all i can if this could be addressed
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#48 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 02 February 2010 - 08:49 AM

Crap, very sorry, this is my top priority for today!
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#49 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 02 February 2010 - 09:08 AM

@darkmesaia
OK, I simply cannot reproduce the issues with this not working at all. I tried with the two IMDB links you gave and they showed up just fine. Do you have cURL enabled on your server? Check with your host if you're not sure. If you'd like me to debug this problem on your site, PM me your site info and I'll check it out.

@NickTheGreek
Found the problem with the rating stars, it was an issue of some code on the IMDB page changing. To fix this, open /sources/lib/func_imdb.php and find:

				$data['ratings']      = $this->get_rating_data( strip_tags( $this->get_match( '/<div class="meta">(.*)<\/div>/isU', $imdb_content ) ) );

Change to:

				$data['ratings']      = $this->get_rating_data( strip_tags( $this->get_match( '/<div class="starbar-meta">(.*)<\/div>/isU', $imdb_content ) ) );

Find:

		$return['votes'] = $this->clean_string( str_replace( "&nbsp;", "", $lines[3] ) );

Change to:

		$return['votes'] = $this->clean_string( str_replace( "&nbsp;", "", $lines[4] ) );

Save and upload.
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
1

#50 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 02 February 2010 - 09:11 AM

thank you very much, going on with the suggested code changes
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#51 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 02 February 2010 - 09:16 AM

it is working like a charm, thank you very much :)
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#52 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 02 February 2010 - 09:20 AM

Happy to help. I just wish IMDB had a real API I could use, and that I didn't have to keep fixing this mod when they change their website.
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#53 User is offline   kazuya 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 02-December 09
  • IPB Version:3.0

Posted 13 April 2010 - 05:03 AM

IPB .3 x to everything in the centenarians
0

#54 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 13 April 2010 - 06:56 AM

What?
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#55 User is offline   kazuya 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 02-December 09
  • IPB Version:3.0

Posted 13 April 2010 - 11:11 AM

(IMDB Info Box) IPB 3 version to make you think
0

#56 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 13 April 2010 - 11:34 AM

The thing I don't understand is why so many people are clamoring for this mod to be updated, considering how few people actually purchased it. This is one that I've gotten several emails/PMs/topics asking me to produce an upgrade. Given that it's probably something that would go really well on a site that is all about pirating movies, I'm not sure I will actually update this mod.
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#57 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 11 June 2010 - 05:25 PM

Michael, some people love this for movie discussion as well :)

Now, being a very pleasant user of this script i would REALLY appreciate if you could try and update the code because i suspect that today imdb website changed - again - something in their code.

I try posting a movie and this is the error now :

Warning: fopen({ board specific }  /uploads/imdb/0914863.title/maindetails;tile=1;sz=1x1,4x1;p=f1;ifb=pf;g=th;g=dr;id=tt0914863;m=R;tt=f;coo=usa;k=c;b=t25;b=t250a;ord=826607296317?"border="0" alt="advertisement) [function.fopen]: failed to open stream: No such file or directory in { board specific }  /sources/lib/func_imdb.php on line 243

Warning: fclose(): supplied argument is not a valid stream resource in { board specific } /sources/lib/func_imdb.php on line 245


i changed my URL to : { board specific }

please, please do all you can !
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#58 User is offline   Michael 

  • Administrator
  • View blog
  • View gallery
  • Group: Owner
  • Posts: 1,934
  • Joined: 30-April 09
  • Location:Columbus, OH
  • IPB Version:3.1

Posted 14 June 2010 - 06:55 AM

Which movie were you trying to post about when you got this error message?
Michael McCune
Member of the IPS Resources Team

My Stuff: My Forum · My Resources · My Tutorials
Contact Me: Email · Facebook · Twitter
0

#59 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 14 June 2010 - 07:08 AM

This one : http://www.imdb.com/title/tt0914863/

as you can see, the poster is there

http://www.imdb.com/...75168/tt0914863
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

#60 User is offline   NickTheGreek 

  • Member
  • PipPip
  • Group: Premium Members
  • Posts: 17
  • Joined: 06-June 09

Posted 14 June 2010 - 07:09 AM

it now happens to me with any movie, regardless if there is an image to pull or not, can you verify ?
Posted Image
forumsandmore.com - forum setup, script installation and web design

The Fairy Tale of YourForum | My Blog
0

Share this topic:


  • (4 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users