CartMetrix - Do you know yours?

12/28/2006

More Apache 2.2 Mod_Auth_MySQL Issues

I have found some configurations of Apache 2.2 with Mod_auth_mysql producing other 500 errors. The error log shows:

Internal error: pcfg_openfile() called with NULL filename

In Apache 2.2, the mod_auth_basic module may be the authoritative access module by default. To use Mod_auth_mysql add the following line as shown below in your Mod_auth_mysql configurations in httpd.conf or .htaccess files.

Before:

AuthMySQLEnabled on

After:

AuthBasicAuthoritative Off
AuthMySQLEnabled on

Popularity: 14%

Argument list too long - Workarounds

Trying to clean out my SPAM folder:

[root@atlas cur]# rm -f *
-bash: /bin/rm: Argument list too long

Try this:

for x in *; do rm -f $x; done

Or:

find . -name '*' -print0 | xargs -0 rm

Popularity: 16%

12/15/2006

Hack to Open Popup Pages in Main Window

I hate popups and links that open in a new window. I can control where I want windows to open. If I want a new window or tab, I’ll use the appropriate key combinations when clicking the link.

If a window opens in a popup without a menu bar or url bar, hit Apple + T to force a new tab in the popup window. Then you can click and hold on the first tab and drag it to the tab bar of a full window to get the page to open in a window with a menu and url bar.

Popularity: 30%

12/14/2006

Deportment

n.
A manner of personal conduct; behavior.

Popularity: 16%

12/6/2006

Perl Search and Replace

perl -pi -e "s/SEARCH/REPLACE/" FILES

Example (from Awstats configuration):

perl -pi -e "s/AllowToUpdateStatsFromBrowser=0/AllowToUpdateStatsFromBrowser=1/" *.conf

If SEARCH is a file path, make sure and not beat your head for an hour. Escape the path breaks ('/') or change the regep delimiters (ex. '|'):

perl -pi -e "s|SEARCH|REPLACE|" FILES

Popularity: 12%

Somnambulist

  • a person who engages in somnambulism (sleepwalking)
  • a term used in hypnosis to indicate someone of high enough suggestibility to follow suggestions without the need for a formal trance

Popularity: 15%

Next Page »


damonparker.org is proudly powered by WordPress
Entries (RSS) and Comments (RSS).

copyright © 2002-2008 damonparker.org. all rights reserved.

Close
E-mail It