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

Your preferred username that is used when logging in.

Need help getting flowplayer to work on Godaddy Created Sep 1, 2009

This thread is solved

Views: 2710     Replies: 7     Last reply Jan 13, 2010  
You must login first before you can use this feature

troyk3

Posts: 2

Registered:
Sep 1, 2009

Need help getting flowplayer to work on Godaddy

Posted: Sep 1, 2009

Well I am stuck with GoCrappy for the time being so I need to make the most of it.
I can not get FlowPlayer to work on Godaddy, is there something else I need to install to get it to work. Everything works fine on the computer till I upload it to godaddy then nothing shows up. I have another website that is my personal one I use and I uploaded everything there and it works fine. I need to use Godaddy for my client since that is where they have their hosting plan. Any help would be much appreciated.

Thanks

zebray

Posts: 23

Registered:
Aug 27, 2009

RE: Need help getting flowplayer to work on Godaddy

Posted: Sep 3, 2009

Reply to: Need help getting flowplayer to work on Godaddy, from troyk3
On of my groups uses GoDaddy with Joomla but we have yet to push out the code to our public server yet.

It is unlikely that GoDaddy is the problem, per se. Could you pass along a URL and/or your code. Hard to help with so few details.

troyk3

Posts: 2

Registered:
Sep 1, 2009

» RE: Need help getting flowplayer to work on Godaddy

Posted: Sep 3, 2009

Reply to: RE: Need help getting flowplayer to work on Godaddy , from zebray
I did get it working finally, its was something messed up in the scripts folder. I re uploaded it and it started working. Just not happy with godaddy, seems like everything I try to do on their hosting it doesn't work. They just told me to google the answer. Big help they are. All is good for now. Thanks for getting back to me zebray.

zebray

Posts: 23

Registered:
Aug 27, 2009

Godaddy In General

Posted: Sep 3, 2009

Reply to: » RE: Need help getting flowplayer to work on Godaddy , from troyk3
There are much better and equally affordable hosting providers. GoDaddy in my opinion blows - but my client is embedded. What can you do!

AngelDust

Posts: 1

Registered:
Dec 29, 2009

Avoiding GoDaddy

Posted: Jan 11, 2010

Reply to: Godaddy In General, from zebray
I've heard a lot of... well, negative testimonials with regards to GoDaddy and have avoided it while searching for hosting service providers. What servers in particular work best with FlowPlayer?

Calorie Shifting Diet

zebray

Posts: 23

Registered:
Aug 27, 2009

Avioding GDaddy

Posted: Jan 13, 2010

Reply to: Avoiding GoDaddy, from AngelDust
We have FlowPlayer deployed and working on a GDaddy enterprise server (stand alone box). Linux / Apache / TomCat / JRE. Works fine, I don't know of any others? The problem with GDaddy is support - you won't get any. The other problem with GDaddy is tech support has on three occassions (mainly when installing SSL certificates) completely f**k our server configs and then said to us, We don't offer support. It took us five hours to figure out what changes they made and roll back to our configs.

BlueBus

Posts: 1

Registered:
Jan 8, 2010

I need help too with flowplayer in godaddy

Posted: Jan 8, 2010

Reply to: Need help getting flowplayer to work on Godaddy, from troyk3
I'm getting trouble with getting flowplayer to work in godaddy

In my localhost server (visual studio dev web server) all goes fine... but when I upload the code to godaddy the flowplayer just shows the preview image and when I click the browser (IE, FF, etc) opens the download dialog instead of playing the video.

You can take a lookhttp://www.ubireach.org/Pages/Portfolio/ClientVideo.aspx?Type=CL&ClientId=2

I really can't understand whats going on...

Thank you for any help you may provide.

Best Regards,
Gonçalo Luiz

zebray

Posts: 23

Registered:
Aug 27, 2009

Path Not Right For SWF

Posted: Jan 8, 2010

Reply to: I need help too with flowplayer in godaddy, from BlueBus
I am guessing the problem is with the flowplayer control swf path in line:

flowplayer("a.myPlayer", "/website/pages/script/flowplayer/flowplayer-3.1.2.swf");

There are three guesses as to why this could be problematic:
1) Easy and quick, try "website/pages/script/flowplayer/flowplayer-3.1.2.swf"
without the leading / to website
2) Also easy and quick, confirm 100% that the path is correct!
3) Complicated as below

the path /websites/.... is probably fine on a local server but these clustered servers usually have a very different path. I think in dot net you can try

Server.MapPath("website/pages/script/flowplayer/")
which gives the true server path of the folder and use it as a string and add flowplayer-3.1.2.swf to the end of it

As in
Dim flowplayerPath As String = Server.MapPath("website/pages/script/flowplayer/") + "flowplayer-3.1.2.swf"

and drop in the flowplayerPath to the script.

The page clearly is not loading the SWF and that is almost certainly because the path is wrong.

Good hunting.