View Single Post
  #37  
Old 06-06-2014, 09:53 AM
Pressing-On's Avatar
Pressing-On Pressing-On is offline
Not riding the train


 
Join Date: Mar 2007
Posts: 48,541
Re: Computer problems

Okay, I am apparently still having some problems.

I am getting:


Error #2032: Stream Error


Description
The application is unable to request ads from server.
Cause
The ad server has encountered an invalid URL issue, which is mainly caused by improper embedding when loading a file. Primary causes for this error:

Attributes such as type, object ID, and allowScriptAccess have not been set properly.

The URL cannot be located or it is blocked.

Resolution
Check the following recommendations to fix the error:

Set allowScriptAccess to 'always' in the embed tag, especially if you are rendering companion ads on the HTML page. If you are running I.E., make sure that the embed tag is nested within the object tag and verify that the classid attribute appears exactly as shown below:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
width="865"
height="750"
id="SamplePlayer"
align="middle">
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="SamplePlayer.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="SamplePlayer.swf"
quality="high"
bgcolor="#ffffff"
width="900"
height="500"
name="SamplePlayer"
align="middle"
allowScriptAccess="always"
allowFullScreen="false"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>


Note: If allowScriptAccess is not defined, the video file and the HTML page can communicate only if both are from the same domain.
Check that the object ID attribute contains the correct content ID.
Check that the embed src and type attribute is properly set. This issue may affect non-I.E. browsers. Example:

<embed src="Player.swf"
type="application/x-shockwave-flash">


Update all references to the video player and ensure that you have granted the file permissions to access content if it is located in another domain.
If you are still unclear about the error, refer to the sample implementation.

https://developers.google.com/intera.../v3/errorcodes
__________________
Reply With Quote