-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from jweiland-net/doNotAddUserOnCliMode
Do not add user on cli mode
- Loading branch information
Showing
16 changed files
with
173 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
.. More information about this file: | ||
https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/GeneralConventions/FileStructure.html#includes-rst-txt | ||
.. More information about this file: | ||
https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/GeneralConventions/FileStructure.html#includes-rst-txt | ||
.. ---------- | ||
.. text roles | ||
.. ---------- | ||
.. ---------- | ||
.. text roles | ||
.. ---------- | ||
.. role:: aspect(emphasis) | ||
.. role:: bash(code) | ||
.. role:: html(code) | ||
.. role:: js(code) | ||
.. role:: php(code) | ||
.. role:: rst(code) | ||
.. role:: sep(strong) | ||
.. role:: sql(code) | ||
.. role:: aspect(emphasis) | ||
.. role:: bash(code) | ||
.. role:: html(code) | ||
.. role:: js(code) | ||
.. role:: php(code) | ||
.. role:: rst(code) | ||
.. role:: sep(strong) | ||
.. role:: sql(code) | ||
|
||
.. role:: tsconfig(code) | ||
:class: typoscript | ||
.. role:: tsconfig(code) | ||
:class: typoscript | ||
|
||
.. role:: typoscript(code) | ||
.. role:: xml(code) | ||
:class: html | ||
.. role:: typoscript(code) | ||
.. role:: xml(code) | ||
:class: html | ||
|
||
.. role:: yaml(code) | ||
.. role:: yaml(code) | ||
|
||
.. default-role:: code | ||
.. default-role:: code | ||
|
||
.. --------- | ||
.. highlight | ||
.. --------- | ||
.. --------- | ||
.. highlight | ||
.. --------- | ||
.. By default, code blocks use PHP syntax highlighting | ||
.. By default, code blocks use PHP syntax highlighting | ||
.. highlight:: php | ||
.. highlight:: php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,59 @@ | ||
.. include:: /Includes.rst.txt | ||
.. include:: /Includes.rst.txt | ||
|
||
|
||
.. _installation: | ||
.. _installation: | ||
|
||
============ | ||
Installation | ||
============ | ||
|
||
Target group: **Administrators** | ||
Composer | ||
======== | ||
|
||
The extension needs to be installed like any other extension of TYPO3 CMS: | ||
If your TYPO3 installation works in composer mode, please execute following | ||
command: | ||
|
||
#. Visit ExtensionManager | ||
.. code-block:: bash | ||
#. Switch over to `Get Extensions` | ||
composer req jweiland/checkfaluploads | ||
vendor/bin/typo3 extension:setup --extension=checkfaluploads | ||
#. Search for `checkfaluploads` | ||
If you work with DDEV please execute this command: | ||
|
||
#. Install extension | ||
.. code-block:: bash | ||
ddev composer req jweiland/checkfaluploads | ||
ddev exec vendor/bin/typo3 extension:setup --extension=checkfaluploads | ||
ExtensionManager | ||
================ | ||
|
||
On non composer based TYPO3 installations you can install `checkfaluploads` | ||
still over the ExtensionManager: | ||
|
||
.. rst-class:: bignums | ||
|
||
1. Login | ||
|
||
Login to backend of your TYPO3 installation as an administrator or system | ||
maintainer. | ||
|
||
2. Open ExtensionManager | ||
|
||
Click on `Extensions` from the left menu to open the ExtensionManager. | ||
|
||
3. Update Extensions | ||
|
||
Choose `Get Extensions` from the upper selectbox and click on | ||
the `Update now` button at the upper right. | ||
|
||
4. Install `checkfaluploads` | ||
|
||
Use the search field to find `checkfaluploads`. Choose the `checkfaluploads` | ||
line from the search result and click on the cloud icon to | ||
install `checkfaluploads`. | ||
|
||
Next step | ||
========= | ||
|
||
:ref:`Configure checkfaluploads <configuration>`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
.. include:: /Includes.rst.txt | ||
.. include:: /Includes.rst.txt | ||
|
||
|
||
.. _introduction: | ||
.. _introduction: | ||
|
||
============ | ||
Introduction | ||
============ | ||
|
||
|
||
.. _what-it-does: | ||
.. _what-it-does: | ||
|
||
What does it do? | ||
================ | ||
|
||
With checkfaluploads we will add a new checkbox to filelist module and ElementBrowser | ||
where the user gives unrestricted rights to the owner for the uploaded files. | ||
Further the UID of the image uploading editor will be added to the `sys_file` record, so an admin can see who has | ||
uploaded a file in history. | ||
With checkfaluploads we will add a new checkbox to filelist module and | ||
ElementBrowser where the user gives unrestricted rights to the owner for the | ||
uploaded files. Further the UID of the image uploading editor will be added | ||
to the `sys_file` record, so an admin can see who has uploaded a file | ||
in history. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
.. include:: /Includes.rst.txt | ||
.. include:: /Includes.rst.txt | ||
|
||
|
||
.. _known-problems: | ||
.. _known-problems: | ||
|
||
============== | ||
Known Problems | ||
============== | ||
|
||
Currently there are no known issues. | ||
No user in CLI mode | ||
=================== | ||
|
||
We only set FE or BE user in frontend or backend mode. As the user for CLI mode | ||
is always the same one and only user, it does not make sense to add that | ||
user as creator or editor to any files. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
:template: sitemap.html | ||
|
||
.. include:: /Includes.rst.txt | ||
.. include:: /Includes.rst.txt | ||
|
||
======= | ||
Sitemap | ||
======= | ||
|
||
.. The sitemap.html template will insert here the page tree automatically. | ||
.. The sitemap.html template will insert here the page tree automatically. |
Oops, something went wrong.