IE8 yellow message show up error page on the left below corner of page. | Newbie | | Join Date: Sep 2009
Posts: 6
| |
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)
Timestamp: Tue, 15 Sep 2009 10:55:43 UTC
Message: 'link' is null or not an object
Line: 422
Char: 26
Code: 0
URI: http://lvlnj2rtugkpg1nh47kmgu4obrvfj...en=1647980649& | | Newbie | | Join Date: Sep 2009
Posts: 6
| | | re: IE8 yellow message show up error page on the left below corner of page.
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)
Timestamp: Tue, 15 Sep 2009 10:55:43 UTC
Message: 'link' is null or not an object
Line: 422
Char: 26
Code: 0
URI: http://lvlnj2rtugkpg1nh47kmgu4obrvfjjru.friendconnect.gmo dules.com/gadgets/ifr?url=http%3A%2F%2Fgadgetsforblogger.googlecode. com%2Ffiles%2Frecent-posts-gadget.xml&container=peoplesense&parent=http%3A%2F %2Fgatmir.blogspot.com%2F&mid=1&view=profile&libs= opensocial-0.8%3Askins&v=0.440.1&lang=in&view-params=%7B%22showPostDate%22%3Atrue%2C%22summaryLe ngth%22%3A%22200%22%2C%22showSummary%22%3Atrue%2C% 22numberOfPosts%22%3A%2210%22%2C%22skin%22%3A%7B%2 2FACE_SIZE%22%3A%2232%22%2C%22HEIGHT%22%3A%22200%2 2%2C%22TITLE%22%3A%22BeritaTerkini%22%2C%22BORDER_ COLOR%22%3A%22transparent%22%2C%22ENDCAP_BG_COLOR% 22%3A%22transparent%22%2C%22ENDCAP_TEXT_COLOR%22%3 A%22%23000000%22%2C%22ENDCAP_LINK_COLOR%22%3A%22%2 3999999%22%2C%22ALTERNATE_BG_COLOR%22%3A%22transpa rent%22%2C%22CONTENT_BG_COLOR%22%3A%22transparent% 22%2C%22CONTENT_LINK_COLOR%22%3A%22%23999999%22%2C %22CONTENT_TEXT_COLOR%22%3A%22%23000000%22%2C%22CO NTENT_SECONDARY_LINK_COLOR%22%3A%22%23999999%22%2C %22CONTENT_SECONDARY_TEXT_COLOR%22%3A%22%23000000% 22%2C%22CONTENT_HEADLINE_COLOR%22%3A%22%239E5205%2 2%2C%22FONT_FACE%22%3A%22normal+normal+100%25+%27T rebuchet+MS%27%2CTrebuchet%2CVerdana%2CSans-Serif%22%7D%7D&up_showPostDate=1&up_summaryLength= 200&up_showSummary=1&up_numberOfPosts=10&community Id=03584432986724671119&caller=http%3A%2F%2Fgatmir .blogspot.com%2F#st=e%3DAOG8GaB2bq1oDPqDPR5S9PeqDw kHq4qeriWwX5phO71ROWlbFGR4phXhe7muNyoaAeyTJTxCjtff sQMAzBPbFHPLjhVJmQLYraTMFnb%252Bc7LdcsgsvDXedWLEAc K%252BcX%252FjROKz3G4BT%252BmuhRMILHSDEbmzF7CbBvjf atRXKhqgfJtvIbkid0F%252BvBa5RqENpyQjy%252FRB9W9DUZ nmNGy8n%252Ba0YxkYHXGZZgYBlMiGH0Cyn5x%252BvQqOFZrY Sqo%253D%26c%3Dpeoplesense&rpctoken=1647980649&
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,629
| | | re: IE8 yellow message show up error page on the left below corner of page. Quote:
Originally Posted by gatmir 'link' is null or not an object typical javascript error, an objects method is applied to a non-object, mostly because the object’s existance is not checked. happens if you refer to a non-existing element.
|  | Moderator | | Join Date: May 2007 Location: Munich, Germany
Posts: 4,126
| | | re: IE8 yellow message show up error page on the left below corner of page.
in case it is a GET request then the URI seems to be too large?
kind regards
| | Newbie | | Join Date: Sep 2009
Posts: 6
| | | re: IE8 yellow message show up error page on the left below corner of page.
hi gits, thanks sorry i dont understand in case it is a GET request then the URI seems to be too large?
what it means,
|  | Moderator | | Join Date: May 2007 Location: Munich, Germany
Posts: 4,126
| | | re: IE8 yellow message show up error page on the left below corner of page.
when you use a GET request, which basicly means it is a plain link with an appended querystring on a page or a url that you call from the address-bar (in fact it means that the params are passed as a querystring) ... and it seems so in your case ... then there are limits for the length of the URI ... you need to shorten it or use a POST request instead ... where you shouldn't have that problem ...
kind regards
| | Newbie | | Join Date: Sep 2009
Posts: 6
| | | re: IE8 yellow message show up error page on the left below corner of page.
thanks Dor, wow it is too technical, sorry i am not IT programmer, how to fix it?
pls see my blog for the error show up on left coner page : http://gatmir.blogspot.com/ |  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,629
| | | re: IE8 yellow message show up error page on the left below corner of page.
it’s in one of the external script files, too complex to debug it on the spot (for debugging use either Firefox, Safari or Opera)
| | Newbie | | Join Date: Sep 2009
Posts: 6
| | | re: IE8 yellow message show up error page on the left below corner of page.
thank dor, i shall try it ur suggestion. see u
|  | Moderator | | Join Date: Aug 2008 Location: Leipzig, Germany
Posts: 3,629
| | | re: IE8 yellow message show up error page on the left below corner of page.
see also gits’ comment on this matter.
| | Newbie | | Join Date: Sep 2009
Posts: 6
| | | re: IE8 yellow message show up error page on the left below corner of page.
thanks git, i will try it see u
|  | Site Moderator | | Join Date: Oct 2006 Location: The Great White North
Posts: 5,066
| | | re: IE8 yellow message show up error page on the left below corner of page.
Well your error is actually:
"'link' is null or not an object"
It's happening in the onLoadFeed(data) function (line 422) because "entry" is undefined.
You should be checking if "entry" exists before trying to use it......
If this isn't your code, it's likely that you've removed something (from the template or something) that should be there. Try restoring your template back to default.
-Frinny
PS I was able to see the error in IE8 with IE8's debugger tool. Hit F12 to use it.
PPS Please don't post your question more than once...I've merged your duplicate questions into one thread.
|  | Similar JavaScript / Ajax / DHTML bytes | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,223 network members.
|