You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Can't get logo off of commerical version Created Feb 8, 2010

This thread is solved

Views: 1223     Replies: 8     Last reply Jun 20, 2011  
You must login first before you can use this feature

darkkevin

Posts: 7

Registered:
Jan 31, 2010

Can't get logo off of commerical version

Posted: Feb 8, 2010

Hi,

Love this product and have done wonders with it so far but can't get the logo off

Can someone please assist me with this, I've been trying to remove the logo for some time and cannot.

Here is my sample page:
http://www.globalbroadcastsportsnetwork.com/flowplayer/example/

and here is the code for the player
		<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
		<script>
flowplayer("player", "http://www.globalbroadcastsportsnetwork.com/flowplayer.commercial-3.1.5.swf", { 
    // product key from your account
    key: '$c7bb017ca843bd529c8',
	logo: null, 
    clip: { 
          autoPlay: false, 
          autoBuffering: true, 
     } 

});
		</script>
		<!-- this will install flowplayer inside previous A- tag. -->
<p class="style1">ESPY's Part 3</p>
<object id="flowplayer" width="700" height="444" data="http://www.globalbroadcastsportsnetwork.com/flowplayer.commercial-3.1.5.swf"  
    type="application/x-shockwave-flash"> 
     
    <param name="movie" value="http://www.globalbroadcastsportsnetwork.com/flowplayer.commercial-3.1.5.swf" />  
    <param name="allowfullscreen" value="true" /> 
     
    <param name="flashvars"  
        value='config={"clip":"http://www.globalbroadcastsportsnetwork.com/video/SpecialSportsStories/Espys3.flv", "autoPlay":false}' /> 
</object>

Have tried logo: null, and logo: [opacity = 0}, and have had no change. Verified my product code was accurate.

Not sure what else to try?

Thanks!

Kevin

darkkevin

Posts: 7

Registered:
Jan 31, 2010

» Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: Can't get logo off of commerical version, from darkkevin
have tried keys of
key: '$c7bb017ca843bd529c8'

and

key: '#$c7bb017ca843bd529c8'

Edge
Vizmu Media ------------------- http://vizmu.com/

Posts: 576

Registered:
Nov 29, 2008

» » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » Can"t get logo off of commerical version, from darkkevin
It looks like you're using 2 different types of flowplayer installations. Javascript and Embedded/Object.

There's also a redundant comma after autoBuffering: true,<-

Try the below code:

<a 
    style="display:block;width:425px;height:300px;"  
    id="player"> 
</a>

<script language="JavaScript">
flowplayer("player", "http://www.globalbroadcastsportsnetwork.com/flowplayer.commercial-3.1.5.swf", { 
    // product key from your account
    key: '$c7bb017ca843bd529c8',
    logo: null, 
    clip: { 
          url: "http://www.globalbroadcastsportsnetwork.com/video/SpecialSportsStories/Espys3.flv",
          autoPlay: false, 
          autoBuffering: true
     } 

});
</script>

darkkevin

Posts: 7

Registered:
Jan 31, 2010

» » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » Can"t get logo off of commerical version, from darkkevin
Thanks Edge replaced my code with yours, but with that doesn't allow anything to load (no flowplayer container or video)

Can you give me the Embedded/Object code to try?

Thanks!

Kevin

Edge
Vizmu Media ------------------- http://vizmu.com/

Posts: 576

Registered:
Nov 29, 2008

» » » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » » Can"t get logo off of commerical version, from darkkevin
Your page is showing a 404 for the flowplayer-3.1.4.min.js

flowplayer-3.1.4.min.js

http://www.globalbroadcastsportsnetwork.com/flowplayer/example/flowplayer-3.1.4.min.js

darkkevin

Posts: 7

Registered:
Jan 31, 2010

» » » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » » Can"t get logo off of commerical version, from darkkevin
Sorry Edge, added that file and the swf files in the flowplayer folder, still nothing, any thoughts?

Thanks!

Edge
Vizmu Media ------------------- http://vizmu.com/

Posts: 576

Registered:
Nov 29, 2008

» » » » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » » » Can"t get logo off of commerical version, from darkkevin
For testing purposes only try adding the below flowplayer-3.1.4.min.js to your page head section and removing the reference to the one currently on your server.


<script src="http://static.flowplayer.org/js/flowplayer-3.1.4.min.js"></script>

Even though the flowplayer-3.1.4.min.js is assessable via your server It dosen't seem to be loading correctly. If doing the above fixes the issue then you may want to check the file permissions for the flowplayer-3.1.4.min.js on your server.

darkkevin

Posts: 7

Registered:
Jan 31, 2010

» » » » » Can"t get logo off of commerical version

Posted: Feb 8, 2010

Reply to: » » » » Can"t get logo off of commerical version, from edge
it worked and no logo!

what should the permissions be to the flowplayer-3.1.4.min.js on my server? Can I use this file several times on the site or just link to it in one place? I think I have a couple copies of it on the site, could this be the issue? Even when I link it to other ones on the site it doesn't work.

Can I leave it linked to yours?

Let me know!

Thanks so much Edge, you seriously rule!

~Kevin

darkkevin

Posts: 7

Registered:
Jan 31, 2010

» » » » » » Can"t get logo off of commerical version

Posted: Feb 9, 2010

Reply to: » » » » » Can"t get logo off of commerical version, from darkkevin
Replaced the .js file with the one in the downloaded zip file to make sure it wasn't corrupt

I played with the permissions, have godaddy as the host and
via their interface made the permissions web visible and executable and it still didn't allow me to see the flowplayer, though linking to your version does.

In the header this works:


and this doesn't:


AHHH HAA!

I copied the file contents from your file and pasted them into my file and saved it, uploaded it and Ta Daa, it works. Something must be wrong/different in the js file that was in the zip I downloaded.

Thanks for helping me troubleshoot this Edge!

Let me know if this solution is okay to implement!

Thanks again,

Kevin