Project

General

Profile

Bug #92367

Updated by Simon Schaufelberger almost 2 years ago

I got the following Error: 

 Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1537633463: Hash not resolvable | OutOfRangeException thrown in file /homepages/21/d329096653/htdocs/Typo3_Source/typo3_src-9.5.20/typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php in line 72. Requested URL: https://example.de/job/example-slug?cookie_b59fe1ff373a1a2a37a17dd1a212a419=accepted 

 My Site Configuration for this Action: 

 <pre> 
 routeEnhancers: 
   Jobboerse: 
     type: Extbase 
     limitToPages: 
       - 1 
     extension: Jobboerse 
     plugin: displayjobs 
     defaultController: 'Jobs::list' 
     routes: 
       - 
         _controller: 'Jobs::show' 
         routePath: '/job/{jobs_title}' 
         _arguments: 
           jobs_title: jobs 
       - 
         _controller: 'Jobs::application' 
         routePath: '/{localized_profile}/{jobs_title}' 
         _arguments: 
           jobs_title: jobs 
     aspects: 
       jobs_title: 
         type: PersistedAliasMapper 
         tableName: tx_jobboerse_domain_model_jobs 
         routeFieldName: path_segment 
 </pre> 

 My Question is, is this a bug or can I do something to get the urls map with hash? Sometimes people use this cookie-hash for these URIs!

Back