"Request Session Token failed" on TYPO3 V10
Opened this issue · 4 comments
Hi,
we are don't able to monitor a caretaker_instance on a TYPO3 V10 with the version 3.0.0
Permant errors on the caretaker server (TYPO3 V8) with server version 1.02:
Command execution failed: Request Session Token failed:
- HTTP-URL: https://www.domain.tld/index.php?eID=tx_caretakerinstance&rst=1
- HTTP-Status: 500
- Screenshot of an TYPO3 Oops an error occured
The keys are correctly generated and in LocalConfiguration.php. Also the public key of the server is correct.
On the local instance in this installation (client) we get this debug information:
For information: we're using composer mode for the instance and server.
Greets
Huaba
Hi,
I have the same problem with TYPO3 9.5.18 (classic not composer) and caretaker_instance 3.0.1. I thought that this bug was fixed with 3.0.1. When I update from 3.0.0 to 3.0.1 the extension manager shows this error message:
Could not scan for classes inside "xxx/typo3conf/ext/caretaker_instance/eid" which does not appear to be a file nor a folder
But it looks like the update to 3.0.1 was successful.
Cheers, Tobias
This bug still occurs in non-composer mode under
- TYPO3 10.4.7
- caretaker_instance 3.0.3
- caretaker 1.0.3
Greetings
André
I think there is the autoload missing in ext_emconfig.php:
--- ext_emconf.php.orig 2020-09-12 13:43:03.000000000 +0200
+++ ext_emconf.php 2020-09-12 13:55:02.367336588 +0200
@@ -36,10 +36,10 @@
),
'autoload' =>
array (
+ 'psr-4' =>
+ array (
+ 'Caretaker\\CaretakerInstance\\' => 'Classes',
+ ),
'classmap' =>
array (
0 => 'services',
Greetings, Stefan
have the same problem, quick and dirty fix for this:
copy all files from classes in Classes and copy the Controller folder from Classes in classes.
Yes there are two folders ^^
Hope that helps.