Project

General

Profile

Actions

Task #84623

closed

Move LocalConfiguration* and PackageStates to config folder

Added by Benni Mack about 6 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
System/Bootstrap/Configuration
Start date:
2018-04-05
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Sprint Focus:

Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #86072: Do not remove LocalConfiguration if executing unit testsClosed2018-09-01

Actions
Related to TYPO3 Core - Bug #86115: Revert typo3conf file changesClosedBenni Mack2018-09-03

Actions
Actions #1

Updated by Gerrit Code Review about 6 years ago

  • Status changed from New to Under Review

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #2

Updated by Gerrit Code Review about 6 years ago

Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #3

Updated by Gerrit Code Review about 6 years ago

Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #4

Updated by Gerrit Code Review about 6 years ago

Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #5

Updated by Mathias Brodala about 6 years ago

To test the change in Composer mode you need a clone of the TYPO3 repository with the change checked out as well as a real LocalConfiguration.php and PackageStates.php. Now create a working directory somewhere with a web/typo3conf directory and put these two files in there. Put the following composer.json at the root of the working directory:

{
    "repositories": {
        "typo3": {
            "type": "path",
            "url": "/path/to/typo3/sysext/*" 
        }
    },
    "require": {
        "typo3/cms-backend": "dev-master",
        "typo3/cms-core": "dev-master",
        "typo3/cms-documentation": "dev-master",
        "typo3/cms-extbase": "dev-master",
        "typo3/cms-extensionmanager": "dev-master",
        "typo3/cms-filelist": "dev-master",
        "typo3/cms-fluid": "dev-master",
        "typo3/cms-frontend": "dev-master",
        "typo3/cms-install": "dev-master",
        "typo3/cms-lang": "dev-master",
        "typo3/cms-recordlist": "dev-master",
        "typo3/cms-saltedpasswords": "dev-master" 
    },
    "extra": {
        "typo3/cms": {
            "web-dir": "web" 
        }
    }
}

Run composer install and open the host for your working directory in your browser. You'll be redirected to the Install Tool which tells you that the installation is completed and you can open the backend. If you now check your working directory, you'll see a new config directory and all files where moved from web/typo3conf into config.

Actions #6

Updated by Gerrit Code Review about 6 years ago

Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #7

Updated by Gerrit Code Review about 6 years ago

Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #8

Updated by Gerrit Code Review about 6 years ago

Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #9

Updated by Gerrit Code Review about 6 years ago

Patch set 14 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #10

Updated by Gerrit Code Review about 6 years ago

Patch set 15 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #11

Updated by Gerrit Code Review about 6 years ago

Patch set 16 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #12

Updated by Gerrit Code Review about 6 years ago

Patch set 17 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #13

Updated by Gerrit Code Review about 6 years ago

Patch set 18 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #14

Updated by Gerrit Code Review about 6 years ago

Patch set 19 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #15

Updated by Gerrit Code Review about 6 years ago

Patch set 20 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #16

Updated by Gerrit Code Review about 6 years ago

Patch set 21 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #17

Updated by Gerrit Code Review about 6 years ago

Patch set 22 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #18

Updated by Gerrit Code Review about 6 years ago

Patch set 23 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #19

Updated by Gerrit Code Review about 6 years ago

Patch set 24 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #20

Updated by Gerrit Code Review about 6 years ago

Patch set 25 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #21

Updated by Gerrit Code Review about 6 years ago

Patch set 26 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #22

Updated by Gerrit Code Review about 6 years ago

Patch set 27 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #23

Updated by Susanne Moog about 6 years ago

  • Target version changed from 9.2 to 9.3
Actions #24

Updated by Gerrit Code Review almost 6 years ago

Patch set 28 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #25

Updated by Gerrit Code Review almost 6 years ago

Patch set 29 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #26

Updated by Gerrit Code Review almost 6 years ago

Patch set 30 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #27

Updated by Gerrit Code Review almost 6 years ago

Patch set 31 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #28

Updated by Gerrit Code Review almost 6 years ago

Patch set 32 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #29

Updated by Benni Mack almost 6 years ago

  • Target version changed from 9.3 to 9.4
Actions #30

Updated by Gerrit Code Review almost 6 years ago

Patch set 33 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #31

Updated by Benni Mack almost 6 years ago

  • Target version changed from 9.4 to Candidate for Major Version
Actions #32

Updated by Gerrit Code Review over 5 years ago

Patch set 34 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #33

Updated by Gerrit Code Review over 5 years ago

Patch set 35 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #34

Updated by Gerrit Code Review over 5 years ago

Patch set 36 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #35

Updated by Gerrit Code Review over 5 years ago

Patch set 37 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #36

Updated by Gerrit Code Review over 5 years ago

Patch set 38 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #37

Updated by Gerrit Code Review over 5 years ago

Patch set 39 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #38

Updated by Gerrit Code Review over 5 years ago

Patch set 40 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56517

Actions #39

Updated by Benni Mack over 5 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #40

Updated by Christian Kuhn over 5 years ago

  • Related to Bug #86072: Do not remove LocalConfiguration if executing unit tests added
Actions #41

Updated by Benni Mack over 5 years ago

  • Related to Bug #86115: Revert typo3conf file changes added
Actions #42

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF