Advanced Search
Search Results
11 total results found
Lucene
Lucene – Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java. http://lucene.apache.org/java/docs/
Security Testing your Apache Configuration with Nikto
Is your Apache configuration secure? This is a helpful article to help you find out.http://www.howtoforge.org/apache_security_testing_with_nikto
Setting REMOTE_USER Apache variable in scripts
REMOTE_USER is an Apache server variable that is sometimes set on web pages. It is useful for identifying users who log in, since it can be stored in the Apache logs. It’s similar to session variables, but it’s not as easy to change.In modperl, the simplest wa...
How do I use cURL in PHP on Windows?
To configure cURL to be able to run in PHP uncomment this line (remove the semi-colon) in the php.ini file: ;extension=php_curl.dllApparently in UNIX systems Apache will read cURL’s curl-ca-bundle.crt file at startup and cURL will be able to use that informat...
Apache 2 Virtual Hosts File
To find the home directory (DocumentRoot) of a virtual host’s directory on an Apache 2 server, use the command less /usr/local/apache2/conf/extra/httpd-vhosts.conf to read the virtual host config file of Apache, and then search for the hostname to find the hom...
"Requested URL not found" when using Apache with mod_alias and mod_rewrite
Problem: My web server is Apache. When I try to load a web page, I get an error message that says “The requested URL /some/file/on/the/server was not found on this server”. However, /some/file/on/the/server does exist in the server’s filesystem. What is going ...
Suspendable Requests for LAMP systems?
The traditional way of handling dynamically-generated Web content is to have the Web server use multiple threads, even keeping a thread pool. Then whatever program that generates the content acts as quickly as possible. As long as there are a lot of threads, t...
SSL Configuration Generator
This Mozilla tool helps sysadmins properly configure openSSL for various platforms.https://mozilla.github.io/server-side-tls/ssl-config-generator/
Shibboleth Apache Multiple Virtual Host Configuration (using Moodle as an example)
About Below are steps to configure a shibboleth SP to work with multiple Apache virtual hosts using a single entityID and an Assertion Consumer Service (ACS) and shibboleth’s NativeSPApplicationOverride. More information can be found here regarding NativeSPAp...
Apache log shell scripts
Return count of timestamps with most error logs. A couple years ago an app error_log reported about 16000 errors within a few seconds. After fixing it, we wanted to sort by number of errors per second. This does that. The first column is the count. cat /logs...
What's an easy way to set up a WAMP test environment?
Many popular Content Management Systems (CMS) run in a php/mysql environment. Their dynamic nature makes traditional develop on workstation and upload less useful, and editing live on the server is not always desirable. Luckily there are straightforward ways...