Server not working on Live server

So I just purchased the flash media server yesterday and
migrated the files and applications to the live site. And things
just wont work. I have encoded videos in the definst folder, but
nothing shows up. The site takes a really long time to load and
often crashes my firefox. I have verified that the server is
running and all the services are running. I am using a Red Hat
Linux server. has anyone had this problem or does anyone have a
suggestion to trouble shoot this problem.
Also i cannot log into the admin console i am using the
correct user and pwd.

From what you describe, I suspect there might be firewall
getting in the way. Did you open port 1935 on your server firewall?
By default, the flashplayer will connecting to FMS on port
1935. If 1935 fails, the flashplayer will attempt to connect on
port 80. It takes a while for the second attempt to happen, so that
would explain the lag in the connecting being accepted.
I'm not sure why firefox is crashing, but that wouldn't be
caused by a server issue. Is there something in your actionscript
that might cause the flashplayer to crash if the netconnection
isn't accepted? Perhaps a conditional that results in an infinite
loop?
About the admin service... are you sure it's running and
there's no firewall blocking port 1111? Try entering this into your
browser:
http://[server ip or hostname]:1111
If the service responds with an XML file, it's running.

Similar Messages

  • Is it normal that menu is not working on live site under BC secure link?

    Is it normal that menu is not working on live site? It works only on my computer but not on customer's. I should apply seperate secured links for each sub-section for preview. Will it change when real domain name will be set?
    Here is my page http://2kenergy.worldsecuresystems.com/index.html

    Well said, Cyclosaurus.
    There's a ton of people here who really appreciate
    your help; I am one of them.
    Mark
    Thanks Mark, I try. And I welcome when people have better things to say and offer. They always can reply to the OP, not me.
    I DO NOT APPRECIATE when someone trying to jack my post, I don't care for his chit-chat or bantering. All that ended LONG ago, if you know what I mean

  • InDesign XMP Not Working with Live Caption

    I have images in InDesign CS5 (Mac OS X 10.6..), and although they have XMP data (Set from Bridge), when I set with Live Caption, my caption always says "<No data from link>". I've set up captions in Objects > Captions... > Caption Setup - metadata to "Description" and the XMP data doesn't get put into the caption. I can see the XMP information in Links > Image >  XMP File Info... "Description". That's Fine. I've tried other user-defined fields, "Title, Keywords"  and none work in Live Caption. I've also been updating the images after setting the XMP data in Bridge. I've also just deleted the images and re-placed them. Still can't get live caption to work.
    I also saw a related thread where a user set file XMP via photoshop (CS5), which I also tried. When I do that, InDesign CS5 doesn't see the XMP data (via Links > XMP File Info). I can see it if set via Bridge, but can't make Live Caption work. If I set XMP via Photoshop, I can't see XMP data, and naturally can't set Live Caption.
    I could have done my project 5 times manually by now - but the fact this isn't working has been driving me crazy. Wondered if anyone has seen this or, hopefully, got it to work. And am I doing something wrong?
    Thanks,
    Matt

    I think this is a bug - probably in Photoshop (though the various engineering teams may disagree on this ).
    Here's what I did:
    Opened a TIFF image in Photoshop CS5, and confirmed that it had "Description" metadata.
    Placed it in InDesign CS5 and created a live caption which DID work.
    Saved the image as a PNG using "Save for Web and Devices" in Photoshop CS5 with metadata set to "All".
    Placed that PNG in InDesign CS5, and found that a live caption did NOT work
    Examined the PNG image in Bridge CS5, and found that the description WAS shown
    Opened the PNG image in Photoshop CS5, and found that the description field was empty (in fact all fields were).
    Looked at the "Raw Data" section in the File Info dialog box in Photoshop, and found that it was essentially empty.
    Opened the PNG in a hex editor, and found that the missing metadata WERE there, but somehow must be formatted/structured in a slightly incorrect way which somehow prevents Photoshop and InDesign from properly parsing the XML, but not so far afield as to prevent Bridge from doing so.
    I would suggest filing a bug report against Photoshop CS5 since it cannot read the metadata that one of its own components wrote into the file.

  • Getahead DWR not working on Live Server (Godaddy)

    Hi guys,
    I would like to know if anyone here ever faced this problem?
    It seems that it got to do with some proxy problem.
    I couldn't get dwr working on a shared hosting.

    Proxy Configuration:
    You have to set the following properties :
    http.proxyHost (default: <none>)
    http.proxyPort (default: 80 if http.proxyHost specified)
    http.nonProxyHosts (default: <none>)You can set the required properties when starting the JVM for a JAVA application from the command line:java  -Dhttp.proxyhost=myproxyserver.com  -Dhttp.proxyport=80 MyJavaAppOr in your source :import java.util.Properties;
    Properties systemSettings = System.getProperties();
    systemSettings.put("http.proxyHost", "myProxyServer.com");
    systemSettings.put("http.proxyPort", "80");
    System.setProperties(systemSettings);You might need to identify yourself to the proxy server.
    One way is to use the HTTP property "Proxy-Authorization" with a username:password base64 encoded.
    Properties systemSettings = System.getProperties();
    System.setProperties(systemSettings);
    URL url=new URL("http://someserver/somepage");
    URLConnection uc = url.openConnection ();
    String encoded = new String
          (Base64.base64Encode(new String("username:password").getBytes()));
    uc.setRequestProperty("Proxy-Authorization", "Basic " + encoded);
    uc.connect();Or set the properties
    System.setProperty ("http.proxyUserName",username);
    System.setProperty ("http.proxyPassword",password);The http.nonProxyHosts property indicates the hosts which should be connected too directly and not through the proxy server. The value can be a list of hosts, each seperated by a |, and in addition a wildcard character (*) can be used for matching.
    java.exe 
       -Dhttp.nonProxyHosts="*.mycompany.com|*.mycompany.local|localhost"
          MyClassfor further information :
    http://java.sun.com/j2se/1.4.2/docs/guide/net/properties.html
    http://www.java.com/en/download/help/proxy_setup.xml

  • Preloader not working on live server???

    Hi Guys
    My application loads many XML files as it's content. I have
    written preloading code everywhere a file needs to be loaded, it
    looks something like this.
    var XMLPercent =
    Math.floor(ProdXML.getBytesLoaded()/ProdXML.getBytesTotal()*100)
    if(XMLPercent < 100){
    gotoAndPlay("ConLoop")
    The code works perfectly in flash while running in simulate
    download mode, I have also tested it from about 5 different pc's
    around the company and in multiple browsers and have had no problem
    whatsoever. Today I loaded it onto the live server and these
    statements are just getting totally ignored and the movie just
    continues playing! It's also happenning inall browsers. I have
    checked the code, tried to write different variations of it and
    nothing works.
    If anyone has any ideas why I would be very greatful.
    Thanks
    Shane

    Hi Shane,
    I have the same problem when loading the content. When the
    movie loads content from the local computer it works fine, but the
    content it is on the server the following test never becomes true.
    if( ( _root.imageLoader._framesloaded &gt; 0 )
    &amp;&amp; ( _root.imageLoader._framesloaded &gt;=
    _root.imageLoader._totalframes ) ) {
    Regards
    I have no idea how to solve this.

  • H.264 not working in Live Stream

    Hi,
    I have a HD Camera streaming a live feed through FME 2.5 to
    FMS 3.0 using the VP6 codec and it works fine.
    I have now been trying to get the same stream running via
    H.264 and althogh FME 2.5 connects to the FMS 3.0 server and the
    stream starts with FMS 3.0 reporting the stream no problem.
    The Client application crerated with Captivate 3 using Flash
    Player 9 for publishing no longer dispays the video.
    Switching back to VP6 works again.
    Any one have any idea what I should be doing?
    Cheers

    Thanks for the quick response, I checked with our Admin guys
    and it indeed 3.0.0.
    So I will update immediately.
    Is there a big advantage to using H.264 over VP6 for live
    streaming?
    I have another forum question that went unanswered relating
    to this issue asking, what are the required recommended settings
    for both FMS 3 and FME 2.5 to reduce any lagging in video on a 1gb
    LAN which should not have any?
    cheers again

  • Image swap not working once live

    So I have made some webpages in fireworks then imported the code to dreamweaver. Everything works fine when it is local. I then try to put it onto the website, where it comes up, everything works except the image swap behavior. This is the page:
    http://community.dur.ac.uk/foundation.science/?q=node/619
    HERE is meant to change colour on rollover and words are meant to turn up on rolling over the cliffs. The links haven't been sorted yet in the code, so they are all still dead ends (but do appear to work in principle.
    This is one of the pieces of code for the swapping images:
    <tr>
       <td rowspan="3"><img name="Harbour_r5_c6" src="http://community.dur.ac.uk/foundation.science/Staithes/Harbour_r5_c6.png" width="151" height="76" id="Harbour_r5_c6" alt="" /></td>
       <td colspan="2"><a href="Harbour pano - zoomed in.htm" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('Harbour_r5_c7','','Harbour_r5_c7_s2.png',1);"><img name="Harbour_r5_c7" src="http://community.dur.ac.uk/foundation.science/Staithes/Harbour_r5_c7.png" width="113" height="44" id="Harbour_r5_c7" alt="" /></a></td>
       <td rowspan="3"><img name="Harbour_r5_c9" src="http://community.dur.ac.uk/foundation.science/Staithes/Harbour_r5_c9.png" width="205" height="76" id="Harbour_r5_c9" alt="" /></td>
       <td><img src="http://community.dur.ac.uk/foundation.science/Staithes/spacer.gif" width="1" height="44" alt="" /></td>
      </tr>
    Thanks for any help you can give me, I'm really not used to this
    Thanks
    Hannah

    You have a fair number of major structural errors in your html that need to be repaired. Run your page through the validator at http://validator.w3.org and clean those up, especially the extra <body> and <head> tags.
    I'm not sure if maybe your page is being constructed by server side includes that have some extra code in them or if something else is going on, but it could be the root of your problems.
    If you clear up the coding errors and it still doesn't work, post back and we can take a closer look at the clean code.

  • Spry Accordion Not Working on Live Web Host

    I added a Spry Accordion to my webpage and it worked perfectly when I previewed it in IExplorer from the link in Dreamweaver.  However, once I launched my webpage to a live Web Host (Network Solutions-Unix platform), the Spry Accordion disappeared and "broke" the page.  Text formatting disappeared and the text which was previously contained in the Spry Accordion was displayed vertically down the webpage instead of in the accordion.  How can I fix this?  Thank you!

    ELR Enterprises wrote:
    I added a Spry Accordion to my webpage and it worked perfectly when I previewed it in IExplorer from the link in Dreamweaver.  However, once I launched my webpage to a live Web Host (Network Solutions-Unix platform), the Spry Accordion disappeared and "broke" the page.  Text formatting disappeared and the text which was previously contained in the Spry Accordion was displayed vertically down the webpage instead of in the accordion.  How can I fix this?  Thank you!
    Did upload the SpryAssets folder to your server?

  • Horizontal menu bar (spry) not working in live view

    action taken - simply add a horizontal spry menu to
    a blank page, then go to live view.....
    when select "item 1" - item 2 briefly disappears...any thoughts - this is making me nuts!   pls email me at [email protected]
    here is the code
    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    #apDiv1 {
    position:absolute;
    width:200px;
    height:115px;
    z-index:1;
    left: 182px;
    top: 281px;
    #apDiv2 {
    position:absolute;
    width:463px;
    height:243px;
    z-index:1;
    left: 350px;
    top: 135px;
    -->
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
            <ul>
                <li><a href="#">Item 1.1</a></li>
                <li><a href="#">Item 1.2</a></li>
                <li><a href="#">Item 1.3</a></li>
            </ul>
        </li>
        <li><a href="#">Item 2</a></li>
        <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
            <ul>
                <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                    <ul>
                        <li><a href="#">Item 3.1.1</a></li>
                        <li><a href="#">Item 3.1.2</a></li>
                    </ul>
                </li>
                <li><a href="#">Item 3.2</a></li>
                <li><a href="#">Item 3.3</a></li>
            </ul>
        </li>
        <li><a href="#">Item 4</a></li>
    </ul>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

    You will have better luck here in the Forum if you can post a link to your page. Just the HTML doesn't give us enough information; we need to see the CSS stylesheets as well, and in context...working...it's easier to pin down.
    Beth

  • Serial number not working. Live chat people can't help. Please help! Thank you.

    I was given a link to re-install PSE 7 by the live chat team because my PC had to be wiped following a crash. Now I can't activate it as the serial number comes up invalid.  Got back to the live chat people who say they can't deal with this because it's not the latest version. Their advice was to post here, so that a more specialised team member would reply.  Therefore, can someone please help??

    The exact words were: "As version of the product is old, we will not be able to predict how the activation will be". Is that your experience too??

  • Eiffel Tower background not working in Live Effects

    I recently purchased a Creative webcam and tried using the Life Effects backgrounds. Some of them work fine, but the one with the Eiffel Tower doesn't work at all. I see mostly my body and glimpses of pieces of the Eiffel Tower. Can someone explain how to use this particular background properly? Thanks.

    I recently purchased a Creative webcam and tried using the Life Effects backgrounds. Some of them work fine, but the one with the Eiffel Tower doesn't work at all. I see mostly my body and glimpses of pieces of the Eiffel Tower. Can someone explain how to use this particular background properly? Thanks.

  • Rebel T5 does not work in live view mode. Live view is enabled but images are not being captured.

    troyantonik, What lens do you have and have you tried other lenses with your camera to see if they also do not autofocus when you press the shutter button down halfway? Just in case a setting may be causing this, I recommend that you reset the camera to the default settings.  Please do the following:  
    Press the MENU button.Select the [Tools #3] tab.Select [Clear Settings].Select [Clear All Camera Settings].Select [OK].Select [Clear All Custom Func.].Select [OK].Exit the menu.If this is a time sensitive-matter, additional support options are available at Contact Us.

    Hello Troyantonik,
    Since the issues with your camera seem to persist, we would recommend having the camera evaluated at the Canon Service Center.  You can set up service through our web site, located here. 

  • Flash working fine in local system... Not working in the live site - Need Help :(

    Hi All...
    I have a flash project, its working fine in local system and checked this file with uploading in someother websites, its working fine there too, but the same file is not working in live
    here is the link of the site, its showing blank page, the flash contents are not loading...
    http://www.aysotraining.com/U8_Coach_test.html
    and here the same file which i have uploaded it in other server its working fine...
    http://deals2deal.com/krgtech/u8coach_test.swf
    can anyone help me to fix this problem please....???
    Thanks in advance,
    Vasanth

    Hi Thanks for your reply. Actually u8coach.swf this an existing file, it is working. i have updated some details in this file and uploaded it again with the name u8coach_test.swf its not working. this same file working another server http://deals2deal.com/krgtech/u8coach_test.swf. this is what my issue. This file is working another server after my updation, but its not working it's own server after my updation. Can you find the problem what it is??
    Thanks in advance,
    Vasanth

  • Reason for msi tabs & live update not working

    Ok i had the same problems with my msi video card the msi tabs not working and live update giving me an error. I used to run a asus p4b533 board with a sis chipset> what i found out is that the live update and the tabs work under any m/b that have the intel chipset. I now have a asus board with  a intel chupset it's working fine.  I've tried this on other boards and same results.  It seems that everyone who's had the problem was not using an intel chipset board. This is my theory...
    -rak

    Just reinstall LU, and you should be fine.

  • Win Media Encoder on VMWare - Video Devices does not work!!! MBP 15"

    Hi,
    Im trying to setup Windows Media Encoder (9 series) through Windows XP (SP3 Virtualized on VMWare 2.0.5) to make a live webcast event on internet, but my Macbook Pro can't recognize my camcorder (Sony HVRA1)
    I want to setup an live webcast event but when I use an Intel Windows native computer (as I have been doing) all works gook.
    I've get a new Macbook Pro 2.53GHz 15" (aluminium) and I just cant make it work on Windows Media Encoder. The camcorder just doest exist inside Windows.
    First thing I've done was try to find a Win Media Encoder for Mac, but I havent found any. Only converters but they not work with live events.
    I could try others encoders but Im already on a server which just run Windows.
    Any tips how to make it work?
    Thanks in advance.

    Hi lgmmachado,
    Presumably you connect the camcorder to the MBP using Firewire?
    As far as I am aware one cannot access directly from a Virtual Machine a Firewire Port as it is not virtualised and no virtualisation software that I know of works directly with Firewire. I may be wrong here as I've never had the need to do so.
    You would have to install BootCamp, then install Windows and then start up your Mac directly from the BootCamp/Windows partition to directly access the Firewire port from within Windows.
    Kryten

Maybe you are looking for

  • How to see iPhone contacts (synced from Google) in Messages app on Mac

    I use Google contacts as my master contacts My iPhone 7 (iOS 7) Contacts are synched with Google Contacts. The Messages app in the iPhone shows the names of the people I'm messaging with - however The Messages app in my iMac (Mavericks) does not show

  • Nhl gamecenter? any buffering?

    hi,i was thinking of buying a apple tv. any issue with the nhl gamecenter buffering?

  • Assigning partner procedure

    Hello , I like to confirm that a partner procedure defined for a sales doc type Must not be assigned to an account group and a partner procedure for customer master Must Only be assigned to an Account group. Else the configuration will not get expect

  • Adobe?  and my You Tube Videos

    Checking out my My Space account loads slow and sez I have to download a new version of Adobe to see artwork? Then on "You Tube" video it loads "durkART Creations" but doesn't load "durkART Coloring Book 2007" nor "durkART dancing". Wondering is thes

  • Difference between ROAD MAP and FPM Technic

    Hi, I need to develop a web dynpro java application using floor plan manager technique. It should be integrated in the ESS. Please let me know if i develop the same application in webdynpro abap using ROAD MAP control whether it will integrate in ESS