search
HomeBackend DevelopmentPHP TutorialPHP.ini performance optimization_PHP tutorial
PHP.ini performance optimization_PHP tutorialJul 13, 2016 pm 05:43 PM
php.inicodeoptimizationbackexistperformanceturn upFindAdd to

Code:

 ctrl+y search: disable_functions

After finding it, add

after =

(Here are functions that are prohibited from being executed in php) Code:

Copy content to clipboard

 exec,system,passthru,error_log,ini_alter,dl,openlog,syslog,readlink,

symlink, link, leak, fsockopen, proc_open, popepassthru, chroot, scandir,

chgrp,chown,escapeshellcmd,escapeshellarg,shell_exec,proc_get_status,popen

Please put the above content on one line. Line breaks were made to maintain the overall effect of the post

Usually in the background, just add:

Copy content to clipboard

Disable_functions = system,passthru,shell_exec,com,exec,shell

Find: display_errors

If it is On, change it to Off

Find: magic_quotes_gpc

If it is Off, change it to On

Search: register_globals

If it is On, change it to Off

Search: open_basedir

Add

after

 /www/:/tmp/

This is a directory that restricts PHP access. You must add / after it, otherwise if there is a /wwwabcd directory, it will also be accessed

Multiple directories are separated by English:. If /tmp/ is not added, the upload function of Discuz! cannot be used

Note: The above content will have relevant setting prompts at the beginning of php.ini. Please press ctrl+x to find the next one. Do not modify it directly

-----------------------------

Optimize php.ini

GD library support

;extension=php_gd2.dll

Remove the colon in front,

output_buffering = Off

Output caching allows you to send header (including cookies) lines even after outputting the body content at the cost of slowing down the output layer a bit. You can turn on output caching at runtime using Output Cache, or turn the directive On here to have output caching turned on for all files.

Output_handler = ; You can redirect all output of your script to a function,

That might be useful for processing or logging it.

For example, if you set this output_handler to ob_gzhandler, the output will be transparently compressed for browsers that support gzip or deflate encoding.

Set an output processor to automatically enable output buffering.

Found this

output_buffering = Off

Modified to

On

Note, do not set a value, just set it to On.

Correspondingly, you can also turn on gzip support in your discuz background, which is also an optimization component.

Some friends also enable the safe mode of PHP for safety. This is also a solution

In addition, some friends need to use global variables and MAGIC, which are necessary conditions for some PHP programs. Discuz2.0 also requires

It can be opened, but the security performance will be reduced. The method is very simple.

register_globals = Off ;

Just change it to On.

Some friends often report that they cannot upload larger files or that the background backup data often times out

max_execution_time = 30; This is the maximum time for each script to run. You can modify and lengthen it by yourself, in seconds

max_input_time = 60; This is the time that each script can consume, the unit is also seconds

Memory_limit = 8M; This is the maximum memory consumed by the script. You can also increase it yourself

Upload_max_filesize = 2M; The maximum allowed size of uploaded files, change it yourself, some picture forums require this larger value

If:

 php error message shows that PHP has encountered an Access Violation at XXXXXX solution

Many people say that it is a problem with the PHP version. In fact, this is not the case. You can look at this problem from four places

1. Is the directory where the dll file required by zend does not have enough permissions? It must have read and run permissions

2. Have you used 2003 and set up an application pool? For example, what are the restrictions in the pool? Adjust it and try again. Is it better? Haha

3. There are two places in php.ini that are not set and must be used by some programs

Change the comment character of the ;upload_tmp_dir line to make this line effective in the php.ini document.

Upload_tmp_dir is used to define the temporary path where uploaded files are stored. Here you can also define an absolute path for it,

For example: upload_tmp_dir = d:upload Of course, your d:upload directory must have read and write permissions at this time.

Here I set it to

upload_tmp_dir = c: emp

The occurrence of such an error statement is usually because the session.save_path item in your php.ini is not set properly,

The solution is to set the session.save_path and session.cookie_path settings to

session.save_path = c: emp

Session.cookie_path = c: emp (I did not modify this, I found that the modified verification code cannot be used)

Then create a temp directory in the c: directory

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486006.htmlTechArticleCode: ctrl+y Search: disable_functions After finding it, add it after = (it is prohibited to execute in php) Function) code: Copy content to clipboard exec,system,passthru,error_log,in...
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、保存修改后的文件即可。

电脑性能看哪些方面电脑性能看哪些方面Dec 23, 2020 pm 01:54 PM

电脑性能看如下几个方面:1、电脑安装的操作系统的版本;2、电脑所配置的处理器类型;3、电脑安装的内存大小;4、操作系统是32位的还是64位的。

Vue3中的lazy函数详解:懒加载组件提高应用性能Vue3中的lazy函数详解:懒加载组件提高应用性能Jun 19, 2023 am 08:39 AM

Vue3是一款流行的JavaScript框架,它具有易学易用、高效稳定的特点,尤其擅长构建单页应用程序(SPA)。Vue3中的lazy函数,作为懒加载组件的利器之一,可以很大程度上提高应用程序的性能。本文将详解Vue3中的lazy函数的使用方法与原理,以及它在实际开发中的应用场景和优点。什么是懒加载?在传统的前后端分离的开发中,前端开发人员往往需要处理大量的

如何通过设置MySQL缓存来提高性能如何通过设置MySQL缓存来提高性能May 11, 2023 am 08:09 AM

MySQL是一种常用的关系型数据库管理系统(RDBMS),在各种应用场景下都得到广泛的应用。然而,在高并发、大数据量的情况下,MySQL数据库的性能受到挑战,特别是在读写操作频繁的场景下,容易出现性能瓶颈。为了提高MySQL数据库的性能,可以通过设置MySQL缓存来减少数据库的IO操作,从而提高MySQL的查询效率。在本文中,我们将介绍如何通过设置MySQL

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

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

自动驾驶决策规划技术详解自动驾驶决策规划技术详解Apr 04, 2023 pm 02:35 PM

随着深度强化学习技术的快速发展,越来越多的研究团队开始将其应用于自动驾驶决策规划中,将行为决策与运动规划模块相融合,直接学习得到行驶轨迹。 自动驾驶中的决策规划模块是衡量和评价自动驾驶能力最核心的指标之一,它的主要任务是在接收到传感器的各种感知信息之后,对当前环境作出分析,然后对底层控制模块下达指令。典型的决策规划模块可以分为三个层次:全局路径规划、行为决策、运动规划。01 引言在一套完整的自动驾驶系统中,如果将感知模块比作人的眼睛和耳朵,那么决策规划就是自动驾驶的大脑。大脑在接收到传感器的各种

一篇学会本地知识库对LLM的性能优化一篇学会本地知识库对LLM的性能优化Jun 12, 2023 am 09:23 AM

昨天一个跑了220个小时的微调训练完成了,主要任务是想在CHATGLM-6B上微调出一个能够较为精确的诊断数据库错误信息的对话模型来。不过这个等了将近十天的训练最后的结果令人失望,比起我之前做的一个样本覆盖更小的训练来,差的还是挺大的。这样的结果还是有点令人失望的,这个模型基本上是没有实用价值的。看样子需要重新调整参数与训练集,再做一次训练。大语言模型的训练是一场军备竞赛,没有好的装备是玩不起来的。看样子我们也必须要升级一下实验室的装备了,否则没有几个十天可以浪费。从最近的几次失败的微调训练来看

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

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

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

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment