The main purpose is to test where the uploaded files are temporarily stored when the value of upload_dir_tmp is not set in my php.ini. After this test, I found that when the value of upload_dir_tmp in php.ini is not configured, the default storage location is C:windowstemp directory, and the temporary file is stored with the .tmp suffix. The file will be deleted immediately, so if you want to use the file modification search function of the operating system, it cannot be found, and it cannot be found. The default path of upload_dir_tmp is where.
IIS+php tutorial server cannot upload images solution
The server uses Apache2+PHP to run normally, and then changed to IIS+PHP. The environment variable of php.ini cannot be read successively. Verify in php The code cannot be displayed, and now some people have reported the problem of being unable to upload pictures.
The process of replacing Apache2 from IIS is just to open IIS and close Apache2. There are no other changes, but there are so many differences. It seems that IIS still needs to make many modifications to support PHP.
Analysis:
Based on the above description, I suspect that the problem lies in the permission configuration of IIS. The IUSR_MACHINE account does not have write permissions for upload, so I modified the permissions and set the permissions under IIS. , the permissions under NTFS were modified, but in the end it was useless. There was no corresponding search for information on the network. Test the upload page. The process is:
The swf file calls save.php to upload the file-- -->swf file renames the uploaded file--->The name is returned to save.php--->The last name is displayed.
The current problem has been stuck in the renaming of the file by swf. The last name has not been displayed, and the swf file does not participate in the upload process, so the problem can only be found in the save.php file. Now, test in this file. The variable used for the last displayed name is fileName, so insert the following statement for testing:
echo "fileName=2008*****.gif";
The function of this sentence is to make fileName have a value, and save.php can be displayed normally. First, the original statement is shielded and tested sentence by sentence, and everything is returned normally, but when the test reaches:
if ( !@move_uploaded_file($f["tmp_name"], $dest_dir.'/'.$fileName)) header("HTTP/1.0 404 Not Found");
A problem occurred when saying this, and it cannot be uploaded. Searching the context, I have never found the tmp_name variable, but it seems that the file is uploaded to a temporary file first, and then moved to the destination location. So where is the tmp location? Is it because this location is not writable that the file cannot be uploaded?
Searching for online information, I found that there are 2 places under php.ini for upload configuration:
file_uploads = On file_uploads = Set here Temporary location for storing uploaded files
I try to set up file uploading under IIS 7 and PHP 5.
but "upload_tmp" won't work.
Final analysis answer:
The above content was written in 2009, but now in July 2010, I added a new server and this problem occurred again. At the same time, I implemented the above solution again. During the operation, something probably went wrong. Wrong, it didn't work. I had to take some time to study the specific reasons, and found the following reasons for the problem.
Being unable to upload files does not mean that all files cannot be uploaded, because on one of my websites, flash calls fwrite() to transfer avatars and the like successfully, but calling @move_uploaded_file($f["tmp_name"], $dest_dir. '/'.$fileName) still cannot be uploaded when using a function like this to transfer photos.
After my analysis, the reason is that fwrite() transfers a binary file, while move_uploaded_file() transfers a text file, and the Windows operating system distinguishes between these two types of files [Refer to the PHP manual for the fwrite() function Note], which means that the temporary upload directories stored when these two different files are uploaded in the PHP environment are different. When configuring PHP in the IIS environment, the temporary directory is set to E:tmp. The directory is writable by the iusr user, and binary files can be uploaded, so I suspect that this directory is the storage location for temporary files for binary file upload. So where is the temporary file storage location for the text file passed by move_uploaded_file()? In fact, in the above paragraph in English, the path set by upload_tmp_dir is the path. However, among several of my servers, the value of this setting of each server is the commented out "no value". Why can some servers upload? , but some servers cannot upload? This also goes back to the question I asked before, why can Apache2 can upload but iis can't?
This time I analyzed the upload.php file again and analyzed the code that caused the failure. The specific content is as follows:
// Check whether there is a file uploaded
if (! $_FILES['upload'. $num]['name'] == ""){
if ($_FILES['upload'.$num]['size'] 1. echo "File upload path : ".$location.$_FILES['upload'.$num]['name'];
2. echo "File temporary file name: ".$_FILES['upload'.$num]['tmp_name' ];
3. move_uploaded_file($_FILES['upload'.$num]['tmp_name'],$location.$_FILES['upload'.$num]['name']) or $event = "Failure ";
} else {
$event = "File too large!";
}
The second sentence in the normal code does not exist. I added it for the convenience of testing. , its main purpose is to test where the uploaded files are temporarily stored when my php.ini does not set the value of upload_dir_tmp. After this test, I found that when the value of upload_dir_tmp in php.ini is not configured, the default storage The location is in the C:windowstemp directory, and the temporary file is stored with the .tmp suffix. The file will be deleted immediately, so you cannot find it through the file modification search function of the operating system, and you cannot find upload_dir_tmp. Where is the default path.
Now that the default path of upload_dir_tmp has been found, modify the access permissions of c:windowstemp, make it writable by the IUSR_ user, restart the IIS Admin service, upload the file, and finally succeed. This is why when the upload_dir_tmp values of multiple servers of mine are all empty, some can be transferred and some cannot.

DHCP是“动态主机配置协议DynamicHostConfigurationProtocol”的首字母缩写词,它是一种网络协议,可自动为计算机网络中的客户端系统分配IP地址。它从DHCP池或在其配置中指定的IP地址范围分配客户端。虽然你可以手动为客户端系统分配静态IP,但DHCP服务器简化了这一过程,并为网络上的客户端系统动态分配IP地址。在本文中,我们将演示如何在RHEL9/RockyLinux9上安装和配置DHCP服务器。先决条件预装RHEL9或RockyLinux9具有sudo管理权限的普

一、安装nginx容器为了让nginx支持文件上传,需要下载并运行带有nginx-upload-module模块的容器:sudopodmanpulldocker.io/dimka2014/nginx-upload-with-progress-modules:latestsudopodman-d--namenginx-p83:80docker.io/dimka2014/nginx-upload-with-progress-modules该容器同时带有nginx-upload-module模块和ng

1,将java项目打成jar包这里我用到的是maven工具这里有两个项目,打包完成后一个为demo.jar,另一个为jst.jar2.准备工具1.服务器2.域名(注:经过备案)3.xshell用于连接服务器4.winscp(注:视图工具,用于传输jar)3.将jar包传入服务器直接拖动即可3.使用xshell运行jar包注:(服务器的java环境以及maven环境,各位请自行配置,这里不做描述。)cd到jar包路径下执行:nohupjava-jardemo.jar>temp.txt&

vue3项目打包发布到服务器后访问页面显示空白1、处理vue.config.js文件中的publicPath处理如下:const{defineConfig}=require('@vue/cli-service')module.exports=defineConfig({publicPath:process.env.NODE_ENV==='production'?'./':'/&

TCP客户端一个使用TCP协议实现可连续对话的客户端示例代码:importsocket#客户端配置HOST='localhost'PORT=12345#创建TCP套接字并连接服务器client_socket=socket.socket(socket.AF_INET,socket.SOCK_STREAM)client_socket.connect((HOST,PORT))whileTrue:#获取用户输入message=input("请输入要发送的消息:&

scp是securecopy的简写,是linux系统下基于ssh登陆进行安全的远程文件拷贝命令。scp是加密的,rcp是不加密的,scp是rcp的加强版。因为scp传输是加密的,可能会稍微影响一下速度。另外,scp还非常不占资源,不会提高多少系统负荷,在这一点上,rsync就远远不及它了。虽然rsync比scp会快一点,但当小文件众多的情况下,rsync会导致硬盘I/O非常高,而scp基本不影响系统正常使用。场景:假设我现在有两台服务器(这里的公网ip和内网ip相互传都可以,当然用内网ip相互传

psutil是一个跨平台的Python库,它允许你获取有关系统进程和系统资源使用情况的信息。它支持Windows、Linux、OSX、FreeBSD、OpenBSD和NetBSD等操作系统,并提供了一些非常有用的功能,如:获取系统CPU使用率、内存使用率、磁盘使用率等信息。获取进程列表、进程状态、进程CPU使用率、进程内存使用率、进程IO信息等。杀死进程、发送信号给进程、挂起进程、恢复进程等操作。使用psutil,可以很方便地监控系统的运行状况,诊断问题和优化性能。以下是一个简单的示例,演示如何

一、安装前的准备工作在进行MySQL多实例的安装前,需要进行以下准备工作:准备多个MySQL的安装包,可以从MySQL官网下载适合自己环境的版本进行下载:https://dev.mysql.com/downloads/准备多个MySQL数据目录,可以通过创建不同的目录来支持不同的MySQL实例,例如:/data/mysql1、/data/mysql2等。针对每个MySQL实例,配置一个独立的MySQL用户,该用户拥有对应的MySQL安装路径和数据目录的权限。二、基于二进制包安装多个MySQL实例


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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools
