Skip to content

Commit

Permalink
fix: typography
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr committed Mar 5, 2024
1 parent fcecc8d commit 126df11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions user_guide_src/source/installation/deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/installation/preloading/001.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
// ...
],
];
Expand Down

0 comments on commit 126df11

Please sign in to comment.