Home Backend Development PHP Tutorial PHP.ini performance optimization_PHP tutorial

PHP.ini performance optimization_PHP tutorial

Jul 13, 2016 pm 05:43 PM
php.ini code optimization back exist performance turn up Find Add 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 of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Performance comparison of different Java frameworks Performance comparison of different Java frameworks Jun 05, 2024 pm 07:14 PM

Performance comparison of different Java frameworks: REST API request processing: Vert.x is the best, with a request rate of 2 times SpringBoot and 3 times Dropwizard. Database query: SpringBoot's HibernateORM is better than Vert.x and Dropwizard's ORM. Caching operations: Vert.x's Hazelcast client is superior to SpringBoot and Dropwizard's caching mechanisms. Suitable framework: Choose according to application requirements. Vert.x is suitable for high-performance web services, SpringBoot is suitable for data-intensive applications, and Dropwizard is suitable for microservice architecture.

PHP array key value flipping: Comparative performance analysis of different methods PHP array key value flipping: Comparative performance analysis of different methods May 03, 2024 pm 09:03 PM

The performance comparison of PHP array key value flipping methods shows that the array_flip() function performs better than the for loop in large arrays (more than 1 million elements) and takes less time. The for loop method of manually flipping key values ​​takes a relatively long time.

Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Jun 12, 2024 pm 08:38 PM

Since the launch of ChatGLM-6B on March 14, 2023, the GLM series models have received widespread attention and recognition. Especially after ChatGLM3-6B was open sourced, developers are full of expectations for the fourth-generation model launched by Zhipu AI. This expectation has finally been fully satisfied with the release of GLM-4-9B. The birth of GLM-4-9B In order to give small models (10B and below) more powerful capabilities, the GLM technical team launched this new fourth-generation GLM series open source model: GLM-4-9B after nearly half a year of exploration. This model greatly compresses the model size while ensuring accuracy, and has faster inference speed and higher efficiency. The GLM technical team’s exploration has not

C++ program optimization: time complexity reduction techniques C++ program optimization: time complexity reduction techniques Jun 01, 2024 am 11:19 AM

Time complexity measures the execution time of an algorithm relative to the size of the input. Tips for reducing the time complexity of C++ programs include: choosing appropriate containers (such as vector, list) to optimize data storage and management. Utilize efficient algorithms such as quick sort to reduce computation time. Eliminate multiple operations to reduce double counting. Use conditional branches to avoid unnecessary calculations. Optimize linear search by using faster algorithms such as binary search.

How to optimize the performance of multi-threaded programs in C++? How to optimize the performance of multi-threaded programs in C++? Jun 05, 2024 pm 02:04 PM

Effective techniques for optimizing C++ multi-threaded performance include limiting the number of threads to avoid resource contention. Use lightweight mutex locks to reduce contention. Optimize the scope of the lock and minimize the waiting time. Use lock-free data structures to improve concurrency. Avoid busy waiting and notify threads of resource availability through events.

The Mistral open source code model takes the throne! Codestral is crazy about training in over 80 languages, and domestic Tongyi developers are asking to participate! The Mistral open source code model takes the throne! Codestral is crazy about training in over 80 languages, and domestic Tongyi developers are asking to participate! Jun 08, 2024 pm 09:55 PM

Produced by 51CTO technology stack (WeChat ID: blog51cto) Mistral released its first code model Codestral-22B! What’s crazy about this model is not only that it’s trained on over 80 programming languages, including Swift, etc. that many code models ignore. Their speeds are not exactly the same. It is required to write a "publish/subscribe" system using Go language. The GPT-4o here is being output, and Codestral is handing in the paper so fast that it’s hard to see! Since the model has just been launched, it has not yet been publicly tested. But according to the person in charge of Mistral, Codestral is currently the best-performing open source code model. Friends who are interested in the picture can move to: - Hug the face: https

Performance comparison of C++ with other languages Performance comparison of C++ with other languages Jun 01, 2024 pm 10:04 PM

When developing high-performance applications, C++ outperforms other languages, especially in micro-benchmarks. In macro benchmarks, the convenience and optimization mechanisms of other languages ​​such as Java and C# may perform better. In practical cases, C++ performs well in image processing, numerical calculations and game development, and its direct control of memory management and hardware access brings obvious performance advantages.

What is the performance impact of converting PHP arrays to objects? What is the performance impact of converting PHP arrays to objects? Apr 30, 2024 am 08:39 AM

In PHP, the conversion of arrays to objects will have an impact on performance, mainly affected by factors such as array size, complexity, object class, etc. To optimize performance, consider using custom iterators, avoiding unnecessary conversions, batch converting arrays, and other techniques.

See all articles