<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://ndchost.com/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title> - apache</title>
        <description></description>
        <link>https://ndchost.com/wiki/</link>
        <lastBuildDate>Mon, 13 Apr 2026 12:03:48 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://ndchost.com/wiki/_media/wiki/logo.png</url>
            <title></title>
            <link>https://ndchost.com/wiki/</link>
        </image>
        <item>
            <title>Compiling PHP on CentOS 5 (64bit) with MySQL Support</title>
            <link>https://ndchost.com/wiki/apache/building-php-with-mysql-on-centos-5-64bit?rev=1305330720&amp;do=diff</link>
            <description>Compiling PHP on CentOS 5 (64bit) with MySQL Support

If you try to build PHP 5.x.x on a 64bit CentOS install you may get this error:



Looking further into the config.log you will also see:



First things first, if you installed MySQL using yum you should make sure that you have the mysql-devel rpms installed.  You can ensure they are installed by running the following command:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 13 May 2011 23:52:00 +0000</pubDate>
        </item>
        <item>
            <title>How to Fix the SEC_ERROR_OCSP_TRY_SERVER_LATER in Firefox</title>
            <link>https://ndchost.com/wiki/apache/fix-error-ocsp-try-server-later-in-firefox?rev=1481837532&amp;do=diff</link>
            <description>How to Fix the SEC_ERROR_OCSP_TRY_SERVER_LATER in Firefox

On a new cPanel server using SSL, occasionally you may see the following error:



SEC_ERROR_OCSP_TRY_SERVER_LATER



This can be fixed by adding two lines into the server's apache configuration.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 15 Dec 2016 21:32:12 +0000</pubDate>
        </item>
        <item>
            <title>Apache Webserver</title>
            <link>https://ndchost.com/wiki/apache/index?rev=1277247850&amp;do=diff</link>
            <description>Apache Webserver
apache index</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 22 Jun 2010 23:04:10 +0000</pubDate>
        </item>
        <item>
            <title>How to Install Apache 2.2.x and PHP 5.3.x on CentOS 5</title>
            <link>https://ndchost.com/wiki/apache/install-apache-php-on-centos?rev=1314296322&amp;do=diff</link>
            <description>How to Install Apache 2.2.x and PHP 5.3.x on CentOS 5

This guide assumes you have a minimal CentOS installation and are not planning on running a control panel such as cPanel, which installs the Apache webserver for you. Some of the software versions listed below may need to be changed as they are updated. As of the writing of this article, Apache 2.2.16 and</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 25 Aug 2011 18:18:42 +0000</pubDate>
        </item>
        <item>
            <title>Load Testing with Apache JMeter</title>
            <link>https://ndchost.com/wiki/apache/load-testing-with-apache-jmeter?rev=1436459642&amp;do=diff</link>
            <description>Load Testing with Apache JMeter

Apache JMeter can help to give an idea of how a server will perform when under very high load. 

Installation (Windows)

Install the latest version of Java

Next, download Apache JMeter

After unzipping the files, you'll go into the Apache JMeter directory</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 09 Jul 2015 16:34:02 +0000</pubDate>
        </item>
        <item>
            <title>Putting your Site into Maintenance Mode</title>
            <link>https://ndchost.com/wiki/apache/maintenance-redirect?rev=1305331124&amp;do=diff</link>
            <description>Putting your Site into Maintenance Mode

There are times when you want to disable access to your site.  You could simply add a 'deny from all' to your .htaccess page but this gives the end user a ugly forbidden page and makes your site look broken.  A better option is to create a nice looking page that explains to the user that your site is under going maintenance and will be back online shortly.  You can do this easily if your web server supports mod_rewrite (most do) using the following instru…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 13 May 2011 23:58:44 +0000</pubDate>
        </item>
        <item>
            <title>Installing mod_python for Apache under cPanel</title>
            <link>https://ndchost.com/wiki/apache/mod_python-with-cpanel?rev=1306967547&amp;do=diff</link>
            <description>Installing mod_python for Apache under cPanel

To begin, let's grab the latest version of mod_python. We will need to get the SVN version of mod_python as the last previous versioned release has a problem compiling on RHEL5-based systems. Since cPanel servers do not come with Subversion installed by default, we'll need to satisfy that pre-requisite first. Due to cPanel building</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 01 Jun 2011 22:32:27 +0000</pubDate>
        </item>
        <item>
            <title>How to redirect HTTP traffic to HTTPS using an .htaccess file</title>
            <link>https://ndchost.com/wiki/apache/redirect-http-to-https?rev=1556840583&amp;do=diff</link>
            <description>How to redirect HTTP traffic to HTTPS using an .htaccess file

The below code when added to an .htaccess file will automatically redirect any traffic destined for http: to https:



&lt;IfModule mod_rewrite.c&gt;
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
&lt;/IfModule&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 02 May 2019 23:43:03 +0000</pubDate>
        </item>
        <item>
            <title>Redirect non-www Traffic to www Using mod_rewrite</title>
            <link>https://ndchost.com/wiki/apache/redirect-non-www-to-www?rev=1567798035&amp;do=diff</link>
            <description>Redirect non-www Traffic to www Using mod_rewrite

This is an example using the mod_rewrite Apache module to force all traffic to your site to www.yourdomain.com. This can be useful in an SSL context, as well as for SEO purposes. Create a .htaccess file in your webroot (public_html for cPanel servers) and add the following lines:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 06 Sep 2019 19:27:15 +0000</pubDate>
        </item>
        <item>
            <title>How to Stress Test an Apache Server using AB (Apache Benchmark)</title>
            <link>https://ndchost.com/wiki/apache/stress-testing-with-apache-benchmark?rev=1417815579&amp;do=diff</link>
            <description>How to Stress Test an Apache Server using AB (Apache Benchmark)

Using a benchmarking tool to test the limits of your apache server will help you prepare for upgrades.







Installing AB on CentOS (with cPanel)

cPanel adds in an exclusion for all packages named httpd* (any files starting with httpd) to prevent accidentally overwriting apache.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 05 Dec 2014 21:39:39 +0000</pubDate>
        </item>
    </channel>
</rss>
