My compiled swf can't run on web

My compiled swf can't be browsed on web,but it works fine on
localhost. Which means that my compiled swf can run on localhost,
but if I try to run the swf on web(from other machine), then it
will hold for a long time, and I can't see anything but a grey
screen. I wrap my swf file via Flex builder. I can't figure it out.
Is there any one who have ever had experences like this, and know
the solutions?
My MXML is:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="testRmt.send()">
<mx:HTTPService id="testRmt" url="
http://140.122.79.118/TestFlex2_2.php"
useProxy="false" method="POST">
<mx:request xmlns="*">
<id>{myDG.selectedItem.id}</id><username>{username.text}</username><email>{email.text}</e mail>
<OP>{OP}</OP>
</mx:request>
</mx:HTTPService>
<mx:Script>
<![CDATA[
import flash.net.LocalConnection;
[Bindable]
public var OP:String;
public var ad:LocalConnection = new LocalConnection();
]]>
</mx:Script>
<mx:Button label="Send" click="OP='INS';testRmt.send()"
x="446" y="204"/>
<mx:HBox horizontalScrollPolicy="off" width="200"
height="24" y="142" x="300">
<mx:Label text="Username:"/>
<mx:TextInput id="username"/>
</mx:HBox>
<mx:HBox horizontalScrollPolicy="off" width="200" x="300"
y="174">
<mx:Label text="Email:"/>
<mx:TextInput id="email"/>
</mx:HBox>
<mx:DataGrid id="myDG" width="625" height="200" x="87.5"
y="234" dataProvider="{testRmt.lastResult.users.user}"
click="delBtn.enabled=true" >
<mx:columns>
<mx:DataGridColumn width="25" headerText="Id"
dataField="id"/>
<mx:DataGridColumn width="150" headerText="Name"
dataField="name"/>
<mx:DataGridColumn width="450" headerText="Email"
dataField="email"/>
</mx:columns>
</mx:DataGrid>
<mx:Button enabled="true" label="Del" id="delBtn"
click="OP='D';testRmt.send();username.text='';email.text='';"
x="667.5" y="442"/>
<mx:Label x="10" y="10" text="Flex Example" width="186"
fontSize="15" color="#ffffff"/>
</mx:Application>
Text

I have had the same or similar problem, in my case with
ColdFusion projects. I have uploaded several sample projects to my
shared hosting web server; all the projects that do not use a
server run fine, buit I have never been able to make the CF
projects run. I have posted about this two or three times, but
nobody ever answered.
Maybe our question was too stupid to deserve an answer from
busy people. I never thought of this, but today I got an email from
my Hosting provider. Quoting part of that message:
“We will be performing a ColdFusion upgrade to CFMX
7.02 on the
server where your account(s), timo, mochica, is/are hosted.
We have
scheduled the upgrade to take place between 3:00 AM EDT and
6:00 AM
EDT on Saturday, August 5th, 2006.
We do not anticipate more than 15 minutes of downtime once
the
maintenance begins .....”
Also, I found that the projects that do run require all those
files that are generated when FB builds the project, so I have been
uploading the entire output folder (usually, but not always,
‘bin’).
I’m hoping I won’t have any more problems after
Saturday.
Peace,
Carlos

