typo3

TYPO3 6.2 - how to create FileReference in frontend (FE)?

限于喜欢 提交于 2019-12-03 13:37:32
I have the hypothetical Zoo extension in which I've Animal model with photo field and FrontEnd (FE) plugin with typical CRUD actions. photo field is typical FAL's FileReference and it works perfectly in backend (BE) with common TCA IRRE config. I'm able to successful upload the file to the storage, it's visible in the Filelist module, and I can use it in BE during my Animal editing, anyway I can't create FileReference within my FE plugin. My current approach looks like this: /** * @param \Zoo\Zoo\Domain\Model\Animal $animal */ public function updateAction(\Zoo\Zoo\Domain\Model\Animal $animal)

dotenv-connector within TYPO3 CMS

给你一囗甜甜゛ 提交于 2019-12-03 13:27:27
问题 I try to use helhum/dotenv-connector in my TYPO3 Project. I have done the following: my composer.json : { "require": { "typo3/cms": "^8.5", "helhum/dotenv-connector": "1.0.0", "helhum/typo3-console": "^4.1" }, "extra": { "helhum/typo3-console": { "install-extension-dummy": false }, "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", "web-dir": "web" }, "helhum/dotenv-connector": { "env-dir": "", "allow-overrides": true, "cache-dir": "var/cache" } } } Then I ran composer install After

With fluid_styled_content, how to create custom content elements in TYPO3 7.5 and 7 LTS?

99封情书 提交于 2019-12-03 09:25:42
问题 I have been told it is a breeze to set up custom, structured content elements for the Backend in TYPO3 7.5, using the new fluid_styled_content system extension. After looking at at sysext/fluid_styled_content and sysext/backend , I couldn't figure it out myself. Any hints? 回答1: Information source: fluid_styled_slider on Github These information are also available here: usetypo3 blog The official docs are online as well. PageTSconfig To make our content element appear in the wizard for new

PHP OpenSSL extension not working while install Typo3 6.2.2 on window7

烂漫一生 提交于 2019-12-03 06:08:15
I've installed Typo3 6.2.2 on window7 but I got an error message as below: PHP OpenSSL extension not working Something went wrong while trying to create a new private key for testing. Please check the integration of the PHP OpenSSL extension and if it is installed correctly. I try to find the solution on the internet about this error but I can not solve this bug. Anyone know, can you help me to find the solution please? Thanks. Solution that worked for me on XAMPP and Windows Vista: Activate the PHP module openssl Open php.ini and uncomment(delete ';') in: ;extension=php_openssl.dll Double

How can I add a trailing slash to TYPO3 v9 URLs?

纵饮孤独 提交于 2019-12-03 05:18:12
问题 When updating from TYPO3 8.7 to TYPO3 9.5 you might drop the realurl extension in favor for the new routing feature. But you might notice, that realurl appended a / to all urls by default (when you are not using html suffix) The TYPO3 routing feature does not do that by default and there is currently no option in the core to enable this. Why is this a problem? In TYPO3 8.7 you got an URL like www.domain.tld/subpage/. In TYPO3 9.5 the same page be called with the url www.domain.tld/subpage. So

dotenv-connector within TYPO3 CMS

夙愿已清 提交于 2019-12-03 03:35:13
I try to use helhum/dotenv-connector in my TYPO3 Project. I have done the following: my composer.json : { "require": { "typo3/cms": "^8.5", "helhum/dotenv-connector": "1.0.0", "helhum/typo3-console": "^4.1" }, "extra": { "helhum/typo3-console": { "install-extension-dummy": false }, "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", "web-dir": "web" }, "helhum/dotenv-connector": { "env-dir": "", "allow-overrides": true, "cache-dir": "var/cache" } } } Then I ran composer install After that I setup the TYPO3 using the command php vendor/bin/typo3cms install:setup This should be similar

Bootstrap 4 Sticky Footer Not Sticking

南笙酒味 提交于 2019-12-03 03:05:02
问题 Not really sure why the sticky footer isn't working in Bootstrap 4. I have a TYPO3 website which I am a beginner at. The sticky footer is not sticking at the bottom of the page. Here is a copy of the page source as it has been rendered. I basically copied the html file from bootstraps docs folder and then modified it and copied it into my TYPO3 template. If I fill the page with content, the footer does not stick - I have to scroll the page down to see it. <!DOCTYPE html> <html lang="en">

How can I insert the current page title automatically into a TYPO3 template?

依然范特西╮ 提交于 2019-12-02 23:13:28
actually the title is the whole question. I just want to modify the template so that the current page title is automatically shown (i'm working with html templates so I just need the bit of typoscript to get the page title out of the database) I hope that's possible It is. It's pretty simple to do. I'll assume you're using TemplaVoilà, because if you're not, you should be :-D Start off by putting some HTML in your template with a dummy page title. Give it an ID attribute so it's easy to map. Like: <h1 id="page-title">Page Title Here</h1> Next, go into TemplaVoilà and map that <h1> element to

typo3 site offline after extension upload

十年热恋 提交于 2019-12-02 21:51:39
问题 I just uploaded a new extension to a typo3 site and the site went offline. I am getting a '500 internal server error'. What can I do to rewind the operation and/or to bring the site online again? 回答1: Try to uninstall the extension via the extension manager module in the backend. If that is broken too then you need to do so via manually editing the configuration file. it's located in the typo3conf folder and named localconf.php for version 4.x and LocalConfiguration.php for version 6.x. For

How can I add a trailing slash to TYPO3 v9 URLs?

被刻印的时光 ゝ 提交于 2019-12-02 21:14:38
When updating from TYPO3 8.7 to TYPO3 9.5 you might drop the realurl extension in favor for the new routing feature. But you might notice, that realurl appended a / to all urls by default (when you are not using html suffix) The TYPO3 routing feature does not do that by default and there is currently no option in the core to enable this. Why is this a problem? In TYPO3 8.7 you got an URL like www.domain.tld/subpage/. In TYPO3 9.5 the same page be called with the url www.domain.tld/subpage. So even if this is the same page, for search crawlers, this is another URL. TYPO3 does a 307 redirect