Can't leave comments on websites using FF4

I have just updated to FF-4 and suddenly find that I am unable to leave a comment on various websites. When I attempt to "post" the comment, a new blank tab opens and the comment is never posted.

The problem seems to be specific to blogs. I enter the required information in the comment fields, i.e., name, email, website, and comment--then hit the submit button. The site goes through refresh as if processing comment but comment doesn't appear. I have researched online and this appears to be a common problem when using iPads to leave comments on blogs. The only suggested solution has been to use Opera browser but it is extremely slow. Here are some examples of sites:
http://picky-palate.com/2014/06/16/cheesy-mediterranean-bacon-quesadilla/
http://www.recipegirl.com/2014/06/20/watermelon-gin-fizz
also, it doesn't make a difference if the site is mobile responsive.

Similar Messages

  • Can't leave comments on blogs using iPad

    I cannot comment on blogs using my iPad. Have tried Safari and Chrome. Found a suggestion to try Opera but it is so slow it won't even load the sites. Any suggestions?

    The problem seems to be specific to blogs. I enter the required information in the comment fields, i.e., name, email, website, and comment--then hit the submit button. The site goes through refresh as if processing comment but comment doesn't appear. I have researched online and this appears to be a common problem when using iPads to leave comments on blogs. The only suggested solution has been to use Opera browser but it is extremely slow. Here are some examples of sites:
    http://picky-palate.com/2014/06/16/cheesy-mediterranean-bacon-quesadilla/
    http://www.recipegirl.com/2014/06/20/watermelon-gin-fizz
    also, it doesn't make a difference if the site is mobile responsive.

  • I can't leave comments on embedded pages on Blogger.

    When using Firefox, I cannot leave comments on embedded pages on Blogger. It won't let me use my Google account or openID. This is ONLY happening in Firefox. It also won't acknowledge that I'm logged into my blog when I need to do embedded editing, but continuously bounces me back to my dashboard. This is NOT a blogger problem. Again, it is only happening in Firefox.
    Other pages where I'm having problems is when I'm asked if I want to sign into a page using an existing account like my Facebook account. Firefox just won't keep the information long enough to allow a connection. ALL other sites, passwords, and cookies appear to be working.
    I've cleared out cookies, caches, updated Facebook, etc. I don't know what else to try.

    The way I get around it is to view it in IE tab. You can dl from mozilla. https://addons.mozilla.org/en-US/firefox/addon/92382/

  • PC users can't leave comments on my blog.

    Mac users can leave comments without an issue. PC users get to the comment screen, type the captcha, and nothing happens. Have tried it myself on 2 PCs and had same issue. Any advice?

    Welcome to the discussions. If you'd prefer not to wait for possible suggestions here, MobileMe live chat support is now 24/7 — see this announcement.

  • Can't get to some websites using Wireless card ?

    Can soneone using a MacBook Pro 15" see if they can get to these 2 websites while using the wireless card in WINXP.
    www.ntius.com
    www.olofsson.info
    I can get to both sites in OSX using the wireless card but not in XP. I can also get to both sites using the network card. I think its probably a driver issue but would like somone to try it also. Thanks.

    Hey, pizzapie22!
    In my experience with NoScript, sometimes even if you allow the main site to load JS, some blocked scripts from different domains prevent content from loading.
    Does your NoScript icon have a smaller "No" symbol in its lower-right corner? If it does you may have to allow additional scripts.
    Does this help?

  • How can i login to a website using java

    hi,
    i tried to write a java program to which will take username and password and login to a given site. but some how its not working. i am actually trying to login to the follwoing website:
    https://roundup.ffmpeg.org/roundup/ffmpeg/
    can anyone provide some example program to login to this website.
    br
    mahbubul-syeed

    Hi,
    i am really sorry... but i am new in this forum and i did not know this. here is my code that i have written. it did not show any error and displays the content of the page but did not logged in. please give your comment.. i badly need a solution.
    package myUtility_files;
    import java.net.*;
    import java.io.*;
    public class LogInByHttpPost {
         //private static final String POST_CONTENT_TYPE = "application/x-www-form-urlencoded";
    private static final String LOGIN_ACTION_NAME = "submit";
    private static final String LOGIN_USER_NAME_PARAMETER_NAME = "__login_name";
    private static final String LOGIN_PASSWORD_PARAMETER_NAME = "__login_password";
    private static final String LOGIN_USER_NAME = "mahbubul";
    private static final String LOGIN_PASSWORD = "mahbubul007";
    private static final String TARGET_URL = "http://roundup.ffmpeg.org/roundup/ffmpeg/";
    public static void main (String args[])
    LogInByHttpPost httpUrlBasicAuthentication = new LogInByHttpPost();
    httpUrlBasicAuthentication.httpPostLogin();
    public void httpPostLogin ()
    try
    // Prepare the content to be written
    // throws UnsupportedEncodingException
    String urlEncodedContent = preparePostContent(LOGIN_USER_NAME, LOGIN_PASSWORD);
    HttpURLConnection urlConnection = doHttpPost(TARGET_URL, urlEncodedContent);
    //String response = readResponse(urlConnection);
    System.out.println("Successfully made the HTPP POST.");
    //System.out.println("Recevied response is: '/n" + response + "'");
    BufferedReader in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
                   String inputLine;
                   while ((inputLine = in.readLine()) != null)
                        System.out.println(inputLine);
    catch(IOException ioException)
         ioException.printStackTrace();
    System.out.println("Problems encounterd.");
    private String preparePostContent(String loginUserName, String loginPassword) throws UnsupportedEncodingException
    // Encode the user name and password to UTF-8 encoding standard
    // throws UnsupportedEncodingException
    String encodedLoginUserName = URLEncoder.encode(loginUserName, "UTF-8");
    String encodedLoginPassword = URLEncoder.encode(loginPassword, "UTF-8");
    String content = "login=" + LOGIN_ACTION_NAME +" &" + LOGIN_USER_NAME_PARAMETER_NAME +"="
    + encodedLoginUserName + "&" + LOGIN_PASSWORD_PARAMETER_NAME + "=" + encodedLoginPassword;
    return content;
    public HttpURLConnection doHttpPost(String targetUrl, String content) throws IOException
    HttpURLConnection urlConnection = null;
    DataOutputStream dataOutputStream = null;
    try
    // Open a connection to the target URL
    // throws IOException
    urlConnection = (HttpURLConnection)(new URL(targetUrl).openConnection());
    // Specifying that we intend to use this connection for input
    urlConnection.setDoInput(true);
    // Specifying that we intend to use this connection for output
    urlConnection.setDoOutput(true);
    // Specifying the content type of our post
    //urlConnection.setRequestProperty("Content-Type", POST_CONTENT_TYPE);
    // Specifying the method of HTTP request which is POST
    // throws ProtocolException
    urlConnection.setRequestMethod("POST");
    // Prepare an output stream for writing data to the HTTP connection
    // throws IOException
    dataOutputStream = new DataOutputStream(urlConnection.getOutputStream());
    // throws IOException
    dataOutputStream.writeBytes(content);
    dataOutputStream.flush();
    dataOutputStream.close();
    return urlConnection;
    catch(IOException ioException)
    System.out.println("I/O problems while trying to do a HTTP post.");
    ioException.printStackTrace();
    // Good practice: clean up the connections and streams
    // to free up any resources if possible
    if (dataOutputStream != null)
    try
    dataOutputStream.close();
    catch(Throwable ignore)
    // Cannot do anything about problems while
    // trying to clean up. Just ignore
    if (urlConnection != null)
    urlConnection.disconnect();
    // throw the exception so that the caller is aware that
    // there was some problems
    throw ioException;
    br
    mahbubul-syeed
    Edited by: mahbubul-syeed on Jun 11, 2009 5:07 AM

  • Can't get to any websites using Mozilla Firefox with Windows XP

    Have installed NoScript and use the icon to allow the individual websites, but I still get the "JavaScript required" notice. If I look with the icon, the website is allowed. Can't reach my Verizon DSL email nor Facebook.

    Hey, pizzapie22!
    In my experience with NoScript, sometimes even if you allow the main site to load JS, some blocked scripts from different domains prevent content from loading.
    Does your NoScript icon have a smaller "No" symbol in its lower-right corner? If it does you may have to allow additional scripts.
    Does this help?

  • Can you edit a Coldfusion website using Kompozer

    OK so I have never used Coldfusion before but want to amend some text on a website which is Coldfusion based - can I do this using Kompozer or do I need the Coldfusion software itself, or is there another free alternative I can use?

    ColdFusion is both an application server and a language CFML.
    You can edit CFML files with any text editor, Dreamweaver, Bolt, and CFEclipse are three popular choices.  But one can use notepad or VI if one wants to.
    To run the CFML pages, you need an server running the ColdFusion applicaiton server.  If you are working on an existing site, then that site must be running the ColdFusion server.  If you would like one set up on your workstation, the developer version is free and can be downloaded from www.coldfusion.com.

  • How can I query a https website used to display the status of an application using Powershell?

    Need assistance on querying the status of an application using Powershell. The status of the application is displayed in a https website. I want to receive a notification when one of the listed applications fails.
    Below is an example the failures I need to capture.
    h-t-t-p-::://xpps2.xxcom/ssol/sSOLStatus.asp?autorun
    SSOL Status
    Current App Server: xpps2.xx.com
    SQL Server Details: 
    SSS_MyAccount DB Connection: PASS
    SSS_MyAccount DB Query: PASS
    CAGWEB DB Connection: FAIL - Unable to Connect
    CAGWEB DB Query: FAIL - Pay location not found
    DB2 Server Details:
    DB2 D Connection: PASS
    DB2 Q Query: FAIL -Acct not found
    DB2 X Query: PASS
    DB2 N Query: PASS
    DB2 S Query: PASS
    DB2 K Query: PASS
    DB2 I Query: PASS
    Mitem Server Details:
    MITEM server: MITEMP2
    MITEM Total Devices: 10
    MITEM Devices Lines Up: 10
    MITEM Devices Logged In: 10
    MITEM Devices In Use: 0
    Mitem Server Status: PASS
    Web Service Details:
    SAW Web Service Status: FAIL
    Maximo Vizcaino

    thats where you are going to check what it is supposed to be.
    lets say your page shows as SSOL Status : running  you
    probably want to use "if($totalstrng.ToLower().contains("ssqlL status
    : running"))". its
    checking if the html page contains the string you are looking for.
    you might want to print $totalstrng
    and see what you need to look for.
    usign XMLHttp
    or XML object  as mentioned by JRV might be easier and faster way.

  • I can't get to any websites using Firefox or IE but AOL works fine.

    When I open Firefox or IE, the home pages are fine but then both just hang without loading any websites. Both just show the progress wheel circling. Sometimes clockwise green and sometimes counter clockwise gray. No issues with AOL. Problem started a couple of days ago after a scheduled computer update. Before that, I would get messages on Firefox that shockwave plugin and/or java plugins stopped working or crashed but would still be able to access sites like ebay. I've repeatedly uninstalled and reinstalled Firefox which would work for briefly and then revert back to nothing happening. Repeatedly restarting the computer would allow both browsers to access a site or two and then they would freeze. Ran a full scan on Norton with no problems or malware discovered. Updated Java and I've also checked to see that there was no problem with the firewall and also reset the winsock. Help?

    There are two things to check.
    *1
    Network Proxy
    Type '''about:preferences'''<Enter> in the address bar.
    Select '''Advanced > Network.'''
    Look for '''Configure How Firefox Connects''' and press the '''Settings''' button.
    Check the settings.
    *2
    Some problems occurs when your Internet security program was set
    to trust the previous version of Firefox, but no longer recognizes your
    updated version as trusted. Now how to fix the problem: To allow
    Firefox to connect to the Internet again;
    * Make sure your Internet security software is up-to-date (i.e. you are running the latest version).
    * Remove Firefox from your program's list of trusted or recognized programs. For detailed instructions, see
    '''[https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet.]''' {web link}

  • Can I edit an existing website using the trial version?

    Somebody else created a website, and I would like to go back and edit it. Can I do this without knowing where it's saved as well?

    You need a username and password to edit the site. Enter http:///yoursitedomain.com/admin in any browser to access the admin panel. Technically you don't need to know where the files are saved as long as you stay within the administration.
    Nicole - BCGurus.com   |  http://bcgurus.com/Business-Catalyst-Templates for only $7

  • How can I make an updatable website using Adobe?

    Hello,
    I am looking to create a website to host my YouTube videos, photographs, other information and a blog, and possibly an online store in the future. I don't know where to begin with this because I'm not sure how easy websites are to update once they have been uploaded (unless you use an online website maker).
    Could someone please advise me on what software I should use (I have created a business website for someone using Muse in the past but it doesn't need regular updating), and also how I should have the website hosted?
    Many thanks,
    Ryan

    Ask in the iWorks forum here:
    https://discussions.apple.com/community/iwork

  • Since I have received my last update (ver. 3.6.13) from Firefox I am unable to leave comments on Fox News. What is the problem?

    I read many blogs and news sources and I leave comments. I used to be able to leave comments on Fox News. Now when I press the button to leave a comment nothing happens and the box to leave a comment in does not pop up.

    Apparently TalkTalk mail will work with Firefox 4 and Firefox 5 ''if'' you set the browser to ''lie'' to TalkTalk mail by saying that you are still using version 3.6.
    You can find the instructions for that in a post on the TalkTalk forums: [http://www.talktalk.co.uk/forums/showthread.php?t=185113#post2452787 Firefox 4 & TalkTalk webmail - Forums].
    Note: when you open about:config the first time, it will display a warning message that you should be careful with the changes you make. That's definitely good to bear in mind.
    Does it work?

  • Read Cell Comments in binding using Office.js

    Hi All,
    I am building an Excel Visualizations App. I would like to create an option of adding comments into the visualization. How can I read comment in Cells using the Office.js.
    Regards
    BZ

    Hi BZ,
    Thanks for posting in MSDN fourm.
    Based on the description, you want to hand the comment in apps for Office.
    As far as I know, there is two ways to read and set the content in Office. The first is via the document object to read/set the content from selection. The second is using Binding object to read/set the contents for binding object.
    If you want apps for Office to support read/set comment, I suggest that you submit the feedback from link below:
    Customer
    Feedback for the Office Developer Platform
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I'm trying to access an uncompleted app. on a gov't website using Safari 5.1. I receive a message saying the browser is incompatible with the website. It has been suggested that use Safari 5.0 instead. Must I delete 5.1 first, or can I have both browsers

    I'm trying to access an uncompleted app. on a gov't website using Safari5.1 I receive a message saying the browser is incompatible. I have been advised to use Safari 5.0. Must I delete 5.1 or can I use both browsers on my Mac.

    As above, there is more to Safari than just the App, however I dont like the changes in 5.1, so restored the 5.0 version of just the App and it functions just like it used to
    It might not work for you, and it can just be deleted if it doesn't, not sure how easy it is without time machine
    go into Finder and Applications folder
    enter time machine (it will default to app folder)
    find a date that you had 5.0
    click to restore it (Do Not restore into original location, restore it to desktop to test it)
    When this has been done, run Safari from your desktop and see if it fixes your issue
    I have been using this version done like this for a couple of weeks and it is fine, I did copy it to the Application\Utitlities folder along with some other older software I have, then made this one the version on my dock
    If it doesn't make any difference just delete Safari.app from your desktop

Maybe you are looking for