Skip to content

Commit

Permalink
Language fix - minor EN language errors (#191)
Browse files Browse the repository at this point in the history
* Language fix - minor EN language errors

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

* Update Documentation/Troubleshooting/TYPO3.rst

Co-authored-by: Mathias Brodala <[email protected]>

Co-authored-by: Lina Wolf <[email protected]>
Co-authored-by: Mathias Brodala <[email protected]>
  • Loading branch information
3 people authored Apr 4, 2022
1 parent df8e81a commit 2649d70
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions Documentation/Troubleshooting/TYPO3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Resetting Passwords
Backend Administrator Password
------------------------------

When the password for a backend user needs to be reset, log into the backend with an
alternative user and use the :guilabel:`System > Backend Users` tool to reset
the users password. Note that only backend users with administrative rights can
When the password for a backend user needs to be reset, log into the backend as a
different user and use the :guilabel:`System > Backend Users` tool to reset
the password. Note that only backend users with administrative rights can
access the `Backend Users` tool to make this change.

If an alternative administrator account is not available or it doesn't have the
appropriate access, the Install Tool can be accessed directly
appropriate access, open the Install Tool directly
using the following address to create a new administrative user::

https://examle.com/typo3/install.php
Expand All @@ -33,7 +33,7 @@ when TYPO3 was installed.
.. include:: ../Images/AutomaticScreenshots/InstallTool/InstallToolPassword.rst.txt

Once logged in to the Admin Tool go to :guilabel:`Maintenance > Create Administrative User`
and select :guilabel:`Create Administrator`. In this dialogue you
and select :guilabel:`Create Administrator`. Here you
can create a new administrative user.

.. include:: ../Images/AutomaticScreenshots/BackendUsers/CreateAdministrator.rst.txt
Expand All @@ -57,7 +57,7 @@ Before editing this file, visit::
https://examle.com/typo3/install.php


Enter the new password into the dialogue box. As the new password is not correct,
Enter the new password in the dialog box. As the new password is not correct,
the following response will be returned::

"Given password does not match the install tool login password. Calculated hash:
Expand All @@ -75,8 +75,8 @@ array entry with the new hashed password::
.. note::

If the new install tool password does not work, check if it gets overridden
later in the LocalConfiguration.php or in the AdditionalConfiguration.php
if one exists. If you can still not log into the install tool check if
later in LocalConfiguration.php or in AdditionalConfiguration.php
if either of these files exists. If you still cannot log into the install tool check if
there are errors in the logs when debugging is enabled.

.. _debug-mode:
Expand All @@ -86,14 +86,14 @@ Debug Settings

During troubleshooting, in the :guilabel:`"Settings > Configuration Presets"`
section of the Install Tool, under "Debug settings", the "Debug" preset can be
change to show errors in the frontend.
changed to show errors in the frontend.

.. include:: ../Images/AutomaticScreenshots/DebugSettings/ConfigurationPresets.rst.txt

.. include:: ../Images/AutomaticScreenshots/DebugSettings/DebugSettings.rst.txt

The following TypoScript setting can also be added the the root template for
the site to show additional debug information.
The following TypoScript setting can also be added to the root template for
the site to show additional debugging information.
This is particularly useful when debugging Fluid errors:

.. code-block:: typoscript
Expand All @@ -106,8 +106,8 @@ This is particularly useful when debugging Fluid errors:

.. important::

Once debugging has been completed, make sure to remove any debug Typoscript and
set Debug setting back to 'Live'.
Once debugging has been completed, remove any debug TypoScript and
set Debug back to 'Live'.

Additionally, the following logs should be checked for additional information:

Expand All @@ -128,14 +128,14 @@ Cached Files in typo3temp/
TYPO3 generates temporary "cached" files and PHP scripts in :file:`<var-path>/cache/`
(either :file:`typo3temp/var/cache` or :file:`var/cache` depending on the installation).
You can remove the entire :file:`<var-path>/cache` directory at any time; the directory
structure and all the caches will be re-written on the next time a visitor
structure and all the caches will be re-written the next time a visitor
accesses the site.

A shortcut to remove these caches can be found in the :guilabel:`Install Tool`,
under :guilabel:`Important Actions`. This might be useful in the event your
cache files become damaged and your system is not running correctly. The
Install Tool won't load any of these caches or any extension, so it
should be safe to use regardless of the corrupt state of the Caches.
under :guilabel:`Important Actions`. This might be useful in the event of your
cache files becoming damaged and your system not running correctly. The
Install Tool won't load any of these caches or any extensions, so it
should be safe to use regardless of the corrupt state of the caches.

Amongst other caches, under :file:`<var-path>/cache/code/core/`
you will find::
Expand All @@ -145,7 +145,7 @@ you will find::

These files contain all :file:`ext\_tables.php` and
:file:`ext\_localconf.php` files of the installed extensions
concatenated in the order they are loaded. Therefore including one of
concatenated in their loading order. Therefore including one of
these files would be the same as including potentially hundreds of PHP
files and should improve performance.

Expand All @@ -161,8 +161,8 @@ Possible Problems With the Cached Files
Changing the absolute path to TYPO3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you change the path of the TYPO3 installation, you might receive similar
errors that include "Failed opening ..." or "Unable to access ...". The
If you change the path of the TYPO3 installation, you might receive
errors like "Failed opening ..." or "Unable to access ...". The
problem is that absolute file paths are hard-coded inside the cached
files.

Expand All @@ -178,8 +178,8 @@ Changing Image Processing Settings
When you change the settings for Image Processing (in normal mode),
you must take into account that old images may still be in the
:file:`typo3temp/` folder and that they prevent new files from being
generated! This is especially important to know, if you are trying to
set up image processing for the very first time.
generated! This is especially important to know if you are trying to
set up image processing for the first time.

The problem is solved by clearing the files in the :file:`typo3temp/`
folder. Also make sure to clear the database table "cache\_pages".
folder. Also make sure you clear the database table "cache\_pages".

0 comments on commit 2649d70

Please sign in to comment.