Category: Web

Apache (16)
GlassFish (0)
HAProxy (2)
IIS (20)
Nginx (55)
Other (4)
Tomcat (17)

How to Configure PHP 5.x (CGI Mode) on IIS7

1. Ensure the CGI feature under IIS 7 Application Development Features is enabled.
2. Install the PHP Manager module by downloading the version matching your system. IIS 7.5 introduces a new PHP extension module. Download link: http://phpmanager.codeplex.com/releases/view/69115 …

Nginx Load Balancing Configuration Examples and Guide

Let’s start with a brief overview of what load balancing is. Taken literally, the term means distributing the load evenly across N servers so that no single server is overwhelmed and crashes while another sits idle. The prerequisite for load balancing, then, is having multiple servers to implement it, which means …

How to Fix IIS 7.0 Upload File Size Limit

In Windows 7 (IIS 7.5), Windows Server 2008 (IIS 7.0), and Windows Server 2003 (IIS 6.0), the default settings are particularly strict and secure, minimizing potential attacks caused by previously overly lenient timeouts and limits.

Specifies the allowed size of the entity body in an ASP request as 200,000 (II …

How to Fix the convlog.exe Copy Error When Installing IIS

IIS had some issues, so I reinstalled it. During the IIS installation, it kept prompting that the convlog.exe file could not be copied.

This is caused by corruption in the system’s internal database. Repairing the damaged data files will allow the installation to proceed normally.

The solution is as follows (Start > Run > type CMD > then enter the following com…

Apache Rewrite Rule Configuration Guide

1. Check Whether Apache Supports mod_rewrite
Use the phpinfo() function provided by PHP to view the environment configuration. Press Ctrl+F and search for “Loaded Modules,” which lists all modules enabled by the apache2handler. If it includes “mod_rewr …

How to Configure Custom MIME Types for FLV Support

Configuring your web server to support FLV is actually very simple — you just need to define a custom MIME type. Most virtual hosting control panels include this option.
Custom MIME type extension: .flv
MIME type: flv-application/octet-stream. If you are setting it up directly on the server, follow the steps below …

Flv File Upload to Web Host Returns 404 Not Found Fix

Many users, when using web hosting or cloud servers, upload FLV video files to their websites··but encounter 404 errors when accessing them·They often assume the upload failed and re-upload the files repeatedly. In fact, the files were uploaded successfully the first time. The reason for the 404 Not Found …

How to Install PHP 5.3.x on IIS 7

First, install IIS7. During installation, pay attention to three checkboxes:
Note: CGI will be used in the IIS7 + PHP 5.3.5 environment.
ISAPI Extensions and ISAPI Filters are used for IIS7 + PHP 5.2.17.
Next, begin adding PHP support to IIS. IIS7 + PHP 5.3.5
1. Unzip the downloaded ph …