Category: Web

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

How to Install PHP 5.2.17 on IIS 7

First, modify the php.ini file.. Rename php.ini-dist under c:/php to php.ini (you need to set file extensions to be visible first), open it with Notepad, find extension_dir = “./”, then change ./ inside to c:/php (modify the path according to your actual situation) 1. Add the required …

Implementing Site-Wide HTTPS Access on IIS 6.0

Note: Before enforcing site-wide HTTPS access, please first confirm that all pages of the website can be accessed normally via HTTPS. If unsecured elements on the site have not been resolved (i.e., the site still contains external links to images, JS, CSS, etc.), forcing site-wide HTTPS access may cause some pages to display abnormally. Implementation Steps: 1. Open IIS …

Installing SSL Certificate on Windows + Apache

Apache requires three configuration files for SSL certificate installation: 1_root_bundle.crt, 2_domainname.com.crt, and 3_domainname.com.key. Note: These three certificate files are all in the folder for Apache.zip. For example: 1_root_bundle.crt is the root certificate chain, 2_domainname.com.crt is …

How to Install SSL Certificate on Linux with Nginx

Nginx SSL certificate installation requires two configuration files: 1_root_bundle.crt and 2_domainname.com.key.
Note: These certificate files are all located in the folder for Nginx.zip,
e.g., 1_root_bundle.crt is the root certificate chain (public key), and 2_ domainname.com.key is the private key. (Where: certificate public …

Service Unavailable Causes and How to Fix

一、 If the “Service Unavailable” message appears, refreshing a few times may restore access.
This occurs because the website has exceeded IIS limits. Unlike Windows 2000 systems which prompt “Too many connections&rd …

Apache Environment phpinfo() Pseudo-static Configuration

phpinfo() is a function used to display the current PHP environment. How can you check whether your hosting supports pseudo-static URLs using the phpinfo() function? 1. Create a PHP environment detection file, such as: phpinfo.php. 2. Place the detection file in your web server’s root directory (typically the wwwroot directory for virtual hosting).
3. Execute the phpinfo.php file by entering your URL (domain name)/phpinfo.php in the browser and pressing Enter.
4. Under normal circumstances, …