In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly explains "PHP4, MYSQL and APACHE installation and configuration under WIN system", the explanation content in the article is simple and clear, easy to learn and understand, please follow the idea of Xiaobian slowly in-depth, together to study and learn "PHP4, MYSQL and APACHE installation and configuration under WIN system" bar!
Before configuration, but is to find a suitable place to download. PHP has now evolved to PHP4, so I will just introduce the installation configuration of PHP4 to you. In fact, the configuration of PHP3 and PHP4 is similar. In addition, considering that I use Linux less, and most people use win system, so, in this site will only win configuration.
Personally, the best PHP4 download locations are:
http://www.mm4.de/
The site updates quickly, and PHP4 of the site includes a lot of features.
The version I am currently using is updated on August 20. I tried it and it is not bad.
The PHP4 features offered by the station up to the present are as follows:
bcmath (build-in), calendar, com (build-in), cpdf, curl, cybercash, db, domXML, exif, fdf, FTP, gd, gettext, ifx (infoRmix), imap, interbase, Java, LDAP, mssql65, mssql70, MYSQL (build-in), oci8, odbc (build-in), pcre (build-in), pdf, pgsql, session (build-in), wddx (build-in), xml (build-in), zlib
(Before installation, please don't ask me what mysql.dll under PHP4, see the above "mysql (build-in)" should know, PHP4 already contains, do not need dll file)
Basic settings for PHP4
(1) The file name I downloaded is "php4.0.2-dev_win32-20000816.zip", unzip it to c:php
(2) Move c: phpphp.ini to your windows directory, win98 defaults to c:windows,NT/win2000 defaults to c:winnt,(you don't have to do this, but, to be consistent with PHP3, you'd better do it, because there's nothing wrong with doing it)
(3) Take a look at some of the contents of the php.ini file:
UPLOAD_tmp_dir = c:temp
This is used to save your temporary files when uploading files. If you set c:temp, you must have c: temp, and it must be able to be written by anyone, otherwise your file upload will fail.
And if you don't want to, you can remove it.
To explain yes, PHP4 basic function configuration is relatively simple, but to use some complex things, such as javabean, configuration is a bit difficult, I am also configured for a long time before a little harvest, of course, during the consultation of a lot of experts.
III. Win2000/Win98 + apache + PHP4 configuration
I. Introduction to Apahce
According to the Web Server Survey. NETcraft (http://www.netcraft.co.uk/Survey/), Apache is used by more than 50% of Web servers across the Internet. Apache and Ms iis are both Web servers.
Apache installation (Windows version)
Unzip the downloaded files to a directory, run Setup, and prompt the installation process. For example, install it in a directory (c:apache). Then, under the directory conf, there is a text file named httpd.conf. Edit it with a text editor, changing the line "#BindAddress *" to "BindAddress 127.0.0.1" and "#ServerName new.host.name" to "ServerName localhost." OK, that's it. Start Apache, then type http://127.0.0.1/into your browser and you should see the Apache server working.
It should be noted that if your local machine is already running another Web server, you can distinguish it by modifying the port, you can change the httpd.conf file "Port 80" to "Port 81" or other ports that do not run services. FTP port is 21... Then, you can type "http://127.0.0.1:81" in your browser.
Third, set the Apache virtual directory In IIS and PWS, the setting is done through the graphical interface. In Apache, the same is done by editing the httpd.conf file (note: this file is generally not easily changed), and a line is added to the file.
Alias /test/ "c:/php/test/"
This means that the c:/php/test/directory is set to the virtual directory/test/, so that your files under c:/php/test/can be accessed by typing "http://127.0.0.1/test/files" in your browser.
4, make Apache support PHP good, Apache server simple configuration can be, but to support PHP, but also need to do the following work.
Add the following lines to the httpd.conf file:
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"
Of course, if you want to change the suffix of your php file to something else, change the last few words in the second line ".php" to the suffix you want. To support more files, you can also, such as:
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .phtml
Action application/x-httpd-php "/php/php.exe"
OK, restart Apache server, let's see if it works. Write the simplest php file (hello.php) in the test virtual directory:
undefined
Check your browser (http://127.0.0.1/test/hello.php) to see if it works. All right, let's use
undefined
Look at the PHP configuration!
IV, Win2000/Win98 + IIS5 + PHP4 configuration
I. CGI installation
Enter IIS Manager
Site Properties--> Home Directory--> Configuration--> Application Mapping--> Add
Enter "c: phpphp.exe" in Executable File
Enter ".php" or whatever you want in "Extension"
II. ISapi installation
Enter IIS Manager
Site Properties--> ISAPI Filters--> Add
"Filter Name" Enter ".php" etc.
Executables Select c:phpsapiphp4isapi.dll
Third, need to pay attention to is to use IIS, must pay attention to the permissions of the problem, when you appear "cannot find the page" problem, there may be this problem, in addition, I personally like to use CGI way.
MySQL installation under V, Win2000/Win98
I. Introduction to MySQL
MySQL is a small Linglong database server software, for small and medium-sized application systems is very ideal. In addition to supporting standard ANSI SQL statements, the most important thing is that it also supports multiple platforms, and on unix/Linux systems, MySQL supports multithreaded operation mode, which can achieve quite good performance. It is open source software, like the first two.
Second, MySQL installation (refers to the Windows version) will download the file decompression, to a directory, run the Setup program, will prompt the entire installation process. It is installed by default to c:mysql, if you want to install to other directories there are some changes, as a beginner, you can first regardless of the default directory installation. OK, after installation, enter the c:mysqlbin directory, run mysqld-shareware.exe file directly under Win98, under normal circumstances, there is no prompt information Under NT you can enter: mysqld-shareware --install Start the service Then, enter mysql, under normal circumstances there will be a few lines of prompt information and appear under the prompt symbol: mysql> here, you have successfully installed MySQL.
The default user name of MySQL database is "root"(similar to sa of MS SQL SERVER), and the password is blank by default. Enter c:mysqlbin>mysqladmin -u root -p password adminpassword at the DOS prompt (note, not the mysql prompt)
Enter will prompt you to enter the original password, because the original password is empty, enter directly, the root user password will be changed to "adminpassword".
Simple use of MySQL database
1. Display MySQL database (note: in the rest of this article, if not prompted, the commands are entered at the mysql prompt)
show databases
2. Open a database
use test
where test is the database name
3. Display all tables in a database (a database must be opened first)
show tables
go
4. Create a database as root (at DOS prompt)
mysqladmin -u root -p password adminpassword create gsbook
You will then be prompted for your password.
Because our goal is to make a message board, I will name the database here "gsbook."
5. Add a data table to the database
create table gsbook(id int not null auto_increment,primary key(id),nickname varchar(30),eMail varchar(30),homepage varchar(30),note text,w_time datetime)
go
Description, in the future, I will be mysql field type simple description, if you do not understand now, it does not matter.
Congratulations, so far you have a basic environment for PHP programming.
Thank you for reading, the above is "PHP4, MYSQL and APACHE in the WIN system installation and configuration" of the content, after learning this article, I believe we have PHP4, MYSQL and APACHE in the WIN system installation and configuration of this issue has a deeper understanding, the specific use of the situation also needs to be verified. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 244
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.