rt-server.fcgi incomplete headers

Check your apache error log file in my case error_log.
after checking the error log file i saw this :
“File::Temp version 0.18 required–this is only version 0.16”

So I had to install :

cpan -i File::temp

then another error about Sys::Syslog
so i had to install:

cpan -i Sys::Syslog

Error: Could not find or load main class HelloWorld

So you just downloaded the ubiquitous Java HelloWorld and you run java HelloWord after you compile it of course with “javac HelloWorld.java” and you are presented with this error message :

Error: Could not find or load main class HelloWorld

Cause: Apparently the folder that you are running the java application from, needs to be in your CLASSPATH (does not quite make sense) but i will be looking for a better explanation.

SOLUTION #1

Add ":." to your CLASSPATH (Dont use the double quotes)

Or

SOLUTION #2

java -cp . HelloWorld

Remeber the dot(.) refers to the current directory.

How to Search Content In the Drupal Administration Back-end?

If you have zillion contents in Drupal and paging is not really useful to locate a particular piece of content, you will need to download and install the “Administration Views” module:

This module replaces the  administration content page with a standard view that you can use to do your own filtering.

1. Install the Views Bulk Operations (VBO) module (The adminstration modules depends on it)
https://drupal.org/project/views_bulk_operations

2. Install the Adminstration Views module
https://drupal.org/project/admin_views

BEFORE

drupal default content search

AFTER

drupal7 administration content search