Skip to content

Commit 6a24550

Browse files
authored
Merge pull request #6192 from kenjis/fix-docs-special-characters-in-paths
docs: add note about special characters in paths
2 parents f58745a + de75458 commit 6a24550

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

user_guide_src/source/installation/installing_composer.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ The command above will create a "project-root" folder.
3939
If you omit the "project-root" argument, the command will create an
4040
"appstarter" folder, which can be renamed as appropriate.
4141

42+
.. note:: CodeIgniter autoloader does not allow special characters that are illegal in filenames on certain operating systems.
43+
The symbols that can be used are ``/``, ``_``, ``.``, ``:``, ``\`` and space.
44+
So if you install CodeIgniter under the folder that contains the special characters like ``(``, ``)``, etc., CodeIgniter won't work.
45+
4246
If you don't need or want phpunit installed, and all of its composer
4347
dependencies, then add the ``--no-dev`` option to the end of the above
4448
command line. That will result in only the framework, and the three

user_guide_src/source/installation/installing_manual.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ Installation
2222
Download the `latest version <https://github.com/CodeIgniter4/framework/releases/latest>`_,
2323
and extract it to become your project root.
2424

25+
.. note:: CodeIgniter autoloader does not allow special characters that are illegal in filenames on certain operating systems.
26+
The symbols that can be used are ``/``, ``_``, ``.``, ``:``, ``\`` and space.
27+
So if you install CodeIgniter under the folder that contains the special characters like ``(``, ``)``, etc., CodeIgniter won't work.
28+
2529
Setting Up
2630
----------
2731

0 commit comments

Comments
 (0)