How do I disable the Popup Blocker in Chrome?

How to disable the pop-up blocker in Chrome

When Google Chrome blocks a popups a small blue and white icon with a red “X”on is displayed in the far right side of the address bar.

If you click on this icon, you can see a list of the pop-ups blocked for that page. You can click on the items in this list to view them, and you can also select the box to “Always allow pop-ups” from the site you’re on (refresh for this change to take effect).

To disable the pop-up blocker entirely,

  • Launch Chrome
  • go to Tools > Options > Under the Hood > Content settings… > Pop-ups

This will entirely disable the popup blocker in Chrome

How do I disable the Popup Blocker in Firefox?

How to disable the FireFox popup blocker

You can add an exception for any site in FireFox when you get the yellow bar that says a popup has been blocked.

Alternatively, to completely disable the popup blocker:

  • Launch FireFox
  • go to Tools > Options > Content
  • Uncheck “Block pop-up windows”

This will completely disable the pop up blocker in FireFox.

How do I disable the Popup blocker in Internet Explorer?

How to disable Popup Blocker in Internex Explorer

Lets first try resetting all the security to default level for Internet explorer and check if that resolves the issue.

To do this follow the steps below:

  • Open Internet Explorer.
  • Click on Tools and then click on Internet Options.
  • Click on the security tab, then click on “Reset all zones to default level”.
  • Under the Privacy tab check if the turn on pop up blocker check box is checked, if it is checked uncheck it.
  • You can also add your favorite and trusted sites by clicking on “sites” under the privacy tab. Type the name of the web site and then click on allow.

If the steps above do not work, you may have to reset the Internet explorer, to do this follow the steps below:

http://support.microsoft.com/kb/936213

We hope this helps.

How to set the default PHP.INI timezone

Messages in error_log: Please use the date.timezone setting, PHP Strict Standards:  strtotime() [<a href=’function.strtotime’>function.strtotime</a>]: It is not safe to rely on the system’s timezone settings. Please use the date.timezone setting

The default timezone setting in your PHP.INI is not set.

Edit you PHP.INI using your favourite editor eg.

# vi /etc/php.ini

Change this:

[Date]
; Defines the default timezone used by the date functions
; date.timezone =

To this:

[Date]
; Defines the default timezone used by the date functions
date.timezone = "Europe/London"

This will resolve the problem.

How do I block the Baiduspider from crawling my site?

How can I stop the Baidu Spider using up my site resources?

Baidu is the most popular search engine in China. It can crawly your site twice as often as Google yet unless your site is in Mandarin, your site is unlikely to benefit from all that crawling.

If you have a busy forum or website with hundreds of pages you may find the the Baidu Spider starting to take up more of your site resources by indexing up to 90 pages every 15 minutes often leaving connections open or failing to close them properly.

You can easily disable the Baidu spider by placing the following in your .htaccess file:

BrowserMatchNoCase Baiduspider bad_bot
Deny from env=bad_bot

Using this method saves you the trouble of having to find blocks of Baidu IP addresses and block them individually.