Linux: Find files in all folders containing specific text

sshRe: Find files containing a specific string of text

Re: Show filenames in current and sub folders containing certain text

Often you will need to find the names and locations of files containing a particular text string, as you are also unsure of the folder you will want to search the entire directory structure starting from the current level. The following command will do the trick:

# find . | xargs grep -l "text" 2>/dev/null

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.