


Author: Tony Reeves ()
Publication date: 08/08 16:52
1.Install PHP4
Software acquisition: foreign http://www.php.net; domestic http://www.phpchina.com, http://phpuser.com, etc. After obtaining the compressed package, unzip it to the c:php4 directory.
Copy php4ts.dll, msvcrt.dll to C:windowssystem
Rename php.ini-dist to php.ini and copy it to c:windows
Editing this file is very simple, just change a few options.
extension_dir = c:php4
extension =php_ldap.dll
extension =php_zlib.dll
extension =php_calendar.dll
extension =php_exif.dll
extension =php_ftp.dll
extension =php_mssql70.dll
extension =php_imap.dll
If there is, remove the semicolon in front of it; if not, add it yourself. It is recommended not to change this part first, otherwise errors may easily occur.
Appears here:
X-Powered-By: PHP/4.0.0
Content-type: text/html
Just because invalid or non-existent php_*.dll files are specified in the php.ini file, loading these error messages may also cause the browser to not be able to find the server. After a long and arduous wait, IE will give you Say:
Brother! The server cannot be found! Please send me my condolences...Haha!
It’s that simple, there’s more,
If the WEB Server you are using is PWS, then there is one more thing to change!
browscap = C:windowssysteminetsrv rowscap.ini
And modify the PWS-php4.reg file
".php"="[PUT PATH HERE]php4isapi.dll"
Change to
".php"="C:php4php4isapi.dll"
Simply point out the location of the php4isapi.dll file
You can also add other suffixes, the specific file is:
REGEDIT4
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServices
w3svcparametersScript Map]
".php"="C:php4php4isapi.dll"
".php3"="C:php4php4isapi.dll"
".php4"="C:php4php4isapi.dll"
".phtml"="C:php4php4isapi.dll"
Save and exit, double-click to execute, and write to the registry!
Other detailed settings:
asp_tags = On ; Allows the use of ASP style tags
upload_max_filesize = 2097152;Maximum bytes of uploaded files
mysql.default_host = localhost;
mysql.default_user = root;
mysql.default_password= yourpasswd;
The above settings for mysql can be completed in my.cnf. Only a few parts are given here, and the settings for other contents are left to everyone to explore by themselves!
include_path = path1;path2;path3....
When you use the include function, only files in the specified directory can be included.
About how to set doc_root and user_dir.
After setting doc_root, only the php files under the doc_root directory can be executed!
For example doc_root=c:php4 est
Then the PHP file can only be interpreted and executed if it is placed in this directory.
When user_dir is not set, doc_root is read from the control file.
For example, the URL http://localhost/doc.php3 opens the doc.php3 file under c:php4 est instead of c:program
Files....doc.php3 file under htdocs. Regarding the setting of user_dir, I still haven’t figured it out. I hope experts can give me some advice!
2.Install APACHE1.3.12
Software acquisition: http://www.apache.org; http://www.phpchina.com; http://phpuser.com; http://www.phpsite.net.
The installation of the software is very simple. After downloading, just double-click to install.
Configure the httpd.conf file in the conf directory.
#BindAddress *Changed to BindAddress 127.0.0.1
#Servername new.host.name changed to Servername localhost
The reason for similar errors may be that the servername is not specified.
"cannot determine local host name,use servername to set it manually"
Okay, your apache is ready to run!
Run your apache. It should show:
Apache/1.3.12 (Win32) running...
Note, this assumes that your APACHE is installed in the default directory:
C:/Program Files/Apache Group/Apache
Otherwise, the serverroot and documentroot in the document will also need to be changed.For example, if you install it under c:apache. Then
serverroot = c:/apache docmentroot = c:/apache/htdocs
Other options can be deduced in sequence
If your machine has other server programs installed, and you want them to work together for you, then you must change the port. The default is 80, you can change it to 81 or 8080. Do not use other commonly used ports such as 21 ,23,
25 etc. (nonsense^_^).
Okay, let’s let your APACHE support PHP4. Add the following sentences, and that’s basically it!
ScriptAlias /php4/ "C:/php4/"
AddType application/x-httpd-php4 .php
AddType application/x-httpd-php4 .php3
AddType application/x-httpd-php4 .php4
Action application/x-httpd-php4 "/php4/php.exe"
;Do not write
;Action application/x-httpd-php4 "c:/php4/php.exe"
;Otherwise something will go wrong.
Find similar lines in httpd.conf and add them to make maintenance easier. Regarding the default startup document: the default startup document of apache is index.html DirectoryIndex
index.html Change it to the default startup document you want
If you want to support more documents, it should be like this:
DirectoryIndex index.htm
DirectoryIndex index.php
DirectoryIndex index.php3
DirectoryIndex index.php4
Done! Write a test file:
phpinfo();
?>
Save as info.php
Enter http://localhost/info.php
in the browser
Don’t forget to run APACHE first!
3.Install PWS
Software acquisition: WIN98 CD-ROM add-onspws directory. Haha, just setup it directly, no configuration required! After the installation is complete, run PWS, click Advanced to create a virtual directory, and click Edit Properties to modify its properties. The default is to read and there is an execution between the script, put a check in front, and select it. The PHP4 file under this directory is It's ready to run!
Pay attention to setting
in the PHP.INI file
browscap = C:windowssysteminetsrv rowscap.ini
Without settings, it is impossible for PHP4 to run.
4. Install MYSQL (mysql-3.23.21-beta-win)
Software acquisition: foreign http://www.mysql.com; domestic http://www.phpchina.com; http://phpuser.com, http://www.phpsite.net.
Run the setup file to perform the installation. There should be no prompts after completion. At this time, mysql
It has been installed in your system. The default directory is: c:mysql
There is a file my-example.cnf under c:mysql. Rename it to my.cnf and copy it to c:.
No need to modify!!!
You can add username, password, login host, database and port information!
Go to the c:mysql in directory. Double-click mysqld to execute! Under normal circumstances, the DOS window flashes by. It is recommended to open an MS-DOS window and enter
at the c:mysql in> prompt.
mysqld
Execute MYSQL daemon!
[If there is no mysqld, there should be mysqld-shareware.exe to execute it and it will be the same]
If there are no prompts, it means there is no error! Your mysql has started running! You can try entering a few commands to test it:
C:mysql in>mysqladmin ping
Mysqld is alive
C:mysql in>mysqlshow
+-----------+
| Databases |
+-----------+
| mysql |
| test |
+-----------+
The above is normal!
Enter mysql to log in!
C:mysql in>mysql C:mysql in>mysql -u root -p
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 8 to server version: 3.23.21-beta-debug
Type help for help.
mysql>
Remember to run mysqld before logging in, otherwise an error message like this will appear:
Cant connect to MySQL server on localhost
Well, have you encountered it? Anyway, when I started running mysql, that was it!
5.Install Phpmyadmin VER:(phpMyAdmin_2.1.0)
This is an application written in PHP. You can copy it directly to the directory where PHP is executable and run it. For example,
c:/program files/apache group/apache/htdocs/phpmyadmin/
Modify the config.inc.php3 file and replace
require("english.inc.php3");
Change to
require("chinese_gb.inc.php3");
If your e-text is good enough, you don’t have to change it! Anyway, my E text is ^@#^%^%$&^&^*@$#@$#&*&*&*(()(#@!
Haha!
Okay, let’s execute the table creation task and see if it works!!!
I've finished talking, this is my approach! The built debugging environment is okay! I haven't yet

