search
HomeBackend DevelopmentPHP Problemphp modify configuration file
php modify configuration fileNov 18, 2020 am 09:38 AM
php.ini

How to modify the configuration file of php: first find and open the php.ini configuration file; then find the "max_execution_time" item in the file; finally modify the parameters and save it.

php modify configuration file

The operating environment of this tutorial: MacOS X system, php5.6. This article is applicable to all brands of computers.

Recommended: "PHP Video Tutorial"

1. Mac Auto Configuring php.ini in a PHP environment

There is no default php.ini file in Mac OS X, but there is a corresponding template file php.ini.default, located at /private/etc/php.ini.default or Say /etc/php.ini/default, you can make a copy and modify it yourself.
Copy command:

sudo cp /private/etc/php.ini.default /private/etc/php.ini

After successful copying

cd /private/etc/sudo vi php.ini

2. Modify the php.ini configuration file in XAMPP For Mac

Modify the php.ini configuration file during installation Directory/Applications/XAMPP/xamppfiles/etc/php.ini

file_uploads=on/off Whether it is allowed to upload files via http
max_execution_time=30 The maximum execution time allowed for the script, if it exceeds this time, an error will be reported
memory_limit=50M Set the maximum amount of memory that a script can allocate to prevent runaway scripts from occupying too much memory. This instruction only takes effect when the –enable-memory-limit flag is set during compilation.
upload_max_filesize=20M The maximum size of files allowed to be uploaded, this command must be smaller than post_max_size
upload_tmp_dir The temporary storage directory for uploaded files
post_max_size=30M Allow the post method to accept the maximum size

$_FILES array content is as follows:

$_FILES['myFile']['name'] The original name of the client's last file
$_FILES['myFile']['type'] The MIME type of the file, the browser needs to provide support for this information, such as "image/gif"
$_FILES['myFile']['size'] The size of the uploaded file in bytes
$_FILES['myFile'] ['tmp_name'] The temporary file name stored on the server after the file is uploaded, usually the system default. It can be specified in upload_tmp_dir of php.ini, but setting it with the putenv() function will not work
$_FILES['myFile']['error'] Status code related to the file upload

$_FILES['myFile']['error']Status code related to the file upload . [‘error’] was added in PHP version 4.2.0. The following is its description: (They became constants after PHP3.0)

UPLOAD_ERR_OK Value: 0 No error occurred, the file was uploaded successfully
UPLOAD_ERR_INI_SIZE value: 1 The uploaded file exceeds the value limited by the upload_max_filesize option in php.ini
UPLOAD_ERR_FORM_SIZE value: 2 The size of the uploaded file exceeds the value specified by the MAX_FILE_SIZE option in the HTML form
UPLOAD_ERR_PARTIAL value: 3 Only part of the file was uploaded
UPLOAD_ERR_NO_FILE Value: 4 No file was uploaded
Value: 5 The uploaded file size is 0

       文件被上传结束后,默认地被存储在了临时目录中,这时您必须将它从临时目录中删除或移动到其它地方,如果没有,则会被删除。

       也就是不管是否上传成功,脚本执行完后临时目录里的文件肯定会被删除。

附:修改PHP上传文件大小限制的方法

1. 一般的文件上传,除非文件很小.就像一个5M的文件,很可能要超过一分钟才能上传完.

       但在php中,默认的该页最久执行时间为 30 秒.就是说超过30秒,该脚本就停止执行.

       这就导致出现 无法打开网页的情况.这时我们可以修改 max_execution_time

       在php.ini里查找

max_execution_time

       默认是30秒.改为

max_execution_time = 0

       0表示没有限制

2. 修改 post_max_size 设定 POST 数据所允许的最大大小。此设定也影响到文件上传。

       php默认的post_max_size 为2M.如果 POST 数据尺寸大于 post_max_size $_POST$_FILES superglobals 便会为空.

       查找 post_max_size .改为

post_max_size = 150M

3. 很多人都会改了第二步.但上传文件时最大仍然为 8M.

       为什么呢.我们还要改一个参数upload_max_filesize 表示所上传的文件的最大大小。

       查找upload_max_filesize,默认为8M改为

