typo3

Disable Routing in TYPO3 9

流过昼夜 提交于 2020-08-17 12:13:22
问题 I have 3 Sites on a development server in one TYPO3 Instance with one domain. No option to create another subdoamin. Routing doesnt work because some of the pages have the same names. For now I would like to simply disable routing and work with page IDs but I can not find a setting for this. So - how can I disable routing in TYPO3 9? Thank you. 回答1: There is no option to disable routing. You should think about adding an entry to your etc/hosts file to add a custom domain and use that one. 来源:

Disable Routing in TYPO3 9

倖福魔咒の 提交于 2020-08-17 12:11:34
问题 I have 3 Sites on a development server in one TYPO3 Instance with one domain. No option to create another subdoamin. Routing doesnt work because some of the pages have the same names. For now I would like to simply disable routing and work with page IDs but I can not find a setting for this. So - how can I disable routing in TYPO3 9? Thank you. 回答1: There is no option to disable routing. You should think about adding an entry to your etc/hosts file to add a custom domain and use that one. 来源:

Disable Routing in TYPO3 9

烈酒焚心 提交于 2020-08-17 12:11:06
问题 I have 3 Sites on a development server in one TYPO3 Instance with one domain. No option to create another subdoamin. Routing doesnt work because some of the pages have the same names. For now I would like to simply disable routing and work with page IDs but I can not find a setting for this. So - how can I disable routing in TYPO3 9? Thank you. 回答1: There is no option to disable routing. You should think about adding an entry to your etc/hosts file to add a custom domain and use that one. 来源:

Typo3 LTS9 Routing: ReUse config.YAML

这一生的挚爱 提交于 2020-07-18 08:12:04
问题 What's the right way to reuse config.yaml for routing? Situation: I have a typo3 installation with different websites. The routing-config with more than 200 lines is saved in: \typo3conf\sites\website 1 \config.yaml What the right way to use this config.yaml with all other websites and only reconfig the differences in: \typo3conf\sites\website 2-100 \config.yaml With typoscript this where easy. Is there a way to use this: 1. <INCLUDE_TYPOSCRIPT: source="FILE:\typo3conf\sites\website1\config

Typo3 LTS9 Routing: ReUse config.YAML

蓝咒 提交于 2020-07-18 08:11:53
问题 What's the right way to reuse config.yaml for routing? Situation: I have a typo3 installation with different websites. The routing-config with more than 200 lines is saved in: \typo3conf\sites\website 1 \config.yaml What the right way to use this config.yaml with all other websites and only reconfig the differences in: \typo3conf\sites\website 2-100 \config.yaml With typoscript this where easy. Is there a way to use this: 1. <INCLUDE_TYPOSCRIPT: source="FILE:\typo3conf\sites\website1\config

How to get ID of current page in TYPO3

99封情书 提交于 2020-07-05 03:06:20
问题 I'm using TYPO3 v8, how can I get the id of the current page that I'm editing in the backend? 回答1: You can get current PageId like this. in Controller file. $currentPid = $GLOBALS['TSFE']->id Using Typoscript. temp.page_uid = TEXT temp.page_uid.field = uid 回答2: Example: In your controller: $id = (int)\TYPO3\CMS\Core\Utility\GeneralUtility::_GP('id'); 回答3: This depends on context, examples: If you are extending FormEngine (editing records), the parent page record is in the data array, prepared

TYPO3: How can i assign page into page?

 ̄綄美尐妖づ 提交于 2020-06-29 04:27:09
问题 I have locations that are created as a subpage in TYPO3. All contact person's created as a subpage. I want to assign a contact person to a related location. How can we assign and get detail of contact persons in the Location page? 回答1: There is a content element called "shortcut" which mirrors content elements on other paages. Don't copy the content element with the contact data 来源: https://stackoverflow.com/questions/62215137/typo3-how-can-i-assign-page-into-page

Typo3 : Get Extensions option is not showing in Extension module

ε祈祈猫儿з 提交于 2020-06-28 03:40:17
问题 Where I want that option I want to add a new extension, but I don't have the "Get extension" Option. Please check above screenshot. 回答1: Have a look at the blue box: your instance is running in composer mode, so you have to use composer to install extensions. Please use composer require to add new extensions see https://docs.typo3.org/m/typo3/guide-installation/10.4/en-us/ExtensionInstallation/Index.html#install-extension-with-composer 来源: https://stackoverflow.com/questions/62211764/typo3

TYPO3: all urls show the start page (How to debug?)

流过昼夜 提交于 2020-06-17 09:09:43
问题 I have an installation with TYPO3 9LTS where all URls show the start page after the last deployment. Our system has a deployment in three steps: dev, test, prod. I have build new features on dev and got it working so I deployed it to the test system (including an update to the latest version 9.5.18 of TYPO3). On the testsystem (which worked nicely before) I can see only the startpage as all URLs (which are calculated correctly) result in showing the startpage. With ext:realurl I cold inspect

ViewHelper for opening the page module view for a page

我只是一个虾纸丫 提交于 2020-05-31 04:59:11
问题 There is a ViewHelper for editing a record be.editRecord. Is there a ViewHelper for opening the page module view for a specific page? (This would be the same result you would get if clicking on a page in the page module.) 来源: https://stackoverflow.com/questions/61056869/viewhelper-for-opening-the-page-module-view-for-a-page