fix: typography

This commit is contained in:
Denny Septian Panggabean 2024-03-05 17:32:42 +07:00
parent d4cd63ec22
commit 48550aa392
No known key found for this signature in database
GPG Key ID: 73E560439FD2054F
2 changed files with 4 additions and 4 deletions

View File

@ -77,11 +77,11 @@ in memory by reading the files specified in ``opcache.preload``.
Configuration
-------------
Open ``php.ini`` or ``xx-opcache.ini`` if you have split INI configuration in PHP, and recommendation set ``opcache.preload=/path/to/preload.php`` and ``opcache.preload_user=myuser``.
Open ``php.ini`` or ``xx-opcache.ini`` if you have split INI configuration in PHP, and recommend to set ``opcache.preload=/path/to/preload.php`` and ``opcache.preload_user=myuser``.
.. note:: ``myuser`` is user running in your web server
.. note:: ``myuser`` is user running in your web server. If you want find location split INI configuration, just run ``php --ini`` or open file ``phpinfo()`` and search *Additional .ini files parsed*.
Make sure you use appstater installation, If using manual installation you must change directory in include path.
Make sure you use the appstater installation. If using manual installation, you must change the directory in ``include`` path.
.. literalinclude:: preloading/001.php

View File

@ -9,7 +9,7 @@ class preload
*/
private array $paths = [
[
'include' => __DIR__ . '/system', // <== in this
'include' => __DIR__ . '/system', // <== change this line to where CI is installed
// ...
],
];