It's so weird I can't turn off safe search for Google in new version of Firefox?

I was able to turn off the Google safe search in old version but in new version I can’t. I tried IE and I can turn off safe search. I don’t know what is wrong and it’s so weird. When I go to the page of safe search setting it shows and says (Turn on safesearch to filter sexually explicit content from your search results.) but the safe search is on already. Please somebody say something I am driving out of my mind. And the stupid thing is that I have to use IE for searching and use Firefox for other stuffs.

The problem is not Firefox - it's Google. They have changed the safesearch options.
The way round it is to add the word 'nude' or similar to your keywords. Then you'll get taken to an 'are you sure' type option before finally showing you your results.
More on these websites:
http://thenextweb.com/google/2012/12/12/google-changes-search-image-safesearch-explicit/
http://www.webpronews.com/google-preventing-u-s-users-from-disabling-safesearch-2012-12

Similar Messages

  • Can't turn off "Full Justification" for Isaacson's book "Steve Jobs"

    On my iPod Touch 2G (iOS 4.2.1-latest for this iPod), I can NOT turn off "Full Justification" for Isaacson's book "Steve Jobs". Other books obey the setting. Anyone else have this problem?
    Suggestions?

    Alternatively:
    In Settings/General, scroll down to find iBooks in the left-hand side. You can turn off Full Justification in the options area (as well as Auto-hyphenation).

  • HT201365 I like the additional security features but don 't want to type in a password every time I use my phone.  How can I turn off the requirement for a password but leave "Find my Phone" active?

    I like the additional security features but don 't want to type in a password every time I use my phone.  How can I turn off the requirement for a password but leave "Find my Phone" active?

    Settings>General>Passcode Lock...enter your passcode, then: Turn Passcode Off.

  • How can I turn off auto-renewal for subscriptions? I have been in the manage my account but I can't see any other option than to auto-renew?

    how can I turn off auto-renewal for subscriptions? I have been in the manage my account but I can't see any other option than to auto-renew?

    Follow the instructions in this article. You can turn off the auto-renewal on either your i-device or via iTunes on your computer:
    Manage your auto-renewing subscriptions - Apple Support
    Cheers,
    GB

  • How can you turn off the sounds for receiving a text or e-mail while on a phone call???

    How can you turn off the sounds for receiving a text or e-mail while on a phone call???

    That's the most stupid thing. It may work but the phone shouldn't be going off in your ear while in use from the start.
    Message was edited by: Ford Truck

  • How can I turn off the ringtone for a contact?

    How can I turn off the ringtone for a contact on my iphone 5c?

    krwspike wrote:
    I purchased IPhone silent ringtone
    I've found silent ringtones well worth the investment.

  • HT3529 I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    Hey there fwhitson,
    It sounds like you no longer have your phone but need to unlink your phone number from the iMessages service. According to this article, this is what you do:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Note: If you no longer have access to the iPhone that is using the number you want to remove, reset your Apple ID password.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Can I turn off the monitor for Mac Mini and use it as a music server?

    I am in the process of upgrading my PC most likely to a Mac product. With the non-server version of Mac OS X, can I turn off the monitor connected to a Mac Mini and use it as a streaming server? Or I have to get the server version of OS X to do that?

    I plan to run Logitech Media Server on the Mac to stream music to players. Each player interacts with the Logitech Media Server to select songs to stream. When I turn on a player, it will wake up the computer from the sleep mode.
    Currently, this Logitech Media Server runs on a Windows Vista machine and it will keep the PC from entering sleep mode while playing the songs. After I play the last song, the PC will start the idle count down and then enter into sleep mode.
    Do you see any problem with my intended use of a Mac Mini?

  • HT204019 Can I turn off the ringtone for one contact only?

    Is it possible to turn off the ringtone for one contact only? The block feature won't work because I still want to be able to receive voice messages from this particular contact.

    You can assign a silent ringtone to that one person. Google to find such a ringtone, sync it to the phone, assign the custom ringtone to this person and when they call, the phone will appear not to ring.

  • Can I turn off home sharing for other computers from my own?

    I recently got a new computer and would like to add my music library to it.  When I try to enable home sharing a message pops up stating that I already have 5 computers on my home sharing network.  I don't have all of the 5 computers because some have broken and so my question is that, is there any way for me to turn off home sharing for those computers from my own?

    No such thing is possible via iTunes.
    What is possible is deathorizing all computers and then authorize only the one's that you have access to.
    About Authorization and De-Authorization

  • Can i turn off email alerts for find my iphone

    How do you turn off email alerts for find my iphone?

    There is no way to turn it off, just reduce it. It is a new security feature. It depends on where you are logging in that is generating the email. If you are logging in from a computer browser, if you have cookies on, it should not generate the email except for the first time that you use that device. If it is from logging in to the Find My iPhone app on the iPhone or iPad, if you have a passcode lock set on the device, it will not generate the email, as you will not be logged out of the app on the phone. You just use the home button to get past the app and it stays logged in by not tracking. You open the app again and it will just take you right in without having the log in and will refresh itself.

  • How can I turn off auto-capitalization for Mail in Mountain Lion?

    How can I keep mail.app from capitalizing the first letter of sentences?  I have turned off auto-correct both at the system level and in Mail, and yet I cannot seem to keep Mail from capitalizing the first letter?

    Thanks - this helped me track it down - some Textexpander setting apparently got switched when I updated.

  • JPA -- How can I turn off the caching for an entity?

    Hi,
    I have a problem that I will illustrate with a simplified example. I have created an entity:
    @Entity(name="Customer")
    @Table(name="CUSTOMERS")
    public class Customer implements Serializable {
    }I have also set the collowing properties in persistence.xml:
    <property name="toplink.cache.type.default" value="NONE"/>
    <property name="toplink.cache.size.default" value="0"/>
    <property name="toplink.cache.type.Customer" value="NONE"/>
    <property name="toplink.cache.size.Customer" value="0"/>
    <property name="toplink.cache.shared.Customer" value="false"/>And then I run the following code:
    Customer cust = em.find(Customer.class, 1L);
    System.out.println(cust);
    cust = em.find(Customer.class, 1L);
    System.out.println(cust);The problem: the second call to em.find does NOT generate a query to the database. Here's a fragment from the console log:
    [TopLink Fine]: 2007.05.11 02:55:05.656--ServerSession(2030438)--Connection(5858953)--Thread(Thread[Main Thread,5,main])--SELECT ID, SEX, NAME, MANAGER FROM CUSTOMERS WHERE (ID = ?)
         bind => [1]
    Customer: id=1, name=Customer #1, sex=MALE
    Customer: id=1, name=Customer #1, sex=MALECan anyone help me? Why isn't the caching turned off? I tried various combinations of properties. Nothing worked. I was expecting to see two queries to the database. I can see only one.
    I tried with TopLink Essentials Version 2 Build 39 and Version 2 Build 41.
    Best regards,
    Bisser

    The cache is likely turned off, but you can't tell because you are using the same transactional EntityManager instance for the two queries. The EntityManager requires its own cache for object identity and transactional purposes, as once you read an object in through the EM, the spec requires that all subsequent reads return the same instance. Only the EntityManager refresh will cause a refresh, that or setting your queries to use the toplink.refresh and toplink.cache-usage query hints.
    I would strongly recommend you use a query cache for performance, but there are of course reasons why one might not be the best option.
    http://weblogs.java.net/blog/guruwons/archive/2006/09/understanding_t.html
    is a good blog on understanding the caching used In TopLin Essentials.
    Best Regards,
    Chris

  • Can't turn off data roaming for my Samsung mini

    I am traveling in Germany and when I arrived I was able to select no data roaming for my trip, but now it has reactivated and I can't turn it off. Any ideas?

        I sure hope that this is not impacting your trip while in Germany! There is the option to turn of Mobile Data altogether: Settings>More Settings>Mobile Networks>Mobile Data (OFF) if the phone will not allow you to "Deny data roaming access". Once you have landed in the United States, you will want to turn Mobile Data ON. Keep us updated!
    SandyS_VZW
    Follow us on Twitter @Vzwsupport

  • How can i turn off internet access for itunes

    Every time i turn on itunes it asks for my internet username and password. If I cancel the request it pops up again after a few seconds and will continue to pop up, even if I put my name and password in.
    This becomes very frustrating when I don't want to use the internet or I don't have a connection. How can I turn this off?

    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases - http://support.apple.com/kb/ts1389