Similar Messages

  • Can compile but can't run....

    Last year I compiled and ran programs and applets with the Java SDK Version 1.4.0 on Windows XP. This year I am basically going thru the same motions, but now I can compile programs but not run them. The error that I get using the DOS prompt command is
    C:\VMBwork>java HelloWorld
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld
    I moved to a new Computer Lab over the summer, so the technicians loaded j2sdk1.4.2_04 with NetBeans IDE. I have set the path in XP to c:\j2sdk1.4.2_04\bin and the classpath to c:\Program Files\Java\j2re1.4.2_04\lib\ext. This appears to be the same set up as last year...but no java programs run.
    I even tried loading j2sdk1.4.2_05 new on my computer without Netbeans with the same path changes, but to no avail. Any suggestions? The students are really anxious to get into programming.

    C:\VMBwork>java HelloWorld
    Exception in thread "main"
    java.lang.NoClassDefFoundError: HelloWorldIs HelloWorld.class in C:\VMBwork?
    Is HelloWorld.java defined in a package?
    If answers are yes and no (respectively), you should be able to run using
    java -cp . HelloWorld>
    I moved to a new Computer Lab over the summer, so the
    technicians loaded j2sdk1.4.2_04 with NetBeans IDE. I
    have set the path in XP to c:\j2sdk1.4.2_04\bin and
    the classpath to c:\Program
    Files\Java\j2re1.4.2_04\lib\ext. ^^^^^^^^^^^^ doesn't help for classpath (it's already set this way and you can't change that).
    -Alexis
    This appears to be
    the same set up as last year...but no java programs
    run.
    I even tried loading j2sdk1.4.2_05 new on my computer
    without Netbeans with the same path changes, but to no
    avail. Any suggestions? The students are really
    anxious to get into programming.

  • It compiles but can't run it!

    Hi
    I am really new to java. I got this code from net and tried to compile it. Idoes compile but when i run it , i get the messege,
    "java.lang.NoSuchMethodError: main
    Exception in thread "main" .
    Here is me code.Can someone pleaese tell me y i can't run it and how to fix it. Thanks for your time.
    import java.awt.*;
    import java.awt.event.*;
    public class calculator extends java.applet.Applet implements ActionListener {
         TextField txtTotal = new TextField("");
    Button button[] = new Button[10];
         Button divide = new Button("/");
         Button mult = new Button("*");
         Button plus = new Button ("+");
         Button minus = new Button("-");
         Button isequalto = new Button("=");
         Button clear = new Button("CA");
         double num ,numtemp ;
         int counter;
         String strnum = "",strnumtemp = "" ;
         String op = "";
         public void operation() {
         counter ++;
              if (counter == 1) {
              numtemp = num;      
              strnum = "";
              num = 0;
              }else{
              if (op == "+") numtemp += num;
              else if (op == "-") numtemp -= num;
              else if (op == "*") numtemp = numtemp * num;
              else if (op == "/") numtemp = numtemp / num;
              strnumtemp = Double.toString(numtemp);
              txtTotal.setText(strnumtemp);          
              strnum = "";
              num = 0;     
         public void init() {
         setLayout(null);
         plus.setBackground(Color.blue);
         plus.setForeground(Color.white);
    minus.setBackground(Color.blue);
         minus.setForeground(Color.white);
    divide.setBackground(Color.blue);
         divide.setForeground(Color.white);
         isequalto.setBackground(Color.blue);
         isequalto.setForeground(Color.white);
         mult.setBackground(Color.blue);
         mult.setForeground(Color.white);
         clear.setBackground(Color.blue);
         clear.setForeground(Color.red);
         for(int i = 0;i <= 9; i ++) {
              button[i] = new Button(String.valueOf(i));
              button.setBackground(Color.orange);
              button[i].setForeground(Color.blue);
         button[1].setBounds(0,53,67,53);
         button[2].setBounds(67,53,67,53);
         button[3].setBounds(134,53,67,53);
         button[4].setBounds(0,106,67,53);
         button[5].setBounds(67,106,67,53);
         button[6].setBounds(134,106,67,53);
         button[7].setBounds(0,159,67,53);
         button[8].setBounds(67,159,67,53);
         button[9].setBounds(134,159,67,53);
         for (int i = 1;i <= 9; i ++) {
              add(button[i]);
         txtTotal.setBounds(0,0,200,53);
         add(txtTotal);
         plus.setBounds(0,212,67,53);
         add(plus);
         button[0].setBounds(67,212,67,53);
         add(button[0]);
         minus.setBounds(134,212,67,53);
         add(minus);
         divide.setBounds(134,264,67,53);
         add(divide);
         isequalto.setBounds(67,264,67,53);
         add(isequalto);
         mult.setBounds(0,264,67,53);
         add(mult);
         add(clear);
         public void start() {
         for(int i = 0;i <= 9; i ++) {
              button[i].addActionListener(this);
         plus.addActionListener(this);
         minus.addActionListener(this);
         divide.addActionListener(this);
         mult.addActionListener(this);
         isequalto.addActionListener(this);
         clear.addActionListener(this);
         public void stop() {
         for(int i = 0;i <= 9; i ++) {
              button[i].addActionListener(null);
         plus.addActionListener(null);
         minus.addActionListener(null);
         divide.addActionListener(null);
         mult.addActionListener(null);
         isequalto.addActionListener(null);
         clear.addActionListener(null);
         public void actionPerformed(ActionEvent e) {
              for(int i = 0;i <= 9; i++) {
                   if (e.getSource() == button[i]) {
                   play(getCodeBase(),i + ".au");
                   strnum += Integer.toString(i);
                   txtTotal.setText(strnum);
                   num = Double.valueOf(strnum).doubleValue();
    if (e.getSource() == plus) {
              operation();
              op = "+";
              if (e.getSource() == minus) {
              operation();
              op = "-";
              if (e.getSource() == divide) {
              operation();     
              op = "/";
              if (e.getSource() == mult) {
              operation();     
              op = "*";
              if (e.getSource() == isequalto) {
              if (op == "+") numtemp += num;
              else if (op == "-") numtemp -= num;
              else if (op == "*") numtemp = numtemp * num;
              else if (op == "/") numtemp = numtemp / num;
              strnumtemp = Double.toString(numtemp);
              txtTotal.setText(strnumtemp);
              strnumtemp = "";
              numtemp = 0;
              strnum = "";
              num = 0;
              counter = 0;
              if (e.getSource() == clear) {
              txtTotal.setText("0");
              strnumtemp = "";
              numtemp = 0;
              strnum = "";
              num = 0;
              counter = 0;

    Thanks for your reply.
    Ok i used the link that you sent me and saved the following in the same directory where i have "calcultor.class".
    <HTML>
    <HEAD>
    <TITLE> A Simple Program </TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE="calculator.class" WIDTH=150 HEIGHT=25>
    </APPLET>
    </BODY>
    </HTML>
    I saved it with the name "calculator.html".
    Now when in my browser i type calculator.html, nothing happens.
    I am sure i am missing something but i don't know what.Can someone please help me!
    thanks

  • Can't run a WEBI Report with Sybase in Solaris

    Hi all.
    I have an instalation on Solaris 10, the database is Sybase IQ 15, the database work good and I can build an universe but when I try to run a report for that universe, Web Intelligence show this error:
    "Query 1 - Depositos
    A database error occured. The database error text is: (CS) "DBDriver failed to load : /disco01/bo/bobje_programs/bobje/enterprise120/solaris_sparc/dataAccess/RDBMS/connectionServer/libdbd_dbodbc10.so (ld.so.1: WIReportServer.bin: fatal: libdbodbc10_r.so: open failed: No such file or directory)" . (WIS 10901)"
    The driver ODBC for client Universe Designer is install and client IQ 15 is intall too in Windows, I build a Universe in window client and the check is ok. I can see the data. then I export the universe in BOE but when I build a WEBI report this dosn't work.
    Do you have any idea?
    Thanks in advance.
    Edited by: Mauricio Garcia on Oct 20, 2009 5:41 AM

    Thank you Denis,
    the database is intalled on the same server (Solaris-Unix) that boe and the databse is running.
    I have to install the driver when the database is in the same server?
    thanks in advance
    Mauricio

  • Mozilla-firefox compile but can't run

    Hi,
    I wanted to try to optimized my firefox build, so I went to package cvs (http://cvs.archlinux.org/cgi-bin/viewcv … ag=CURRENT)
    and downloaded everything.
    Now I run makepkg and everything runs ok. I didn't modified the PKGBUILD.
    Now when I install the new package and try to run firefox, I get:
    -(nicolas@di8500:0)-(9 files:36K@Fichiers)-(0 jobs)-(13:54)-
    -(~/Fichiers:$)-> firefox
    *** loading the extensions datasource
    *** ExtensionManager:_updateManifests: no access privileges to application directory, skipping.
    *** loading the extensions datasource
    *** ExtensionManager:_updateManifests: no access privileges to application directory, skipping.
    And this goes on forever...
    What could be wrong? Can the CFLAGS cause this? Here are what I've tryed:
    export CFLAGS="-march=pentium4 -O3 -pipe -fomit-frame-pointer -mmmx -msse -msse2 -mfpmath=sse -fprefetch-loop-arrays -ffast-math"
    export CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden"
    Thank you very much.

    For some times, I had this CTAGS in my /etc/makepkg.conf:
    export CFLAGS="-march=pentium4 -O3 -pipe -fomit-frame-pointer -mmmx -msse -msse2 -mfpmath=sse -fprefetch-loop-arrays"
    I then added "-ffast-math" yesterday.
    Anything done after compiling with both tags didn't work (even running as root).
    I switched back to the default
    export CFLAGS="-march=i686 -O2 -pipe -Wl,-O1"
    export CXXFLAGS="-march=i686 -O2 -pipe -Wl,-O1"
    And now my own compiled firefox works... So It seems that this is a cflag error...
    Anyone know witch flag could break it?

  • Can I run existing web application on portal 4.0?

    Hi,
    I have existing web application running on tomcat server. Can I move it to portal
    server ? If yes, what do I need to do?
    Thanks in advance,
    Meghana

    You sure can. WLP4 requires WLS6.x (check the download site for correct
    version). You can deploy your web app using the WLS console.
    Subbu
    Meghana wrote:
    Hi,
    I have existing web application running on tomcat server. Can I move it to portal
    server ? If yes, what do I need to do?
    Thanks in advance,
    Meghana

  • Swf doesn't run on web

    Hi,
    I have a website built in Frontpage that I'm trying to embed
    a 1.5 minute swf to. I've downloaded and installed the adobe fix
    for the IE7 issues where the form loads and "Click to
    ........................". The swf plays fine in preview mode on my
    computer. It's when I upload it to the site that it doesn't play.
    I'm beside myself. this si the code from the html.
    <!-- saved from url=(0013)about:internet -->
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js. In Flash,
    run \"Apply Active Content Update\" in the Commands menu to copy
    AC_RunActiveContent.js to the HTML output folder.");
    } else {
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'width', '550',
    'height', '400',
    'src', 'campcarecommercial',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'campcarecommercial',
    'bgcolor', '#ffffff',
    'name', 'campcarecommercial',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'movie', 'campcarecommercial',
    'salign', ''
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="550" height="400" id="campcarecommercial" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie"
    value="www/crossroadsphysicaltherapy.org/campcarecommercial.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffffff" /> <embed src="
    http://crossroadsphysicaltherapy.org/campcarecommercial.swf"
    quality="high" bgcolor="#ffffff" width="550" height="400"
    name="campcarecommercial" align="middle"
    allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object></noscript>
    </body>
    </html>

    <!-- saved from url=(0013)about:internet -->
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js. In Flash,
    run \"Apply Active Content Update\" in the Commands menu to copy
    AC_RunActiveContent.js to the HTML output folder.");
    } else {
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'width', '550',
    'height', '400',
    'src', '
    campcarecommercial',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'campcarecommercial',
    'bgcolor', '#ffffff',
    'name', '
    campcarecommercial',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'movie', '
    campcarecommercial',
    'salign', ''
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="550" height="400" id="campcarecommercial" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="
    www/crossroadsphysicaltherapy.org/campcarecommercial.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffffff" /> <embed src="
    http://crossroadsphysicaltherapy.org/campcarecommercial.swf"
    quality="high" bgcolor="#ffffff" width="550" height="400"
    name="campcarecommercial" align="middle"
    allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object></noscript>
    </body>
    </html>

  • Help please ! applet can't run on web site but can on my machine

    I had uploaded my applet to some free web site.
    The problem is that if I'm trying to open html of applet,
    instead applet appears gray area. This happens only if the computer has no PLUG IN or JRE installed. Tell me please if there is some other solution except to download PLUG IN or JRE, because it's not good for the web site user.

    I'm no expert on this, but as far as I know you always need a plug in to run applets in a browser (java plug in).

  • Some procedure can not run,Please help

    --Please Help me where is wrong
    --The Procedure can be compiler,but can not run
    --Maybe there has some wrong with Ref Cursor or dynamic SQL
    --Please,Thanks ver much
    --Follow is my full code
    Create or Replace package ref_types
    AS
    TYPE ref_cursor is REF CURSOR;
    End;
    Create or Replace package userinfo as
    procedure Get_usermenu (baduser out boolean,
    menu out ref_types.ref_cursor
    End;
    Create or Replace package body userinfo as
    procedure Get_usermenu (baduser out boolean,
    menu out ref_types.ref_cursor
    ) is
    v_sqltext varchar2(100);
    v_sql varchar2(300);
    begin
    baduser:=FALSE;
    v_sqltext:='''A001'',''A002'',''A003''';
    v_sql:='select MENUID,P_NAME from MENU_LIST
    where MENUID in (';
    v_sql:=v_sql||v_sqltext||) order by MENUID asc';
    --explain:Get v_sqktext values overpass some process
    open menu FOR v_sql;
    end;
    end;
    /

    thanks,
    error number is : Ora-01001
    I use it In Form:
    declare
    v_baduser boolean;
    v_menu ref_types.ref_cursor;
    v_menuid number;
    v_menuname varchar2(50);
    v_menucount number;
    begin
    v_menucount:=1;
    userinfo.Get_usermenu(v_baduser,v_menu);
    loop
    fetch v_menu into v_menuid,v_menuname;
    exit when v_menu%NOTFOUND;
    show_alert_info(v_menuid||';'||v_menucount||'、'||v_menuname);
    --show_alert_info,like Developer's Function "message",
    --It can show some text
    v_menucount:=v_menucount+1;
    end loop;
    Close v_menu;
    end;

  • Can you run multiple Excel Services Applications against a single Web Application?

    I have been struggling with this one for a while now, hopefully someone can help me understand what I am missing...
    I have a single SharePoint Farm.  This farm runs multiple Web Applications & the Service Applications.
    1. SharePoint Only Server with Multiple Site Collections (http://sharepoint.com/...)
    2. MS Project Server with Multiple Site Collections (http://pwa.com/...)
    3. My services applications all exist on the same farm.
    I was under the impression, and believe that I validated this through testing and from this site (http://blogs.office.com/2009/11/16/excel-services-in-sharepoint-2010-administration-improvements),
    that you can only run a single Excel Services Application against each unique Web Application.  In essence, I can run one Excel Services Application against the SharePoint Only Server, and another Excel Services Application against the MS Project
    Server...  However, I can NOT run multiple Excel Services Applications against the different Site Collections within the MS Project Server becuase it is only aware of its "default" Excel Service Application. 
    ie. I can NOT do the following:  ExcelServiceApp1 for
    http://pwa.com/SiteA & ExcelServiceApp2 for
    http://pwa.com/SiteB
    Is that correct?
    If that is not correct, then I must be missing a way to specify a different Excel Service App for each Project Web App Site. 
    Some other solutions that I think may work, but would really appreciate if someone could validate:
    - Create multiple Project Server Service Applications for each instance of PWA/Excel Service? (but wouldn't this still have to use one of the two WebApplications and cause the same limitation?)
    - Create a new Web Applciation for each PWA/Excel Service?  (ie.
    http://pwasite1.com;
    http://pwasite2.com; http://pwasite3.com, etc.)
    Thoughts/suggestions are very greatly appreciated!!!

    Hello Trpy2k
    I have not done what you are doing and I assume that you are using project server 2010.  However, you answer lives in PowerShell.
    The New-WebServiceProxy show that you can create a new proxy by spacing a URL and not a web application. The default proxy from the web application is directing to the default excel service.  If you need another excel service, you must specify another
    proxy and this may do it for you.
    Also, don't forget the Secure State service and that each excel report will need this configured, that is with the assumption that the other excel service requires different authentication.
    PS.  This question may get a better answer in the SharePoint forums.
    Cheers!
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Can I run WEB Dynpro in ECC   5.0 ?

    Can I run WEB Dynpro in ECC   5.0 ?

    Hi Namrata,
    Read this thread,
    Re: Can we work ABAP Webdynpro in ECC 5.0
    Regards
    Juan
    Please reward with points if helpful

  • How can i run Report in Web (Oracle 9i)

    I working with Report Developer 9i,
    How Can i run my report to web ?

    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    Thanks
    Ratheesh

  • Where can I find a complete set of compiled swfs for 2.0?

    Where can I find a complete set of compiled swfs for 2.0?
    I want to place these directly on my website.
    Thanks,
    Ken

    So basically Apple is hiding which networks allow rentals vs. purchase until you buy an ATV2,
    and then find out you can't watch "The Closer", "Men of a Certain Age", "In Plain Sight", etc., etc.
    Or until you spend a bunch of time digging through iTunes show by show...
    Sad...Guess I'm sticking with Cable for a while longer....

  • Mac 10.7.3, ff wouldn't open pdf files on google search, tried web soln. get ff running can't run 2nd ff error, reboot, reloaded (12?) ff, HELP

    mac 10.7.3, intel dual proc, ff was running great but not opening pdf files from web pages (just opened new page and blank), found ff forum solutions to delete a file, found such file and deleted it, now ff shows error "ff running, can't run 2 ff at same time", rebooted several times, redownloaded ff several times, can't find any ff or mozilla files of any kind in activity monitor or HD, or any library, or in personal library etc,
    i think i have ff 12 now loaded, HELP, love ff, how to get it run again thanks

    Can you undelete the file you deleted?? Any idea what it was?
    Once you have your Firefox running again, try this recommendation from another thread:
    ''If using a Mac, go to the Firefox Plugins and disable the Adobe Acrobat NPAPI Plug-in, Version 10.1.3. This is a recent plugin update, and as soon as it was installed I noticed that PDFs wouldn't download.''
    ''Location: [Menu] Tools/Add-Ons/Plugins ''
    https://support.mozilla.org/en-US/questions/775819

  • Just updated to 8 & now I can't open any web pages & firefox is still running in the background after browser was closed. I uninstalled and reinstalled as well as disabled add-ons and plugins nothing has changed, can I downgrade back to on older version?

    Just updated to 8 & now I can not open any web pages as well as firefox will not close out, it still running in the background after browser was closed. I uninstalled and reinstalled as well as disabled add-ons and plugins nothing has changed, can I downgrade back to on older version?

    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    See "Firefox hangs when you quit it":
    *https://support.mozilla.com/kb/Firefox+hangs
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

Maybe you are looking for

  • Can't open new project or picture in Photoshop CS4 Extended

    Hello! I was trying to work on some pictures today on my mac OS X Yosemite 10.10 in my Ps CS4, but when I tried to open a new project I got this error message "Fatal error - missing component /Library/Application Support/Adobe/Adobe Version Cue CS4/C

  • Bubble chart title

    Hi, i want to split the title into 2 lines for Bubble chart in obiee 11g. how can i do that. Thanks

  • Work Order  - Update special stock indicator in components tab

    Hi , The requirement is to update the special stock indicator in the components tab of work order based on material number. I tried using the BADI Workorder_update but there was no changing parameter in it and hence it did not work, I also tried usin

  • Form 16A

    Hi experts I am using form 16A for FI..I got the new version of this Form 16A from SAP according to new tax changes made by govt of India. Now the problem i am facing is on page 3 there are two columns showing quarter and acknowledgement no. (under c

  • How to add text to an existing document?

    On my business cards sent to me from my company, they omitted the last digit of my zip code.  I am wanting to correct the zip and then save the file so I can send it to my printer.  How do I edit the last digit to my card and then save it?