upload_max_filesize = 100M

       另外要说明的是,post_max_size 大于 upload_max_filesize 为佳

The above is the detailed content of php modify configuration file. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php.ini怎么关闭缓存php.ini怎么关闭缓存Mar 15, 2021 am 09:35 AM

php.ini关闭缓存的方法:1、找到并打开php.ini配置文件;2、找到“opcache.enable”和“opcache.enable_cli”选项,将其修改为“opcache.enable=0”和“opcache.enable_cli=0”;3、保存修改后的文件即可。

聊聊如何修改php.ini配置文件聊聊如何修改php.ini配置文件Mar 28, 2023 pm 05:34 PM

PHP.ini是一个PHP配置文件,它被用于控制PHP在服务器上的表现。此文件被用于设置一些变量的值,以便在运行时控制PHP。这篇文章将会向您展示如何修改PHP.ini配置文件的方式,以便控制PHP在您的服务器上的表现。

【整理总结】常见的PHP.ini提示报错及解决方法【整理总结】常见的PHP.ini提示报错及解决方法Mar 20, 2023 pm 04:56 PM

PHP是一种常用的服务器端脚本语言,广泛应用于Web开发领域。然而,在PHP开发过程中,我们经常会遇到各种问题。其中,PHP.ini提示报错是一个常见的问题。

php.ini文件中怎么更改时区php.ini文件中怎么更改时区Mar 22, 2023 pm 03:22 PM

PHP是一种非常流行的服务器端编程语言。在使用PHP开发Web应用程序时,我们有时需要在PHP中设置时区。PHP默认的时区是“UTC(协调世界时)”,这在很多情况下都不是我们想要的时区,因此我们需要在php.ini文件中更改时区设置。本文将介绍如何在php.ini文件中更改时区。

linux php.ini不生效如何解决linux php.ini不生效如何解决May 13, 2023 am 09:10 AM

linuxphp.ini不生效的解决办法:1、重新加载php.ini配置文件;2、在打印出的“phpinfo();”中搜索要修改的配置;3、查看“php-fpm.conf”配置文件,检查是否覆盖了php.ini中的配置即可。linuxphp.ini不生效怎么办?在linux环境下修改php.ini不生效问题排查php.ini修改后不生效主要有如下几种原因:1、修改php.ini配置文件后,没有重新加载php.ini配置文件。2、存在多个php.ini配置文件3、php.ini中的配置被其他文件中

wamp中怎么修改php.ini文件wamp中怎么修改php.ini文件Mar 20, 2023 pm 03:33 PM

Wampserver是一个可以在Windows计算机上安装Apache、PHP和MySQL的软件包。使用Wampserver可以轻松地在本地计算机上开发和测试PHP网站。在开发过程中,我们可能需要修改PHP配置文件php.ini。本文将介绍如何在Wampserver中修改php.ini文件。

php7 php.ini中没有mysql.all如何解决php7 php.ini中没有mysql.all如何解决May 28, 2023 am 11:59 AM

PHP7中的迁移问题PHP7是PHP的下一个主要版本,它在性能和安全方面都有巨大的改进,因此很多网站都希望尽快升级到PHP7。然而,升级到PHP7并不总是容易的。由于与之前版本的不兼容性,企业可能需要进行一些修改,通常是在应用代码中和PHP配置文件中做一些调整。如上所述,PHP7中的mysql扩展已经被删除,因此如果你在旧版本的PHP中使用了mysql扩展,那么你需要在迁移到PHP7时进行一些修改。你可以选择将mysql扩展替换为mysqli扩展(mysqli是“MySQLImproved”扩展

php7改php.ini不起作用怎么办php7改php.ini不起作用怎么办Nov 07, 2022 am 09:54 AM

php7改php.ini不起作用的解决办法:1、检查配置文件的路径;2、对windows下的“php.ini”进行参数的修改;3、设置“post_max_size”的参数为“upload_max_filesize”的N倍;4、重启apache即可。

See all articles

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

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.