Maybe you are looking for

  • How to format individual series in stacked bar chart

    Hi, Is there any way I can format (sort order, or transperency) of each series individually in a horizontal stacked bar chart? I am trying to create a gantt chart, where I am using two series 1. Start Date 2. Duration The function of series one (Star

  • Home Environmen​t - How to set up Update Retriever (UR) and Thin Installer (TI) in a home environmen​t

    Serenityvalley wrote: You need to go to This Page and download just about everything on it -espeically the  System Update Deployment Guide and start reading.  It'll take you a few hours to learn what you need to do and implement it if you are familar

  • How To Deploy Application In Oracle Application Server

    Hi All, We have devloped an application in whic we have used tomcat server . Now we want to deploy that application in Oracle application server. technolgy used: J2ee : Shark work flowserver database:Oracle(XE) Platform: windows XP IDE:Eclipse (ganym

  • Lumia 1520 - poor 5GHz Wi-Fi performance

    Hi I am getting much slower than expected Wi-Fi performance with my Lumia 1520. With my Asus RT-AC66u (Broadcom 802.11ac chipset) on 5 GHz band, I typically get only 10-15 Mbps throughput (downlink or uplink) on Speedtest, whereas with Nexus 5 (exact

  • Help with SEO recommendation re duplicate home page content

    Hi, my client has had an SEO expert provide them with a document outlining the improvements that can be made to their site to improve SEO. One of the most important items is re Duplicate Home Page content. They have asked that I: 1. Perform a 301 re-