Yes the errors appear around the same time as the other ones...
It does mess up the page, it can't find my data from runescape.com anymore
OK, I don't think that a changed server config is the problem, but maybe you site is bad coded and after the last php update this is the result.
Another situation could be that you site has al this problems before but the configuration doesn't show errors. In this case you need to switch of the errors: ini_set('display_errors', 'Off');
otherwise I have no advice (at least non that you wanna hear)
aka J Love Community Supporter?
Bill Gates is my home boy
Gender:
Posts: 886
1148 credits Members referred : 4
« Reply #6 on: Oct 18, 2006, 07:01:11 am »
ok i know what the problem is now.. the webmasters of runescape.com (where this code gets its data from) have put extra line breaks in their code, for example, their old style of coding looked like this:
Code:
<tr><td>Some Text</td></tr>
Whereas, now their code has been changed, and it appears like this when you view the source:
Code:
<tr> <td> Some Text </td> </tr>
If you see above in the php code for the function, "GetLvl" ..it searches for certain characters in a string in the source code of their page using $GLOBALS['Contents'].. but now it can not find that data because they added those linebreaks.. Tried to explain this the best i could.. any ideas?