Fix for imdb
#16
it works, just need to edit network configs
Reply
#17
i'm using xbmc xbox media center 1.1.0 2005-02-21 [y] as my dash.

but still imdb is not working.
i can get weather info and the time server works so i'm sure my inet connection works.

is this fix working for everyoneHuh?

hope to have it functioning soon, thx!

ps. i have enabled internet lookups...duh Wink
Reply
#18
(lol @ feb. 22 2005,11:30 Wrote:i'm using xbmc xbox media center 1.1.0 2005-02-21 [y] as my dash.

but still imdb is not working.
i can get weather info and the time server works so i'm sure my inet connection works.

is this fix working for everyoneHuh?

hope to have it functioning soon, thx!

ps. i have enabled internet lookups...duh Wink
check xbmc.log for any hints.

ts
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
Reply
#19
(tslayer @ feb. 22 2005,12:10 Wrote:check xbmc.log for any hints.

ts
great idea mate!!!!! :kickass:

i saw it gave a dns error, so i fixed it and now it's all good!!

the xbmc.log is a great thing, hadn't used it before but i will from now on!

i don't remember ever putting in the dns server, since when is this needed?

thx again ts, lol Wink
Reply
#20
dns is always needed. it's just that some things like weather. allmusic, imdb(only some portions of it) will use hardcoded ips if dns is not set, so those items can mask the real problem of the dns not being properly set.

ts
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
Reply
#21
@devs,

just for fun i had a peak at the source code after the addition of htmlscraper.dll and i found a possible memory leak. it really depends on the compiler, might be safe using vc++.

(cvs checkout 02.03.05, european style date)

in lines 72,133 of xbmc/utils/imdb.cpp the following statement might cause a memory leak:

if (!m_pdll && !loaddll())

c compilers are free to evaluate m_pdll and loaddll in the order of its preference. if loaddll is called first we could end up
reloading the dll even when it is loaded from before (there is no check inside the loaddll method). the solution is simply

if( !m_pdll )
if( !loaddll )
return( false );

thought i'd just mention it..

and the statement at line 45,

if ( !m_pdll || !m_pdll->parse() )

could actually lead to a crash since once again the order might be reversed, and thus m_pdll->parse could possible be called on the null pointer..

spiff
Reply
#22
(tslayer @ feb. 22 2005,15:08 Wrote:dns is always needed. it's just that some things like weather. allmusic, imdb(only some portions of it) will use hardcoded ips if dns is not set, so those items can mask the real problem of the dns not being properly set.

ts
does the dns have to be set to a specific number. if so, what is it?
Reply
#23
(shoji @ mar. 03 2005,00:10 Wrote:
(tslayer @ feb. 22 2005,15:08 Wrote:dns is always needed. it's just that some things like weather. allmusic, imdb(only some portions of it) will use hardcoded ips if dns is not set, so those items can mask the real problem of the dns not being properly set.

ts
does the dns have to be set to a specific number. if so, what is it?
yes, it has to be a specific number. and that is unique to your isp or your router.

ts
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
Reply
#24
thanks spiff - you are correct. will fix - better to be safe than sorry Smile

cheers,
jonathan
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply

Logout Mark Read Team Forum Stats Members Help
Fix for imdb0