Home Backend Development PHP Tutorial win7 64-bit Apache http server+PHP configuration

win7 64-bit Apache http server+PHP configuration

Jul 25, 2016 am 09:12 AM

1. First download the apache http server (I originally wanted to download it from the official website, but I couldn’t find it after searching for a long time, so I downloaded an old version online). I downloaded it from this website: http://download.csdn .net/download/chang87812/7175961

Download PHP: Similarly, I downloaded the latest version from the official website (URL: (http://windows.php.net/downloads/releases/)

But then there was a problem after configuring it.

The problem is: httpd: Syntax error on line 129 of D:/PHP/server/httpd-2.2-x64/conf/httpd.conf: Cannot load D:/ApaServ/php/php5apache2_4.dll into server: xd5xd2xb2xbbxb5xbdxd6xb8xb6xa8xb5xc4xc4xa3xbfxe9xa1xa3.

The reason is: this file must correspond to the version, otherwise it cannot be loaded. Later, the same prompt appeared again, but it was changed to php5.4.8. At line 174, the activation context generation of "D:ApaServphpphp5apache2_4.dll" failed. Dependent assembly vcredist_x86.exe cannot be found. Later, the solution was: Reinstall vcredist_x86.exe. This was installed before I installed apache. The files inside may have been rewritten, so they cannot be found. I also looked online: I found the following files under something like C:Program FilesMicrosoft Visual Studio 8VCredi stDebug_NonRedistx86Microsoft.VC80.DebugCRT:
msvcm80d.dll msvcp80d.dll msvcr80d.dll Microsoft.VC80.DebugCRT.manifest Copy these files to On the target machine, put it in the same folder as the running program or put it under system32, and it will run correctly.
For other release versions, MFC programs, etc., just copy the files in the corresponding folders under redist. There are signs after the folders!

I just thought of this after receiving this tip. Later, when installing php5.5, this error message appeared again. I installed the VC++2010 runtime library according to my own understanding at first, but no matter how I debugged, I still got this error. Later, I downloaded the highest version of VC from the Internet. ++2012 runtime library, it was successful immediately. (I found this reason on the Internet, but I haven’t put it into practice. I don’t want to install the VC++2012 runtime library anymore!!!)

So I found an old version of PHP on the Internet, download URL: http://download.csdn.net/download/tonyyxm/5428271

2. Install Apache

1. Unlike 32-bit Apache, it can be packaged into an exe file and can be installed directly. First, unzip httpd-2.2.19-win64 to E:/server/ apache- httpd-2.2.19-win64/ (/*E is The drive letter where the specific server file is located */)

2. Run the command prompt as an administrator (Start-Programs-Accessories) and enter E:/server/apache-httpd-2.2.19-win64/

3. Execute httpd -k install

A problem occurred here: failed to open the winNT service manager

Solution: It turns out that the software conflicts with the "User Account Control" (UAC) of Windows 7 during the software installation. Just turn off UAC first (Control Panel-User Accounts and Family Safety-System and Security-Action Center, there is "Change User Account Control" "Settings", change it to "Never notify". After completion, you will be prompted to restart. At this time, you need to restart) and then install it. There will be no problem. You can modify it back after the installation is completed.

4. Modify httpd.conf. The configuration here is the same as in the 32-bit system

(1) Modify ServerRoot "E:/server/httpd-2.2.19-win64/"

(2) Go down and you will see the function modules enabled by apache, such as: #LoadModule vhost_alias_module modules/mod_vhost_alias.so

Module added later:

LoadModule php5_module "E:/Server/php-5.3.6-Win32-VC9-x64/php5apache2_2.dll"

PHPiniDir "E:/Server/php-5.3.6-Win32-VC9-x64/"

AddType application/x-httpd-php .html .htm .php

(3) Continue down and find the line DocumentRoot "E:/Code/PHP/" to set the web page file directory. This line should be modified to correspond to the directory setting after the line # This should be changed to whatever you set DocumentRoot to

5. Execute httpd -k start in the command prompt again. If there is no error, the apache service starts successfully

6. Shut down the Apache server: execute httpd -k shutdown

3. Configure PHP

1. As mentioned above, decompress my php directory to E:/Server/php-5.3.6-Win32-VC9-x64/, which corresponds to the LoadModule location set in Apache in the previous step

2. Modify php.ini-development to php.ini

3. Open php.ini, find extension_dir, and modify its value to E:/Server/php-5.3.6-Win32-VC9-x64/ext/, which is the directory where the php file is located/ext

4. Find the extension list, remove the ";" in front of ;extension=php_gd2.dll, ;extension=php_mysql.dll, ;extension=php_mysqli.dll to enable the extension. Of course, the above extensions are for example only and can be adjusted according to the function. Although different requirements are required, please enable the corresponding extension

5. (Optional) Set the value of date.timezone to Asia/Shanghai, that is, date.timezone =Asia/Shanghai

6. Create a test.php file under E:/Code/PHP/ with the content

 phpinfo();

?>

Then enter http://localhost/test.php in the browser address bar

The above configuration process belongs to someone else: after I configured it, the following two problems occurred:

1. httpd: Could not reliably determine the server's fully qualified

Solution: Foreword: Although apache can run, I saw the error httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168. x. Others occupy port 80
Start--Run--cmd Enter the command prompt and enter netstat -ano to see the PID of all connections. Then find the program corresponding to this PID in the task manager. If there is no PID in the task manager, For one item, you can select "View" - "Select Column" in the task manager
Often, when we start an application, we find that the port required by the system is occupied by other programs. How do we know who occupies the port we need? Many people wonder It is quite a headache. Here is a very simple method, I hope it will be useful to everyone. If we need to determine who is occupying our 80 port, 1. Windows platform, execute in the windows command line window:
C:>netstat -aon |findstr "80"
TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448
See, the port is occupied by the process with process number 2448, continue to execute the following command:
C:>tasklist|findstr "2448"
thread.exe 2016 Console 0 16,064 K
It’s very clear, thread occupies your port, Kill it
If you can’t find it in the second step, then open the task manager, see which process is 2448, and then kill it.
Check other ports if needed. Just change 80
Addition: It turns out that the reason for this error (httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.111 for ServerName) is because the DNS is not configured properly. If you don't want to configure DNS, just In httpd.conf, add ServerName localhost:80 at the front

2. "(OS 10013) An attempt was made to access the socket in a manner not permitted by access permissions. : make_sock: could not bind to address 0.0.0.0:80"

Solution:

Change the port, open .apacheconfhttpd.conf, change all 80 in it to 81, save and restart apache, OK.

After changing the port, visit the following URL: http://localhost:81/test.php

Screenshot:

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles