Show category names of current page in TYPO3 8
I am trying to display the category name(s) of the current page on a TYPO3 8 installation. In TYPO3 7 it used to work like this (see below), however now I only receive a random error code and no Text output. Any Ideas?
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages'
andWhere.dataWrap = sys_category_record_mm.uid_foreign = {TSFE:id}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
The corresponding error output is as follows:
An exception occurred while executing 'SELECT * FROM `sys_category` INNER JOIN `sys_category_record_mm`
`ON(sys_category_record_mm`.`uid_local=sys_category`.`uid)` ON WHERE
(`sys_category`.`pid` IN (35)) AND
(sys_category_record_mm.tablenames='pages') AND (`sys_category`.`sys_language_uid` IN (0, -1)) AND
((`sys_category`.`deleted` = 0) AND (`sys_category`.`t3ver_state` <= 0) AND (`sys_category`.`pid` <> -1) AND (`sys_category`.`hidden` = 0) AND (`sys_category`.`starttime` <= 1546204860) AND
((`sys_category`.`endtime` = 0) OR (`sys_category`.`endtime` > 1546204860)))': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near '.`uid_local=sys_category`.`uid)` ON WHERE (`sys_category`.`pid` IN (35)) AND (s' at line 1
typo3 categories typoscript typo3-8.x
add a comment |
I am trying to display the category name(s) of the current page on a TYPO3 8 installation. In TYPO3 7 it used to work like this (see below), however now I only receive a random error code and no Text output. Any Ideas?
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages'
andWhere.dataWrap = sys_category_record_mm.uid_foreign = {TSFE:id}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
The corresponding error output is as follows:
An exception occurred while executing 'SELECT * FROM `sys_category` INNER JOIN `sys_category_record_mm`
`ON(sys_category_record_mm`.`uid_local=sys_category`.`uid)` ON WHERE
(`sys_category`.`pid` IN (35)) AND
(sys_category_record_mm.tablenames='pages') AND (`sys_category`.`sys_language_uid` IN (0, -1)) AND
((`sys_category`.`deleted` = 0) AND (`sys_category`.`t3ver_state` <= 0) AND (`sys_category`.`pid` <> -1) AND (`sys_category`.`hidden` = 0) AND (`sys_category`.`starttime` <= 1546204860) AND
((`sys_category`.`endtime` = 0) OR (`sys_category`.`endtime` > 1546204860)))': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near '.`uid_local=sys_category`.`uid)` ON WHERE (`sys_category`.`pid` IN (35)) AND (s' at line 1
typo3 categories typoscript typo3-8.x
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
You should analyze the log intypo3temp/var/logs/
. There you should find a line with your random error code.
– Peter Kraume
Dec 30 '18 at 15:35
Another possibilty is to activate more detailed error output withconfig. contentObjectExceptionHandler = 0
in your TypoScript.
– Peter Kraume
Dec 30 '18 at 15:37
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28
add a comment |
I am trying to display the category name(s) of the current page on a TYPO3 8 installation. In TYPO3 7 it used to work like this (see below), however now I only receive a random error code and no Text output. Any Ideas?
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages'
andWhere.dataWrap = sys_category_record_mm.uid_foreign = {TSFE:id}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
The corresponding error output is as follows:
An exception occurred while executing 'SELECT * FROM `sys_category` INNER JOIN `sys_category_record_mm`
`ON(sys_category_record_mm`.`uid_local=sys_category`.`uid)` ON WHERE
(`sys_category`.`pid` IN (35)) AND
(sys_category_record_mm.tablenames='pages') AND (`sys_category`.`sys_language_uid` IN (0, -1)) AND
((`sys_category`.`deleted` = 0) AND (`sys_category`.`t3ver_state` <= 0) AND (`sys_category`.`pid` <> -1) AND (`sys_category`.`hidden` = 0) AND (`sys_category`.`starttime` <= 1546204860) AND
((`sys_category`.`endtime` = 0) OR (`sys_category`.`endtime` > 1546204860)))': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near '.`uid_local=sys_category`.`uid)` ON WHERE (`sys_category`.`pid` IN (35)) AND (s' at line 1
typo3 categories typoscript typo3-8.x
I am trying to display the category name(s) of the current page on a TYPO3 8 installation. In TYPO3 7 it used to work like this (see below), however now I only receive a random error code and no Text output. Any Ideas?
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages'
andWhere.dataWrap = sys_category_record_mm.uid_foreign = {TSFE:id}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
The corresponding error output is as follows:
An exception occurred while executing 'SELECT * FROM `sys_category` INNER JOIN `sys_category_record_mm`
`ON(sys_category_record_mm`.`uid_local=sys_category`.`uid)` ON WHERE
(`sys_category`.`pid` IN (35)) AND
(sys_category_record_mm.tablenames='pages') AND (`sys_category`.`sys_language_uid` IN (0, -1)) AND
((`sys_category`.`deleted` = 0) AND (`sys_category`.`t3ver_state` <= 0) AND (`sys_category`.`pid` <> -1) AND (`sys_category`.`hidden` = 0) AND (`sys_category`.`starttime` <= 1546204860) AND
((`sys_category`.`endtime` = 0) OR (`sys_category`.`endtime` > 1546204860)))': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near '.`uid_local=sys_category`.`uid)` ON WHERE (`sys_category`.`pid` IN (35)) AND (s' at line 1
typo3 categories typoscript typo3-8.x
typo3 categories typoscript typo3-8.x
edited Dec 30 '18 at 21:25
Matt Fi
asked Dec 30 '18 at 14:25
Matt FiMatt Fi
35
35
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
You should analyze the log intypo3temp/var/logs/
. There you should find a line with your random error code.
– Peter Kraume
Dec 30 '18 at 15:35
Another possibilty is to activate more detailed error output withconfig. contentObjectExceptionHandler = 0
in your TypoScript.
– Peter Kraume
Dec 30 '18 at 15:37
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28
add a comment |
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
You should analyze the log intypo3temp/var/logs/
. There you should find a line with your random error code.
– Peter Kraume
Dec 30 '18 at 15:35
Another possibilty is to activate more detailed error output withconfig. contentObjectExceptionHandler = 0
in your TypoScript.
– Peter Kraume
Dec 30 '18 at 15:37
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
You should analyze the log in
typo3temp/var/logs/
. There you should find a line with your random error code.– Peter Kraume
Dec 30 '18 at 15:35
You should analyze the log in
typo3temp/var/logs/
. There you should find a line with your random error code.– Peter Kraume
Dec 30 '18 at 15:35
Another possibilty is to activate more detailed error output with
config. contentObjectExceptionHandler = 0
in your TypoScript.– Peter Kraume
Dec 30 '18 at 15:37
Another possibilty is to activate more detailed error output with
config. contentObjectExceptionHandler = 0
in your TypoScript.– Peter Kraume
Dec 30 '18 at 15:37
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28
add a comment |
1 Answer
1
active
oldest
votes
Try adding a space after ON
, so:
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
Also, andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You need to add that to where
and use markers
to add the page uid. From the top of my head, that would make it:
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages' AND sys_category_record_mm.uid_foreign = ###pageuid###
markers {
pageuid.data = TSFE:id
}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
See https://docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/Select/#markers for more on markers
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part towhere
and usemarkers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…
– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
|
show 1 more comment
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53978414%2fshow-category-names-of-current-page-in-typo3-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try adding a space after ON
, so:
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
Also, andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You need to add that to where
and use markers
to add the page uid. From the top of my head, that would make it:
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages' AND sys_category_record_mm.uid_foreign = ###pageuid###
markers {
pageuid.data = TSFE:id
}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
See https://docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/Select/#markers for more on markers
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part towhere
and usemarkers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…
– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
|
show 1 more comment
Try adding a space after ON
, so:
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
Also, andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You need to add that to where
and use markers
to add the page uid. From the top of my head, that would make it:
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages' AND sys_category_record_mm.uid_foreign = ###pageuid###
markers {
pageuid.data = TSFE:id
}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
See https://docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/Select/#markers for more on markers
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part towhere
and usemarkers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…
– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
|
show 1 more comment
Try adding a space after ON
, so:
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
Also, andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You need to add that to where
and use markers
to add the page uid. From the top of my head, that would make it:
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages' AND sys_category_record_mm.uid_foreign = ###pageuid###
markers {
pageuid.data = TSFE:id
}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
See https://docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/Select/#markers for more on markers
Try adding a space after ON
, so:
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
Also, andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You need to add that to where
and use markers
to add the page uid. From the top of my head, that would make it:
lib.catclass = CONTENT
lib.catclass {
wrap = <div class="categories">|</div>
table = sys_category
select {
pidInList = 35 // UiD of your category_page
join = sys_category_record_mm ON (sys_category_record_mm.uid_local=sys_category.uid)
where = sys_category_record_mm.tablenames='pages' AND sys_category_record_mm.uid_foreign = ###pageuid###
markers {
pageuid.data = TSFE:id
}
}
renderObj = TEXT
renderObj.field = title
renderObj.wrap = <li class="category {field:title}">|</li>
renderObj.insertData = 1
}
See https://docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/Select/#markers for more on markers
edited Jan 3 at 7:38
answered Dec 31 '18 at 7:40
Rudy GnoddeRudy Gnodde
1,3821218
1,3821218
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part towhere
and usemarkers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…
– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
|
show 1 more comment
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part towhere
and usemarkers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…
– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
It now renders an output. However, it doesn't show the categories of the current page but all categories that are selected (I have 4 pages with selected categories at the moment).
– Matt Fi
Dec 31 '18 at 15:45
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part to where
and use markers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…– Rudy Gnodde
Dec 31 '18 at 16:11
andWhere
has been deprecated since TYPO3 7.1 and has been removed in 8. You should add that part to where
and use markers
to add the variable. See docs.typo3.org/typo3cms/TyposcriptReference/8.7/Functions/…– Rudy Gnodde
Dec 31 '18 at 16:11
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
thank you for the link. Can you suggest how to implement this for my case? I can't figure out how to use these markers correctly.
– Matt Fi
Jan 1 at 19:43
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
I've edited my answer to add it.
– Rudy Gnodde
Jan 2 at 7:39
1
1
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
thank you so much! It didn't work at first but after changing "TSFE.id" to "TSFE:id" it now finally renders the correct categories for each page.
– Matt Fi
Jan 2 at 20:19
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53978414%2fshow-category-names-of-current-page-in-typo3-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is the number of your "random error code"?
– Blcknx
Dec 30 '18 at 15:26
You should analyze the log in
typo3temp/var/logs/
. There you should find a line with your random error code.– Peter Kraume
Dec 30 '18 at 15:35
Another possibilty is to activate more detailed error output with
config. contentObjectExceptionHandler = 0
in your TypoScript.– Peter Kraume
Dec 30 '18 at 15:37
Thanks for the hints. I updated the original post with the error output.
– Matt Fi
Dec 30 '18 at 21:22
Can't really figure out what this tells me though.
– Matt Fi
Dec 30 '18 at 21:28