c盘的users是用户文件夹,主要存放用户的各项配置文件。users文件夹是windows系统的重要文件夹,不能随意删除;它保存了很多用户信息,一旦删除会造成数据丢失,严重的话会导致系统无法启动。

启动任务管理器的三个快捷键是:1、“Ctrl+Shift+Esc”,可直接打开任务管理器;2、“Ctrl+Alt+Delete”,会进入“安全选项”的锁定界面,选择“任务管理器”,即可以打开任务管理器;3、“Win+R”,会打开“运行”窗口,输入“taskmgr”命令,点击“确定”即可调出任务管理器。

PIN码是Windows系统为了方便用户本地登录而独立于window账户密码的快捷登录密码,是Windows系统新添加的一套本地密码策略;在用户登陆了Microsoft账户后就可以设置PIN来代替账户密码,不仅提高安全性,而且也可以让很多和账户相关的操作变得更加方便。PIN码只能通过本机登录,无法远程使用,所以不用担心PIN码被盗。

对于刚刚开始使用PHP的用户来说,如果在Windows操作系统中遇到了“php不是内部或外部命令”的问题,可能会感到困惑。这个错误通常是由于系统无法识别PHP的路径导致的。在本文中,我将为您提供一些可能会导致这个问题的原因和解决方法,以帮助您快速解决这个问题。

win10自带的onenote是UWP版本;onenote是一套用于自由形式的信息获取以及多用户协作工具,而UWP版本是“Universal Windows Platform”的简称,表示windows通用应用平台,不是为特定的终端设计的,而是针对使用windows系统的各种平台。

windows操作系统的特点包括:1、图形界面;直观高效的面向对象的图形用户界面,易学易用。2、多任务;允许用户同时运行多个应用程序,或在一个程序中同时做几件事情。3、即插即用。4、出色的多媒体功能。5、对内存的自动化管理。

因为win10系统是不自带扫雷游戏的,需要用户自行手动安装。安装步骤:1、点击打开“开始菜单”;2、在打开的菜单中,找到“Microsoft Store”应用商店,并点击进入;3、在应用商店主页的搜索框中,搜索“minesweeper”;4、在搜索结果中,点击选择需要下载的“扫雷”游戏;5、点击“获取”按钮,等待获取完毕后自动完成安装游戏即可。

在windows中鼠标指针呈四箭头时一般表示选中对象可以上、下、左、右移动。在Windows中鼠标指针首次用不同的指针来表示不同的状态,如系统忙、移动中、拖放中;在Windows中使用的鼠标指针文件还被称为“光标文件”或“动态光标文件”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
